程序代写案例-EM 747

欢迎使用51辅导,51作业君孵化低价透明的学长辅导平台,服务保持优质,平均费用压低50%以上! 51fudao.top
Text exercise
An exercise for exploring quantitative and text analysis of Twitter messages
COM EM 747
Spring 2021
Exercise by:
Rebecca Auger
Chris Wells
Introduction:
We have prepared a dataset for you on Blackboard.
The data was downloaded from: https://www.kaggle.com/soohuilee/meghan-markle-tweets
Take a look at the documentation to get a sense of how the data were obtained.
What was the source of the data? How were the data selected/sampled? What is missing from the docu-
mentation that you would like to know?
1. Read in the data
all_mm<-read.csv("meghanmarkle_tweets.csv")
2. Look at the data.
How are the data structured? How big is the dataset?
3. Do the data look clean?
One thing to explore would be whether there is explicitly missing data (that is, NAs)
4. One thing we might want to do is give each tweet a unique ID.
Normally tweets would have tweet IDs, but at some point these tweets lost theirs. We can create our own
by simply numbering the tweets according to their row in the table:
all_mm$id <- rownames(all_mm)
1
5. Another issue is that this full dataset is rather large.
To make your functions run more quickly, you probably want a sample of the data. (With very large datasets
it is often helpful to use a sample of data to tune your code before running it on the whole thing.) Here we
are taking a sample of 15000 tweets:
mm<-sample_n(all_mm,15000)
6. We can also do a little bit of cleanup.
If you look at the date field of the existing dataset (column ‘Tweet.Created.At’), you will see that it is
currently stored as a character vector. As we have mentioned in class, dates are a little bit tricky, so we
will give you some code for cleaning them up here. The first line uses only the day portion of the state, and
stores it as a new date. The second line stores day, hour, minute and second in a POSIXct object. The third
line changes the object (‘datetime’) to display in Eastern U.S. time.
mm$date_of_tweet<-as.Date(mm$Tweet.Created.at)
mm$datetime<-as.POSIXct(mm$Tweet.Created.at,tz="UTC")
attr(mm$datetime,"tzone")<-"EST"
7. Now it’s time for some exploring!
When you have data containing dates or times, it’s often useful to start by plotting the quantity of data over
time. We will let you do that: create a ggplot using either geom_histogram() or geom_density() to show
how many tweets you have at each unit of time. (You can use either ‘date_of_tweet’ or ‘datetime’; how are
the plots produced from these two variables different?)
ggplot(mm,aes(x=date_of_tweet))+geom_density()
2
0.0
0.5
1.0
1.5
2.0
Mar 05 Mar 07 Mar 09 Mar 11
date_of_tweet
de
ns
ity
ggplot(mm,aes(x=datetime))+geom_density()
3
0.0e+00
3.0e−06
6.0e−06
9.0e−06
1.2e−05
Mar 06 Mar 08 Mar 10 Mar 12
datetime
de
ns
ity
What do you notice about your plot? How would you relate the findings of your plot to Meghan Markle’s
activities?
8. Who is involved in this conversation?
Now you have an overall sense of the data’s structure. To begin digging deeper, let’s look at WHO partici-
pated in this conversation. First, how many unique users are present in your data?
Here is a useful function: unique() will return to you a vector containing the unique values of the vector you
pass it. Use unique() and length() to calculate how many unique users (column ‘User’) are present in the
data.
length(unique(mm$User))
## [1] 10119
Compare this to the overall size of the data (that is, the total number of tweets). This should begin to
tell you something about the distribution of tweets over users. How many tweets per user, on average, are
present in the data?
To understand more deeply how different users contributed to the overall conversation, create a histogram
in which the number of tweets created by a given user in on the x-axis, and the number of users creating
that many tweets is on the y-axis.
Note: to calculate the number of tweets per user, you will need to use group_by() and summarize(). The
result of this should be passed to ggplot(). Suggestion: when you name the new count variable in summarize,
use a name that describes what is being counted (not just the word ‘count’).
4
mm%>%
group_by(User)%>%
summarise(tweet_count=n())%>%
ggplot(aes(x=tweet_count))+geom_histogram()
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## ‘stat_bin()‘ using ‘bins = 30‘. Pick better value with ‘binwidth‘.
0
2500
5000
7500
0 10 20 30 40
tweet_count
co
u
n
t
What do you notice about the pattern of tweets per user?
9. Who are the most-present accounts?
We can also take a look at the most frequently-occurring accounts, which is often a good idea when distri-
butions are not even: we want to know who is “over-represented” in our data, and by how much.
You can do this easily by piping your previous summarize() statement into an arrange() statement instead
of a ggplot(). Don’t forget to use desc() to look at the users with the highest tweet count!
mm%>%
group_by(User)%>%
summarise(tweet_count=n())%>%
arrange(desc(tweet_count)) %>%
print(n = 50)
5
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## # A tibble: 10,119 x 2
## User tweet_count
##
## 1 sussexsquadpod 45
## 2 CambridgeGarden 41
## 3 drudc77 39
## 4 WhoSaidWhatOMG 39
## 5 C0C0AM 37
## 6 mid_zan 36
## 7 LGM777 23
## 8 Mogsy22171230 23
## 9 dailysoapdish 22
## 10 IAmSophiaNelson 22
## 11 ntl_angie 22
## 12 AKansan63 21
## 13 gatitonic1968 21
## 14 HHamaschiach 21
## 15 IsleOfSceptre 21
## 16 angelneptustar 20
## 17 anthonyscountry 20
## 18 dailystar 20
## 19 DuchessJRM 20
## 20 NayelySpring910 20
## 21 royal_suitor 20
## 22 ThePerezHilton 20
## 23 WhiteHouse20200 20
## 24 Royal__Observer 19
## 25 itsafronomics 18
## 26 Justmythots8 18
## 27 MaryinMN9 18
## 28 michaelaaerin 18
## 29 SummerRhapsody 18
## 30 hellofaread 17
## 31 TheTrut87905708 17
## 32 kachirilady 16
## 33 Restoredignity5 16
## 34 Activa999666 15
## 35 LilytheP1nk 15
## 36 meine__schatz 15
## 37 MoRaY1959 15
## 38 thebraceygroup 15
## 39 aceshowbiz 14
## 40 ETCanada 14
## 41 FredGanza7 14
## 42 Jay_Torrez22 14
## 43 WillAdamslsd 14
## 44 AdisaAkomolede 13
## 45 aleisha_71 13
## 46 EverydayAmeric7 13
## 47 kristenmeinzer 13
## 48 wsucpa 13
## 49 AltheaAikens 12
6
## 50 ArchewellBaby 12
## # ... with 10,069 more rows
10. Tidying the data for text processing
Let’s turn our attention to the content of the tweets. Following Silge & Robinson, we can do this in a few
steps. First, unnest the tokens in ‘Tweet’.
Recall: here is how Silge & Robinson did it. Note: you will need to add one more argument to your
unnest_tokens() call. It should read: ‘token = “tweets” ’. (This tells the function to preserve punctuation
that is meaningful in tweets, such as #)
tidy_books <- original_books %>%
unnest_tokens(word, text)
tidy_mm <- unnest_tokens(mm, word, Tweet, token = "tweets")
## Using ‘to_lower = TRUE‘ with ‘token = ’tweets’‘ may not preserve URLs.
Next, let’s remove stopwords. From Silge & Robinson again:
tidy_books <- tidy_books %>%
anti_join(stop_words)
tidy_mm <- anti_join(tidy_mm, stop_words)
## Joining, by = "word"
11. Word frequency
Now that we have the data in a tidy format, we can think about the dataset in terms of words, including
frequency of words and observing relationships between words used and other tweet variables, like Retweets.
So what were the most-used words in these tweets?
Again, you can ask for a list of the top words by starting with your tidy text tibble and passing it to
group_by(), summarize() and arrange().
tidy_mm%>%
group_by(word)%>%
summarise(count=n())%>%
arrange(desc(count)) %>% print(n = 50)
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## # A tibble: 33,528 x 2
## word count
##
## 1 #meghanmarkle 8736
## 2 meghan 2012
## 3 interview 1211
7
## 4 harry 1137
## 5 #oprahmeghanharry 1111
## 6 royal 1108
## 7 family 1080
## 8 #meghanandharry 844
## 9 amp 831
## 10 #princeharry 795
## 11 #meghanandharryonoprah 768
## 12 markle 722
## 13 prince 662
## 14 people 648
## 15 @piersmorgan 588
## 16 #harryandmeghanonoprah 574
## 17 oprah 536
## 18 black 461
## 19 racist 431
## 20 queen 416
## 21 @oprah 390
## 22 british 387
## 23 #meghanmarkle… 386
## 24 racism 359
## 25 iâ€m 354
## 26 love 352
## 27 itâ€s 351
## 28 #royalfamily 333
## 29 #oprah 324
## 30 #piersmorgan 322
## 31 piers 321
## 32 woman 306
## 33 diana 288
## 34 donâ€t 284
## 35 media 276
## 36 skin 268
## 37 dont 266
## 38 time 266
## 39 white 266
## 40 women 265
## 41 im 264
## 42 morgan 244
## 43 royals 244
## 44 watching 231
## 45 princess 230
## 46 watch 229
## 47 mental 225
## 48 baby 224
## 49 kate 221
## 50 palace 220
## # ... with 33,478 more rows
To make sure we’re all on the same page, describe in layman’s terms what this count means (what are we
counting here?).
8
12. Let’s visually represent these word frequencies.
There are a lot of words in our dataset, so graphing all of the words individually wouldn’t be very practical.
However, we can create a histogram of word frequencies to understand whether there are some words that
are used much more than others.
Make a histogram using your code from above, piping the word frequency expression into a ggplot statement
and using geom_histogram().
tidy_mm%>%
group_by(word)%>%
summarise(word_count=n())%>%
filter(word_count >10) %>%
ggplot(aes(x=word_count))+geom_histogram()
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## ‘stat_bin()‘ using ‘bins = 30‘. Pick better value with ‘binwidth‘.
0
500
1000
0 2500 5000 7500
word_count
co
u
n
t
With the context of the top words and their frequencies from the last section, what can we conclude about
the distribution of frequencies of words in the dataset?
13. Now let’s look more closely at the highest frequency words in the dataset.
Use the same code from above to identify word frequency, and pipe it into the “top_n()” function with a
value of 10 (“top_n(10)”). The top_n() function selects the first n rows of the dataframe, so it’s important
that the word frequency dataframe is arranged in descending order.
9
We can use this statement to compare the frequency of the top 10 words in the dataset in a bar chart. Create
a bar chart where the x-axis is the top ten most frequently occurring words and the y-axis is the frequency
with which they appear.
tidy_mm%>%
group_by(word)%>%
summarise(frequency=n())%>%
arrange(desc(frequency))%>%
top_n(10)%>%
ggplot(aes(x=word,y=frequency))+geom_bar(stat="identity")
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## Selecting by frequency
0
2500
5000
7500
#meghanandharry#meghanmarkle#oprahmeghanharry#princeharry amp family harry interview meghan royal
word
fre
qu
en
cy
You probably see that there’s an outlier here, and you can filter out that outlier to better compare the
remaining 9 words in the top 10 by using filter() and a frequency threshold.
tidy_mm%>%
group_by(word)%>%
summarise(frequency=n())%>%
arrange(desc(frequency))%>%
top_n(10)%>%
filter(frequency<3000)%>%
ggplot(aes(x=word,y=frequency))+geom_bar(stat="identity")
10
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## Selecting by frequency
0
500
1000
1500
2000
#meghanandharry#oprahmeghanharry#p inceharry amp family harry interview meghan royal
word
fre
qu
en
cy
14. Other measures of “popularity”
Word frequency is an interesting measure, but just because lots of people are using a word doesn’t mean
that tweets including those words will perform well on engagement metrics.
In our dataset, we have the number of times a tweet has been retweeted (Num.of.Retweet). We can use this
variable to assess the relationship between tweets containing certain words and number of retweets.
Essentially, retweets in this case stand-in for the “popularity appeal” of certain words and tweets. Always
be careful and very clear about what you are and are not measuring–for example, the concept of popularity
may encompass more than what we are using to operationalize that concept (in this case, retweets).
Let’s look at the “popularity” of certain words by adding all of the retweets of tweets containing those words.
We want to sum retweets across words. How can we do this using the Num.of.Retweet column? Hint: you
will want to use group_by() to organize data by word, then a summarize statement. See if you can figure
out what should go in that summarize statement.
tidy_mm%>%
group_by(word)%>%
summarise(popularity=sum(Num.of.Retweet))
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
11
## # A tibble: 33,528 x 2
## word popularity
##
## 1 #abdicate 0
## 2 #abdicateprinceharry 0
## 3 #abdication 1
## 4 #abiymustlead 4
## 5 #abolishgovernorpost… 5
## 6 #abolishmegan 0
## 7 #abolishmonarchy 5
## 8 #abolishpolice 5
## 9 #abolishthemonarchy 54
## 10 #abolishthemonarchy… 3
## # ... with 33,518 more rows
Using arrange(), identify the most “popular” words in the dataset.
tidy_mm%>%
group_by(word)%>%
summarise(popularity=sum(Num.of.Retweet))%>%
arrange(desc(popularity))
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## # A tibble: 33,528 x 2
## word popularity
##
## 1 #meghanmarkle 20300
## 2 woman 10610
## 3 meghan 8123
## 4 suicidal 5224
## 5 dark 5134
## 6 speaking 4917
## 7 called 4913
## 8 w… 4869
## 9 feeling 4845
## 10 hours 4793
## # ... with 33,518 more rows
Let’s follow the same workflow that we used for word frequencies. By repeating a similar process, we can
also compare the measure of “popularity” with frequency, and see if we are capturing anything new with a
“popularity” measure.
First, make a histogram of the word “popularity” totals.
tidy_mm%>%
group_by(word)%>%
summarise(popularity=sum(Num.of.Retweet))%>%
ggplot(aes(x=popularity))+geom_histogram()
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## ‘stat_bin()‘ using ‘bins = 30‘. Pick better value with ‘binwidth‘.
12
010000
20000
30000
0 5000 10000 15000 20000
popularity
co
u
n
t
Interpret the graph in layman’s terms. What does this mean about the distribution of word popularity?
Use arrange() and the “top_n()” function again to identify the top 10 most popular words in the dataset.
tidy_mm%>%
group_by(word)%>%
summarise(popularity=sum(Num.of.Retweet))%>%
top_n(10)%>%
ggplot(aes(x=word,y=popularity))+geom_bar(stat="identity")
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## Selecting by popularity
13
05000
10000
15000
20000
#meghanmarklecalled dark feeling hours meghan speaking suicidal w… woman
word
po
pu
la
rit
y
Again, we have an outlier, and can filter for a certain threshold of popularity to more closely compare the
other top 9 words.
tidy_mm%>%
group_by(word)%>%
summarise(popularity=sum(Num.of.Retweet))%>%
top_n(10)%>%
filter(popularity<20000)%>%
ggplot(aes(x=word,y=popularity))+geom_bar(stat="identity")
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## Selecting by popularity
14
03000
6000
9000
called dark feeling hours meghan speaking suicidal w… woman
word
po
pu
la
rit
y
15. Looking at hashtags
We might be specifically interested in hashtags because they play a special role on Twitter. Let’s filter the
dataset so we are only looking at words that are hashtags. We can do this most easily using the “str_detect()”
function from the “stringr” package inside of a filter() function from dplyr.
str_detect() identifies all strings containing a certain word, phrase, or set of words/phrases. An example
of filtering using str_detect() is below. This example identifies all rows in the dataset where the “word”
column contains “@”.
tidy_mm%>%filter(str_detect(word,"@"))
## User Location
## 1 amyppuan
## 2 SteveBrant New York, NY
## 3 Syrobbo1
## 4 AKansan63 London, England
## 5 nonotousky United States
## 6 RoyallyPetite United Kingdom
## 7 RoyallyPetite United Kingdom
## 8 RoyallyPetite United Kingdom
## 9 Chanchie19 Global Citizen
## 10 Chanchie19 Global Citizen
## 11 Jason35782733
## 12 Jason35782733
15
## 13 Jason35782733
## 14 YogaMama9908
## 15 NormanHermant Melbourne, Victoria
## 16 NormanHermant Melbourne, Victoria
## 17 NormanHermant Melbourne, Victoria
## 18 tommybox3
## 19 tommybox3
## 20 myfairladyt Maryland
## 21 gumpst California, USA
## 22 itskelsixo tryna find wonderland
## 23 AmazingDouglass East Rochester, NY
## 24 Binkydesigns
## 25 Binkydesigns
## 26 xtrology Hollywood, California
## 27 WilnotTwilight Slither On.
## 28 FredericksMama
## 29 nadinewilliams Toronto, Canada
## 30 Mama_Liberal Lakeland, FL
## 31 LeighsyPeasy
## 32 LeighsyPeasy
## 33 IdaAmelda1 Salford uk
## 34 PriteshGovindji Divided "United" Kingdom
## 35 Tifidomnic Fort Lauderdale, FL
## 36 daveefrogdog Land of Pixies
## 37 JackMFoster United Kingdom
## 38 angelneptustar North London
## 39 angelneptustar North London
## 40 jillienp Bay Area, CA
## 41 BusayoAwe1
## 42 JustGailP Santa Cruz, CA
## 43 Truthbitch10
## 44 gatitonic1968 Canada
## 45 DuchessJRM Hong Kong Sydney London
## 46 DuchessJRM Hong Kong Sydney London
## 47 yasminabloom
## 48 QUIVUK Milky Way
## 49 tweetingbrit Los Angeles + Coachella Valley
## 50 tweetingbrit Los Angeles + Coachella Valley
## 51 grotsky_byotch California, USA
## 52 drudc77 Washington, DC
## 53 CeeJervis
## 54 CeeJervis
## 55 brinaone1 London
## 56 kellythe1st Scotland.
## 57 kellythe1st Scotland.
## 58 kellythe1st Scotland.
## 59 LuluWalcott1 Los Angeles, CA
## 60 BPositive33
## 61 BPositive33
## 62 BPositive33
## 63 BPositive33
## 64 BPositive33
## 65 jennifer_su Johannesburg, South Africa
## 66 jennifer_su Johannesburg, South Africa
16
## 67 SueW251161 Citizen of the World 🗺ï¸\217
## 68 drudc77 Washington, DC
## 69 drudc77 Washington, DC
## 70 KatPRusso California
## 71 lanesborough77 Dorset, UK
## 72 womble1958 Nowhere
## 73 womble1958 Nowhere
## 74 martinradio United Kingdom
## 75 martinradio United Kingdom
## 76 NotSoIntel Houston, TX
## 77 Istillwantapony USA
## 78 CatChatter25 U.S.A.
## 79 CatChatter25 U.S.A.
## 80 RobinGr08124639
## 81 RobinGr08124639
## 82 RobinGr08124639
## 83 ZeldaVegas
## 84 ZeldaVegas
## 85 OKMagazine New York City
## 86 drerikatajra London - UK
## 87 Krystalbal1
## 88 tickerNEWSau International News Channel
## 89 tickerNEWSau International News Channel
## 90 Isdiam Israeli Diamond Industry
## 91 ronnabr United States
## 92 ronnabr United States
## 93 JessiieLynn90 England, United Kingdom
## 94 keanespirit Alderley Edge, Cheshire, Engla
## 95 MikInTheMission US/EU
## 96 radar_online
## 97 juliuslumsden1 California & United Kingdom
## 98 ggonefan
## 99 ggonefan
## 100 AKansan63 London, England
## 101 AKansan63 London, England
## 102 AKansan63 London, England
## 103 AKansan63 London, England
## 104 KevMcCready Mid Devon
## 105 jabjabforever Grenada and England, UK
## 106 jabjabforever Grenada and England, UK
## 107 kathyrinkes
## 108 PalMaverick
## 109 Monty1Capuletti Short Hills, NJ
## 110 cezzabean North Warwickshire
## 111 ResistRF
## 112 GuyFawk95323763 Traveling
## 113 GuyFawk95323763 Traveling
## 114 mid_zan
## 115 uobrims Holland, MI
## 116 uobrims Holland, MI
## 117 uobrims Holland, MI
## 118 Iam2old4this2 North America
## 119 Iam2old4this2 North America
## 120 Tracie93315429
17
## 121 gracieopulanza Lucca, Tuscany
## 122 lemmsysven Walsall, England
## 123 MullerDonUK
## 124 MullerDonUK
## 125 MullerDonUK
## 126 rishibagree Kolkata, India
## 127 CatsHighlanders Wisconsin
## 128 CatsHighlanders Wisconsin
## 129 CatsHighlanders Wisconsin
## 130 Sarabeth607 USA
## 131 LRushgirl
## 132 LRushgirl
## 133 LRushgirl
## 134 LRushgirl
## 135 marciomattosuk Lisbon, Portugal
## 136 marciomattosuk Lisbon, Portugal
## 137 AltheaAikens United States
## 138 rock_the_word
## 139 nighthawkins Edinburgh
## 140 nighthawkins Edinburgh
## 141 nighthawkins Edinburgh
## 142 floramcg7
## 143 notoriousbug Ireland
## 144 Anthorn_Kewl Peterborough, England
## 145 Anthorn_Kewl Peterborough, England
## 146 theskibeagle London & Ireland
## 147 theskibeagle London & Ireland
## 148 AltheaAikens United States
## 149 Seanmaloney0
## 150 zafarwestern Karachi
## 151 Syrobbo1
## 152 Syrobbo1
## 153 BardotRebecca San Francisco, CA
## 154 Knowled79420294
## 155 kachirilady
## 156 kachirilady
## 157 RaynoldNongdha1 India
## 158 JoeBraxtonTouch ÃœT: 38.975121,-76.888847
## 159 tommybox3
## 160 EricGuster âœ\210ï¸\217Birminghamâœ\210ï¸\217Brooklyn âœ\210ï¸\217
## 161 therealbettychu Washington, D.C.
## 162 Fran_Neena20409 Minnesota, USA
## 163 Krystalbal1
## 164 nighthawkins Edinburgh
## 165 nighthawkins Edinburgh
## 166 Dhriyamana Utopia
## 167 Dhriyamana Utopia
## 168 Switdifferent Midrand-SA
## 169 yipmann82
## 170 Ecryptonike
## 171 TekManiax Canada
## 172 SUPERFERTILE_UK UNIVERSE
## 173 SUPERFERTILE_UK UNIVERSE
## 174 DavidUlster statelet @forgottenpeople
18
## 175 DavidUlster statelet @forgottenpeople
## 176 DavidUlster statelet @forgottenpeople
## 177 DavidUlster statelet @forgottenpeople
## 178 DavidUlster statelet @forgottenpeople
## 179 DavidUlster statelet @forgottenpeople
## 180 DavidUlster statelet @forgottenpeople
## 181 DavidUlster statelet @forgottenpeople
## 182 tokyoyeti
## 183 ann_dempsey
## 184 sweetindulgen13
## 185 Jeanne_Hovanec MA
## 186 NateJackson_OWN
## 187 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 188 JarrettCampbe13 Las Vegas, NV
## 189 IamMoumitaMaity
## 190 MendeJoey Croydon, London
## 191 MendeJoey Croydon, London
## 192 MendeJoey Croydon, London
## 193 bobbyinvierno Mars
## 194 bickers1983 Earth
## 195 bickers1983 Earth
## 196 bickers1983 Earth
## 197 NVHallstrom Burlingame, KS
## 198 Babar_17
## 199 OriginalKooLaLa Dublin
## 200 quickbeam71 Kettering, OH
## 201 EOkenesi London
## 202 JimmitShah Mumbai, India
## 203 JimmitShah Mumbai, India
## 204 MackZorris The Burbs
## 205 AmBeR1994m
## 206 McDJohanne Montréal - Québec - UK - Paris
## 207 CatsHighlanders Wisconsin
## 208 CatsHighlanders Wisconsin
## 209 ChelseaLadyCFC
## 210 TheTrut87905708
## 211 gingerandnuts England, United Kingdom
## 212 AKansan63 London, England
## 213 AKansan63 London, England
## 214 AKansan63 London, England
## 215 AKansan63 London, England
## 216 gkgguy
## 217 bickers1983 Earth
## 218 MiloSara4 Joined Twitter November 2011
## 219 IamCjCarter Probably in a meeting
## 220 omarnou18641172 Everywhere
## 221 omarnou18641172 Everywhere
## 222 acauto Oakville, Ontario
## 223 megantheeteachr Houston, TX
## 224 megantheeteachr Houston, TX
## 225 megantheeteachr Houston, TX
## 226 megantheeteachr Houston, TX
## 227 Kevin_V_Ram UK
## 228 Kevin_V_Ram UK
19
## 229 YNB Fiddling with your mind
## 230 MalaikaHelena
## 231 MalaikaHelena
## 232 ShelettaIsFunny Cottage Grove, MN
## 233 ShelettaIsFunny Cottage Grove, MN
## 234 jennifer_su Johannesburg, South Africa
## 235 RiccoNemBerry BIRMINGHAM TOWN 0121
## 236 RiccoNemBerry BIRMINGHAM TOWN 0121
## 237 karen_tips
## 238 lpoulton United Kingdom
## 239 IdfwuMr
## 240 JG35580758
## 241 JG35580758
## 242 EtyYopi United States
## 243 EtyYopi United States
## 244 MediaMavenMade East Coast
## 245 MediaMavenMade East Coast
## 246 MediaMavenMade East Coast
## 247 RoyallyPetite United Kingdom
## 248 1221Freddie Philadelphia, PA
## 249 1221Freddie Philadelphia, PA
## 250 ChrisMarius NYC
## 251 samknowsnow Earth, Milky Way & Searching
## 252 BinGoldmanPsyD Clifton, NJ
## 253 BinGoldmanPsyD Clifton, NJ
## 254 Tracie93315429
## 255 BenKastro357 Liverpool, Great Britain
## 256 JimmyPlankRoad San Diego, CA
## 257 Neriah_K Atlanta, GA
## 258 omitbdf RT ≠agree
## 259 nenyloks
## 260 9QNXA Victoria Falls, Rhodesia
## 261 juliuslumsden1 California & United Kingdom
## 262 toya121
## 263 UKcydonia Nottinghamshire, UK
## 264 cool2_b United States
## 265 Tom_Further2Fly Northern Hemisphere
## 266 Tom_Further2Fly Northern Hemisphere
## 267 CariWard
## 268 CariWard
## 269 RV_27 Melbourne, Victoria, Australia
## 270 1adamod Birmingham, England
## 271 HumpyRu
## 272 liloo19650780 Moustic Island palace
## 273 chris_rosello Charlotte, NC
## 274 RogueOneIsh Birmingham, England
## 275 RogueOneIsh Birmingham, England
## 276 smileslatoya United States
## 277 mshawaii2020 Arlington, VA
## 278 GeraldineGeneva Lausanne, Switzerland
## 279 Tamarmilly New York
## 280 meugeniamontiel
## 281 CalElcombe
## 282 SouthernDem74 United States
20
## 283 hopemaga California, USA
## 284 ChandradipSaha Pune
## 285 time4chirping Boston, MA
## 286 time4chirping Boston, MA
## 287 nalames where do you want me to be?
## 288 nalames where do you want me to be?
## 289 nalames where do you want me to be?
## 290 nalames where do you want me to be?
## 291 ilovenolabear Newton, MA
## 292 reperioverum North West, England
## 293 nighthawkins Edinburgh
## 294 tavisint Santa Cruz, CA
## 295 C_arolin_e77 England
## 296 C_arolin_e77 England
## 297 VZabbal
## 298 WhiteHouse20200
## 299 ShelettaIsFunny Cottage Grove, MN
## 300 ShelettaIsFunny Cottage Grove, MN
## 301 ShelettaIsFunny Cottage Grove, MN
## 302 ShelettaIsFunny Cottage Grove, MN
## 303 ShelettaIsFunny Cottage Grove, MN
## 304 BorisJustLies 10 Downing Street
## 305 BorisJustLies 10 Downing Street
## 306 BorisJustLies 10 Downing Street
## 307 BorisJustLies 10 Downing Street
## 308 RBryan275 United Kingdom
## 309 armstrongs09
## 310 armstrongs09
## 311 livewithkatie
## 312 livewithkatie
## 313 livewithkatie
## 314 willpowerentllc Brooklyn, NY
## 315 VZabbal
## 316 wonderwomancall in your soul
## 317 sussexsquadpod Worldwide
## 318 sussexsquadpod Worldwide
## 319 fpjindia India
## 320 fpjindia India
## 321 Gordon_McQue West of Scotland
## 322 CDE_Drew
## 323 DJNYC1
## 324 juliuslumsden1 California & United Kingdom
## 325 juliuslumsden1 California & United Kingdom
## 326 juliuslumsden1 California & United Kingdom
## 327 interiorskate Royal Tunbridge Wells, England
## 328 AebJudith New York New York
## 329 AebJudith New York New York
## 330 AebJudith New York New York
## 331 julieroot4 Santa Rosa, CA
## 332 julieroot4 Santa Rosa, CA
## 333 HalaAyala Virginia, USA
## 334 bjfo Houston, TX
## 335 HomefrontHugs USA #FreedomEndures #SOT
## 336 bickers1983 Earth
21
## 337 didithitthespot United Kingdom
## 338 forkLiberals
## 339 BlessedandHF Windsor, CT
## 340 Viwe_Pobana Pretoria, South Africa
## 341 renee11110
## 342 truckerjoe51 Kitchener On
## 343 tonahjetua Jamaica
## 344 meine__schatz
## 345 Melody22M Universe
## 346 IAmSophiaNelson Commonwealth of Virginia
## 347 LordHthegreatH1 nice place on Earth
## 348 ItsMichelle_l_
## 349 nigrugthug
## 350 nigrugthug
## 351 WistfulCass Coventry, Remainia, The EU ðŸŒ\215
## 352 drudc77 Washington, DC
## 353 GuildyFox wakanda
## 354 blueblood_2
## 355 tommybox3
## 356 tommybox3
## 357 tommybox3
## 358 tommybox3
## 359 FigliContesi Italia
## 360 FigliContesi Italia
## 361 tickerNEWSau International News Channel
## 362 tickerNEWSau International News Channel
## 363 tickerNEWSau International News Channel
## 364 triciaspellman1
## 365 triciaspellman1
## 366 ethelik
## 367 ShethePeopleNe1 Boston, MA
## 368 ShethePeopleNe1 Boston, MA
## 369 recfountain NJ
## 370 Wrestfull The Big Blue Marble
## 371 MichaelPLS Las Vegas c/o Louisville, KY
## 372 Chantal0511
## 373 RiverStreet1 Big City, USA
## 374 RiverStreet1 Big City, USA
## 375 claireb48939860
## 376 claireb48939860
## 377 claireb48939860
## 378 claireb48939860
## 379 selwynpieters Toronto, Ontario
## 380 RickyNolan74 England, United Kingdom
## 381 kachirilady
## 382 junederrick36 So close but yet so far away
## 383 meine__schatz
## 384 RightsMatter101
## 385 RMBlaber56 Northamptonshire, England.
## 386 RMBlaber56 Northamptonshire, England.
## 387 MartinWilliam95 Georgia
## 388 Ktina3211 Towson, MD
## 389 Ktina3211 Towson, MD
## 390 bsocialplus San Francisco, CA
22
## 391 arXiv6174
## 392 NVLShePersisted New York metro area
## 393 EOkenesi London
## 394 EOkenesi London
## 395 RunningMama11
## 396 boi_oprah California, USA
## 397 LAWriter Los Angeles, CA
## 398 LAWriter Los Angeles, CA
## 399 LAWriter Los Angeles, CA
## 400 MohamoudGaildon Peoria, IL, USA
## 401 brcena New Monmouth,NJ
## 402 IsleOfSceptre
## 403 IsleOfSceptre
## 404 IsleOfSceptre
## 405 OddsCheckerUS
## 406 drudc77 Washington, DC
## 407 fatima_n00r1 پنجاب, پاکØ3تان
## 408 CarrieLaneSmith
## 409 GElvidge821860
## 410 TForever43
## 411 TForever43
## 412 MelByTheSand California, USA
## 413 theskibeagle London & Ireland
## 414 ShelettaIsFunny Cottage Grove, MN
## 415 anna_itsonlyme
## 416 nidhi38996167
## 417 supremesongbird
## 418 amackcampbell Nottingham
## 419 AyemieMr CT NY NJ
## 420 AyemieMr CT NY NJ
## 421 OkoechL Kibera, Kenya
## 422 JG35580758
## 423 Marctruth1978 West Sussex/London
## 424 ganais_anais London, England
## 425 ganais_anais London, England
## 426 PayzleeRose 406
## 427 PayzleeRose 406
## 428 PayzleeRose 406
## 429 PayzleeRose 406
## 430 PayzleeRose 406
## 431 unpick_podcast On all good podcast platforms!
## 432 mansikoul Jammu & Kashmir | Gurgaon
## 433 Trump45isaloser
## 434 Trump45isaloser
## 435 nmorgasenradio
## 436 RealTVVibes
## 437 RealTVVibes
## 438 peridotleostar United States
## 439 ara8ara SoCaL â\200¢ â\200¢ â\200¢ â\200” â\200” â\200” â\200¢ â\200¢ â\200¢
## 440 ara8ara SoCaL â\200¢ â\200¢ â\200¢ â\200” â\200” â\200” â\200¢ â\200¢ â\200¢
## 441 ara8ara SoCaL â\200¢ â\200¢ â\200¢ â\200” â\200” â\200” â\200¢ â\200¢ â\200¢
## 442 ara8ara SoCaL â\200¢ â\200¢ â\200¢ â\200” â\200” â\200” â\200¢ â\200¢ â\200¢
## 443 princess_edot Nottingham
## 444 princess_edot Nottingham
23
## 445 princess_edot Nottingham
## 446 EmiUNC
## 447 EmiUNC
## 448 briancartoon Norwich, England
## 449 briancartoon Norwich, England
## 450 ZkFranks Indy, IN
## 451 ZkFranks Indy, IN
## 452 BelleAudiophile California
## 453 HHamaschiach
## 454 alannacouture88 Livin’ Free or Dyin’
## 455 alannacouture88 Livin’ Free or Dyin’
## 456 alannacouture88 Livin’ Free or Dyin’
## 457 alannacouture88 Livin’ Free or Dyin’
## 458 alittlelotus (408)
## 459 cool2_b United States
## 460 cool2_b United States
## 461 cool2_b United States
## 462 Melody22M Universe
## 463 lumekaaveknew Alkebulan, Afur ika
## 464 3wisemonk3ys California, USA
## 465 3wisemonk3ys California, USA
## 466 TanveerRouf Vancouver, British Columbia
## 467 ResaChuks ..........
## 468 AnnieBrat New York, USA
## 469 ShelettaIsFunny Cottage Grove, MN
## 470 ShelettaIsFunny Cottage Grove, MN
## 471 CodyMarley ?
## 472 DenverVictoria Virginia, USA
## 473 WinifredLovatt Just Outside London UK
## 474 WinifredLovatt Just Outside London UK
## 475 WinifredLovatt Just Outside London UK
## 476 cashmoneydoll1 United States
## 477 armstrongs09
## 478 armstrongs09
## 479 blacktulipmc Seattle
## 480 myfairladyt Maryland
## 481 hisey_mike New York
## 482 hisey_mike New York
## 483 hisey_mike New York
## 484 HumpyRu
## 485 gwayathat New York, NY
## 486 gwayathat New York, NY
## 487 McDJohanne Montréal - Québec - UK - Paris
## 488 phyllmhill Atlanta, GA
## 489 punkhaux
## 490 FredericksMama
## 491 FrankViewZ UK
## 492 FrankViewZ UK
## 493 Justice4Marky Lancashire
## 494 SholaMos1 England, United Kingdom
## 495 SholaMos1 England, United Kingdom
## 496 FarrisFlagg Perris,California
## 497 FarrisFlagg Perris,California
## 498 FarrisFlagg Perris,California
24
## 499 FarrisFlagg Perris,California
## 500 FarrisFlagg Perris,California
## 501 FarrisFlagg Perris,California
## 502 FarrisFlagg Perris,California
## 503 FarrisFlagg Perris,California
## 504 FarrisFlagg Perris,California
## 505 Mimizwei Global
## 506 Mimizwei Global
## 507 lynstep500 England
## 508 native_amaris United States (for now)
## 509 native_amaris United States (for now)
## 510 SputnikInt
## 511 SputnikInt
## 512 PeepingMoon PeepingMoon HQ, Mumbai
## 513 jackroskopp Detroit, MI
## 514 isthatdavidp Northern Ireland
## 515 steviegirl1972 arizona..you know planet Earth
## 516 steviegirl1972 arizona..you know planet Earth
## 517 kristenmeinzer Brooklyn, NY
## 518 kristenmeinzer Brooklyn, NY
## 519 careerfed DC-SFO-SW FL-Cuba
## 520 careerfed DC-SFO-SW FL-Cuba
## 521 MalikaGhosh USA
## 522 pattietierney
## 523 pduetswithBabs #Florida Earth #FBR 🌊
## 524 pduetswithBabs #Florida Earth #FBR 🌊
## 525 JessJane2020
## 526 JessJane2020
## 527 beanielou567 ÃœT: 33.456816,-88.802723
## 528 dr_options United Kingdom
## 529 Tigresi98186068 Miami, Florida
## 530 FredGanza7 Earth
## 531 FredGanza7 Earth
## 532 TheModerateGenY USA
## 533 wilbursbarn
## 534 speakyo44112617
## 535 speakyo44112617
## 536 ToucheAdrian
## 537 ToucheAdrian
## 538 ToucheAdrian
## 539 NavigatorNancy Bavaria, Germany
## 540 PbjPius
## 541 PbjPius
## 542 itismedesu Santa Monica
## 543 itismedesu Santa Monica
## 544 TheOtherRBG Arlington, VA
## 545 MrsVSNC09 NC
## 546 MrsVSNC09 NC
## 547 MrsVSNC09 NC
## 548 MrsVSNC09 NC
## 549 MrsVSNC09 NC
## 550 MrsVSNC09 NC
## 551 MrsVSNC09 NC
## 552 MrsVSNC09 NC
25
## 553 MrsVSNC09 NC
## 554 MrsVSNC09 NC
## 555 colbaltsparkle North Yorkshire
## 556 colbaltsparkle North Yorkshire
## 557 den_bels
## 558 carleigh364 Victoria, Australia
## 559 Luapsevaerg North West, England
## 560 Luapsevaerg North West, England
## 561 DavonHamilton Washington, DC
## 562 TweetLesley_ England
## 563 TweetLesley_ England
## 564 TweetLesley_ England
## 565 TweetLesley_ England
## 566 Jamaleric South Africa and Global
## 567 davidmweissman Palm Bay, FL
## 568 IsleOfSceptre
## 569 elfsocks
## 570 Marvcovi Worldwide
## 571 Anish_Debnath New Delhi
## 572 AKansan63 London, England
## 573 AKansan63 London, England
## 574 akaPrinceHarry London, England
## 575 sanoracle1 Mt.Olympus
## 576 GuyFawk95323763 Traveling
## 577 GuyFawk95323763 Traveling
## 578 FlaminGadzooks
## 579 nataliemayhew14
## 580 Serena09386470
## 581 Serena09386470
## 582 Serena09386470
## 583 Serena09386470
## 584 JamieKUTV2 Salt Lake City, UT
## 585 JamieKUTV2 Salt Lake City, UT
## 586 bumpyjonasdc God’s universe
## 587 edtwo2
## 588 americankat62 Earth
## 589 americankat62 Earth
## 590 americankat62 Earth
## 591 wwonwosbr Wonsa Tech, Bahirdar, Ethiopia
## 592 2blessd2stress_
## 593 Olufunmi_17 Pennsylvania, USA
## 594 DuchessJRM Hong Kong Sydney London
## 595 DuchessJRM Hong Kong Sydney London
## 596 DuchessJRM Hong Kong Sydney London
## 597 DuchessJRM Hong Kong Sydney London
## 598 DuchessJRM Hong Kong Sydney London
## 599 elizabethbetsyr Queens, NY
## 600 elizabethbetsyr Queens, NY
## 601 CeeJervis
## 602 whydowe6
## 603 karendumas United States
## 604 karendumas United States
## 605 calvin_wills_jr Glen Allen, VA
## 606 Georgeprins1 Nederland
26
## 607 Georgeprins1 Nederland
## 608 MistaDaz The West Part â\200\230Aâ\200\231 Town
## 609 MistaDaz The West Part â\200\230Aâ\200\231 Town
## 610 VoiceOfTas
## 611 joymdiv Atlanta, GA
## 612 joymdiv Atlanta, GA
## 613 BusayoAwe1
## 614 BusayoAwe1
## 615 IsleOfSceptre
## 616 IsleOfSceptre
## 617 EvansLycette
## 618 WarringahViVa97 Warringah 2100
## 619 WarringahViVa97 Warringah 2100
## 620 WarringahViVa97 Warringah 2100
## 621 WarringahViVa97 Warringah 2100
## 622 HPeddles United States
## 623 HPeddles United States
## 624 grace_m_stetson San Francisco Bay Area
## 625 LordBowesLyon England, United Kingdom
## 626 LordBowesLyon England, United Kingdom
## 627 LordBowesLyon England, United Kingdom
## 628 LordBowesLyon England, United Kingdom
## 629 AnnaDegoede Mount Joy, Pennsylvania
## 630 TheVotingNerd New York, USA
## 631 _DustinMartin
## 632 doodle_sammy Florida, USA
## 633 WhiteHouse20200
## 634 AngelaC16168415 Wembley, Greater London
## 635 flower_lee8 London, England
## 636 tommybox3
## 637 drudc77 Washington, DC
## 638 HomefrontHugs USA #FreedomEndures #SOT
## 639 OlliG1111
## 640 tweetingbrit Los Angeles + Coachella Valley
## 641 tweetingbrit Los Angeles + Coachella Valley
## 642 FoolsMultiply
## 643 FoolsMultiply
## 644 KDavisGayFriend A swing state near you.
## 645 simrjones The Toon
## 646 LizYoun55179126
## 647 ronnirg
## 648 ValHopeHanna1
## 649 ValHopeHanna1
## 650 HughJayness2
## 651 quickbeam71 Kettering, OH
## 652 quickbeam71 Kettering, OH
## 653 quickbeam71 Kettering, OH
## 654 alexbpeterson everywhere like such as
## 655 CherylETaylor California, USA
## 656 CherylETaylor California, USA
## 657 alf_mom_alien Midwest
## 658 DanAlexisPR London, England
## 659 DanAlexisPR London, England
## 660 Dananeerr__ Pakistan
27
## 661 Dananeerr__ Pakistan
## 662 Dananeerr__ Pakistan
## 663 SoapQueen86 Inverness, Scotland
## 664 SomewhatHarmles A cave surrounded by bones.
## 665 lanesborough77 Dorset, UK
## 666 jenlove999 🌴Philippines
## 667 QueSeraSeraC Australia
## 668 drudc77 Washington, DC
## 669 _NatashaDevon London
## 670 _NatashaDevon London
## 671 BiPartiArti United States
## 672 toodamnskippy Hiding in my sock drawer
## 673 lil_doc_b Toronto, Ontario
## 674 n1cktalk1ng
## 675 n1cktalk1ng
## 676 n1cktalk1ng
## 677 MeghansMeyhive
## 678 MeghansMeyhive
## 679 MeghansMeyhive
## 680 MeghansMeyhive
## 681 MeghansMeyhive
## 682 mansikoul Jammu & Kashmir | Gurgaon
## 683 DuaneAMoody Washington, DC
## 684 C0C0AM
## 685 newyorker9_28 Bronx, NY
## 686 AJFleet_Co Tameside
## 687 makeitamystery Somewhere sulking
## 688 Mister_Spalding worldwide
## 689 Mister_Spalding worldwide
## 690 RomneySmith Cleveland, OH
## 691 JayneSloan17 England, United Kingdom
## 692 jamaa_abdi
## 693 rec777777 South West, England
## 694 Anna59499783
## 695 Anna59499783
## 696 HiraHenna Mars
## 697 HackneyBlack London, England
## 698 HackneyBlack London, England
## 699 HackneyBlack London, England
## 700 EhsanSimin Persian Empire ðŸ“
## 701 EhsanSimin Persian Empire ðŸ“
## 702 EhsanSimin Persian Empire ðŸ“
## 703 blackbuttrfly Dallas, TX
## 704 MaryMacElveen
## 705 MaryMacElveen
## 706 Ramonzmania
## 707 GujjuMafia Chand Pe Hai Apun
## 708 GujjuMafia Chand Pe Hai Apun
## 709 hopemaga California, USA
## 710 MrDgen Toronto
## 711 polynesianjules Narnia
## 712 AbundantLife88
## 713 AbundantLife88
## 714 KatieJo47459809 Chicago, Il
28
## 715 CooHarriet
## 716 AndyEastAnglia England, United Kingdom
## 717 alexizedM
## 718 alexizedM
## 719 alexizedM
## 720 alexizedM
## 721 ChiomaEucheria Somewhere, in the World
## 722 chicks67 Chicago,IL
## 723 chicks67 Chicago,IL
## 724 kirti168 London, England
## 725 Reashelby1
## 726 Reashelby1
## 727 Reashelby1
## 728 Reashelby1
## 729 Reashelby1
## 730 Reashelby1
## 731 Reashelby1
## 732 Reashelby1
## 733 wsucpa
## 734 wsucpa
## 735 wsucpa
## 736 Drjot London, W Africa, USA & Canada
## 737 Drjot London, W Africa, USA & Canada
## 738 ittibittikitti Hit and Run Tweeter
## 739 ittibittikitti Hit and Run Tweeter
## 740 ittibittikitti Hit and Run Tweeter
## 741 ittibittikitti Hit and Run Tweeter
## 742 ittibittikitti Hit and Run Tweeter
## 743 ittibittikitti Hit and Run Tweeter
## 744 RyanBachoo Wherever the story is
## 745 fiyahchild
## 746 Jason35782733
## 747 Jason35782733
## 748 ZachAndThat1
## 749 WhoSaidWhatOMG United States/ United Kingdom
## 750 official_arna
## 751 official_arna
## 752 official_arna
## 753 official_arna
## 754 official_arna
## 755 official_arna
## 756 official_arna
## 757 official_arna
## 758 official_arna
## 759 RebelDimond South West, England
## 760 RebelDimond South West, England
## 761 RebelDimond South West, England
## 762 RebelDimond South West, England
## 763 WhitleyMarionGW
## 764 WhitleyMarionGW
## 765 oldscratch42 Cincinnati, OH
## 766 oldscratch42 Cincinnati, OH
## 767 drudc77 Washington, DC
## 768 TekManiax Canada
29
## 769 TekManiax Canada
## 770 NobbsPaddy
## 771 ShefaliSamdaria Mumbai, India
## 772 latestly Mumbai, India
## 773 TchambazaLamba
## 774 WhiteHouse20200
## 775 Guardian_Elite Southern California
## 776 Guardian_Elite Southern California
## 777 Guardian_Elite Southern California
## 778 MarkAshleyD London, Peckham
## 779 SerendipityShah London, UK
## 780 TekManiax Canada
## 781 AprilReens
## 782 AprilReens
## 783 AprilReens
## 784 zoobomax Australia
## 785 gatitonic1968 Canada
## 786 NewsCastle10
## 787 icur_here2 Queensland, Australia
## 788 CarolB_321
## 789 CarolB_321
## 790 SaraJohnPoll1 England, United Kingdom
## 791 Lucindajane_x Swindon
## 792 Lucindajane_x Swindon
## 793 TheStephenRalph Ayr, ðŸ\217´ó \201§ó \201¢ó \2013ó \201£ó \201´ó \201¿ 🇬🇧
## 794 AKansan63 London, England
## 795 AKansan63 London, England
## 796 RealSoyinkaJnr Everywhere You Go
## 797 Danaslewis London and ...
## 798 s_hairstylist London, Worldwide
## 799 Maximuss9999 New York, USA
## 800 JB001001 Melbourne, Victoria, Australia
## 801 WhiteHouse20200
## 802 WhiteHouse20200
## 803 doodle_sammy Florida, USA
## 804 doodle_sammy Florida, USA
## 805 doodle_sammy Florida, USA
## 806 Tellitl66077922
## 807 PrivateParts16 Lincoln, UK
## 808 PrivateParts16 Lincoln, UK
## 809 Diamond2Queen In ur â\231¡ â\200‹â\200‹Æ Í¡Ì´Ì´.Ì®Æ Í¡Ì´Ì´
## 810 Ilovepolls6
## 811 Ilovepolls6
## 812 Ilovepolls6
## 813 johnmiller United States
## 814 JulianIsWithUs
## 815 JulianIsWithUs
## 816 MaryKMyal West Coast USA
## 817 ___Mu____
## 818 Complyorcry London, England
## 819 zoobomax Australia
## 820 HondaCiViC2011
## 821 LordHthegreatH1 nice place on Earth
## 822 LordHthegreatH1 nice place on Earth
30
## 823 LordHthegreatH1 nice place on Earth
## 824 BorisJustLies 10 Downing Street
## 825 dbarefootlawyer Tamarac, FL
## 826 zeireen Where Middle Eastern food is
## 827 SISEKODUNYWA Durban, South Africa
## 828 exLabourFan
## 829 exLabourFan
## 830 GHarrington650 East Greenwich, RI
## 831 TheTruthHurtsS4
## 832 TheTruthHurtsS4
## 833 doctuir England
## 834 doctuir England
## 835 doctuir England
## 836 doctuir England
## 837 MichaelFinucan2 Palm Springs, CA
## 838 Maximuss9999 New York, USA
## 839 PricelessOpin
## 840 1952Ruby New York City, NY
## 841 KathyE_Boston Boston, MA
## 842 damufather Chicago by way of Philadelphia
## 843 MixerPsg Manchester
## 844 Stevereid96Reid
## 845 PearlaJam1
## 846 PearlaJam1
## 847 PearlaJam1
## 848 BelleAudiophile California
## 849 BelleAudiophile California
## 850 BelleAudiophile California
## 851 MassivMetro Johannesburg, South Africa
## 852 MassivMetro Johannesburg, South Africa
## 853 Lakotasky Washington, DC
## 854 patripatricr
## 855 patripatricr
## 856 undercoverwell
## 857 undercoverwell
## 858 sca2_0 Pop Brixton
## 859 sca2_0 Pop Brixton
## 860 sca2_0 Pop Brixton
## 861 AKansan63 London, England
## 862 AKansan63 London, England
## 863 brijh Outspoken â\231Ž in MN!
## 864 brijh Outspoken â\231Ž in MN!
## 865 brijh Outspoken â\231Ž in MN!
## 866 brijh Outspoken â\231Ž in MN!
## 867 brijh Outspoken â\231Ž in MN!
## 868 kiel_robinson London
## 869 mexikann
## 870 drudc77 Washington, DC
## 871 drudc77 Washington, DC
## 872 drudc77 Washington, DC
## 873 LordBowesLyon England, United Kingdom
## 874 LordBowesLyon England, United Kingdom
## 875 LordBowesLyon England, United Kingdom
## 876 LordBowesLyon England, United Kingdom
31
## 877 drudc77 Washington, DC
## 878 Soulchelle Earth
## 879 gkgguy
## 880 islandjenx Baleares
## 881 drofsnop1980
## 882 awellis_pharmd
## 883 drudc77 Washington, DC
## 884 DuchessJRM Hong Kong Sydney London
## 885 DuchessJRM Hong Kong Sydney London
## 886 SarahAMC72 Rome, Lazio 🇻🇦
## 887 SarahAMC72 Rome, Lazio 🇻🇦
## 888 andreaboehlke WI âœ\210ï¸\217 NYC but can’t sit still
## 889 Bantu_blood Nairobi, Kenya
## 890 G_Unit_80
## 891 sussexsquadpod Worldwide
## 892 sussexsquadpod Worldwide
## 893 sussexsquadpod Worldwide
## 894 sussexsquadpod Worldwide
## 895 sussexsquadpod Worldwide
## 896 sussexsquadpod Worldwide
## 897 bruce_southside Yorkshire and North Coast
## 898 DJXRAY77 N9, LONDON, UK
## 899 thewordsculptor Savannah, GA
## 900 thewordsculptor Savannah, GA
## 901 sandy10percent Arkansas, USA
## 902 NotSoIntel Houston, TX
## 903 kelseypcoffey Athens, GA
## 904 JBLHComms United States
## 905 nikolinapapa North America
## 906 katfrancoislcsw New Jersey, USA
## 907 katfrancoislcsw New Jersey, USA
## 908 _GiftofGab_ New York
## 909 _GiftofGab_ New York
## 910 itismedesu Santa Monica
## 911 itismedesu Santa Monica
## 912 nadinewilliams Toronto, Canada
## 913 nadinewilliams Toronto, Canada
## 914 knudsen_norma
## 915 ronnabr United States
## 916 iffy2 Melbourne Australia
## 917 iffy2 Melbourne Australia
## 918 britwithtalent Narcissitic Leaders @Twitter
## 919 britwithtalent Narcissitic Leaders @Twitter
## 920 britwithtalent Narcissitic Leaders @Twitter
## 921 JustHerSoundOff
## 922 Knowled79420294
## 923 cicero_psycho
## 924 BlackIndianNg Nigeria, Africa
## 925 simarkuk England, UK
## 926 simarkuk England, UK
## 927 speakyo44112617
## 928 ericasiegel DC-Baltimore
## 929 ericasiegel DC-Baltimore
## 930 Casumptious Scotland, United Kingdom
32
## 931 duchessofpoms Manchester, England
## 932 DorethiaKelly U.S.A
## 933 west_yorks Yorkshire and The Humber, England
## 934 EastDulwichMum London SE22
## 935 SummerRhapsody UK 🇪🇺
## 936 Jamaleric South Africa and Global
## 937 Jamaleric South Africa and Global
## 938 in_balloons Paris, France
## 939 in_balloons Paris, France
## 940 LGM777 Cleveland, Ohio
## 941 benp7777 The World
## 942 benp7777 The World
## 943 garygeorgevich Michigan, USA
## 944 Guardian_Elite Southern California
## 945 Guardian_Elite Southern California
## 946 azardey3 Cincinnati, OH
## 947 hypesleek
## 948 ECO_GEO_POL Queensland Australia Global
## 949 ECO_GEO_POL Queensland Australia Global
## 950 sherrieshepherd Los Angeles
## 951 EntitledBeauty_ Honolulu, HI
## 952 rivero_ilce
## 953 irabadasfuk
## 954 Godshandiwrk USA
## 955 IsleOfSceptre
## 956 sunrisedayton
## 957 KASTEREO1
## 958 Nxuba__Rhudulu East Rand
## 959 Nxuba__Rhudulu East Rand
## 960 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 961 FriedCandy69 San José de Guanipa, Venezuela
## 962 angelneptustar North London
## 963 karynpalminteri
## 964 itsmatthewreid_ Canada
## 965 JayneSloan17 England, United Kingdom
## 966 kathlovestennis Brooklyn Heights, NY
## 967 MojoLFC
## 968 TheDigitalChick Global
## 969 clarefarrell London
## 970 JoeMufc111 send me location
## 971 JoeMufc111 send me location
## 972 TheLastMoorKing
## 973 Johnny_cynical universal
## 974 Johnny_cynical universal
## 975 Justmythots8 London, England
## 976 Justmythots8 London, England
## 977 ToriesOUT6 United Kingdom
## 978 Bonfireh3art somewhere, nowhere
## 979 Bonfireh3art somewhere, nowhere
## 980 jackod9 sheffield
## 981 Mogsy22171230
## 982 devildog1633310 Weymouth Landing, MA
## 983 AKansan63 London, England
## 984 AKansan63 London, England
33
## 985 POPSUGAR San Francisco, LA, NYC
## 986 winemedineme Cincinnati, OH
## 987 Frobisher75
## 988 kieronmirch Leeds/London
## 989 kieronmirch Leeds/London
## 990 kieronmirch Leeds/London
## 991 CatChatter25 U.S.A.
## 992 CatChatter25 U.S.A.
## 993 CatChatter25 U.S.A.
## 994 DiaryOtdGirl London, England
## 995 s1m0nM3rcury UK
## 996 s1m0nM3rcury UK
## 997 s1m0nM3rcury UK
## 998 mAnDi06 New York City
## 999 HeyAndri ÃœT: 42.062431, -88.05242
## 1000 BorisJustLies 10 Downing Street
## 1001 MoRaY1959 In the Middle of Nowhere
## 1002 Polite_Lion
## 1003 1mikeraffone United States
## 1004 AltC0inDeGen
## 1005 Levelfranky The West
## 1006 Levelfranky The West
## 1007 Jujyfruit77 USA
## 1008 Jujyfruit77 USA
## 1009 Jujyfruit77 USA
## 1010 Jujyfruit77 USA
## 1011 ronnabr United States
## 1012 ronnabr United States
## 1013 LGM777 Cleveland, Ohio
## 1014 LGM777 Cleveland, Ohio
## 1015 LGM777 Cleveland, Ohio
## 1016 LGM777 Cleveland, Ohio
## 1017 LGM777 Cleveland, Ohio
## 1018 LGM777 Cleveland, Ohio
## 1019 Det_Nen USA
## 1020 Det_Nen USA
## 1021 Det_Nen USA
## 1022 0livepie
## 1023 0livepie
## 1024 0livepie
## 1025 0livepie
## 1026 ntl_angie USA
## 1027 OzWiz1 (in the Zeitgeist)
## 1028 OzWiz1 (in the Zeitgeist)
## 1029 OzWiz1 (in the Zeitgeist)
## 1030 OzWiz1 (in the Zeitgeist)
## 1031 NOLAed4Liberat1 New Orleans, LA
## 1032 FerrolEl Not here!!
## 1033 ueverwonderwhy United States
## 1034 ueverwonderwhy United States
## 1035 ueverwonderwhy United States
## 1036 ueverwonderwhy United States
## 1037 ueverwonderwhy United States
## 1038 IAmSharenSierra Global
34
## 1039 IAmSharenSierra Global
## 1040 jenlove999 🌴Philippines
## 1041 jenlove999 🌴Philippines
## 1042 EbonyJHilton_MD Charlottesville, VA
## 1043 gatitonic1968 Canada
## 1044 gatitonic1968 Canada
## 1045 gatitonic1968 Canada
## 1046 gatitonic1968 Canada
## 1047 gatitonic1968 Canada
## 1048 KM1PG_ PULAU PINANG PULAU MUTIARA
## 1049 SummerRhapsody UK 🇪🇺
## 1050 drudc77 Washington, DC
## 1051 Siralanhe england
## 1052 chynkwo
## 1053 ProEuropa_GB United Kingdom
## 1054 FemiAkinremi London
## 1055 ChareeOkee Cork 🇮🇪 / Manchester 🇬🇧
## 1056 Activa999666 Universe Way,. Universe!
## 1057 Activa999666 Universe Way,. Universe!
## 1058 mel_blue
## 1059 CherylETaylor California, USA
## 1060 EvilPenfold666
## 1061 sharonclaudia Salinas, Puerto Rico
## 1062 MMigs1985
## 1063 MMigs1985
## 1064 NicoloDiWumio Washington DC Metro
## 1065 NicoloDiWumio Washington DC Metro
## 1066 fourteenways
## 1067 m_huffalot
## 1068 DaisyCottageIRL Donegal, Ireland
## 1069 DaisyCottageIRL Donegal, Ireland
## 1070 MsBPH Beverly Hills, CA
## 1071 MsBPH Beverly Hills, CA
## 1072 tvmario Québec Canada
## 1073 nadinewilliams Toronto, Canada
## 1074 EvansLycette
## 1075 brakktonbooker Washington, DC
## 1076 JacobNBrown1992 Modesto, CA
## 1077 NotJustChronic Canada
## 1078 LordBowesLyon England, United Kingdom
## 1079 colbaltsparkle North Yorkshire
## 1080 BIGDaddio29 Glasgow, Scotland
## 1081 BIGDaddio29 Glasgow, Scotland
## 1082 BIGDaddio29 Glasgow, Scotland
## 1083 BIGDaddio29 Glasgow, Scotland
## 1084 BIGDaddio29 Glasgow, Scotland
## 1085 BIGDaddio29 Glasgow, Scotland
## 1086 BIGDaddio29 Glasgow, Scotland
## 1087 BIGDaddio29 Glasgow, Scotland
## 1088 LGM777 Cleveland, Ohio
## 1089 LGM777 Cleveland, Ohio
## 1090 LGM777 Cleveland, Ohio
## 1091 LGM777 Cleveland, Ohio
## 1092 LGM777 Cleveland, Ohio
35
## 1093 betrueplease
## 1094 betrueplease
## 1095 BBoldBFearless Kansas City, MO
## 1096 BBoldBFearless Kansas City, MO
## 1097 Mogsy22171230
## 1098 royal_suitor
## 1099 BiancaMelrose Los Angeles, CA
## 1100 polynesianjules Narnia
## 1101 mckendle United Kingdom
## 1102 CaptainKaos2
## 1103 EverydayAmeric7
## 1104 wh4tth3puck The Flat Bit, UK
## 1105 purrplepumpkinn
## 1106 purrplepumpkinn
## 1107 JErickson85 West Hollywood, CA
## 1108 dgivensterry
## 1109 islanderaggie Corpus Christi, TX
## 1110 ATLdiva69 Atlanta, GA
## 1111 BrianGPowell #9ll=#NWO #Nuclear #FalseFlag!
## 1112 aimeebothwell Iceland
## 1113 ThatsMsTrina TX
## 1114 NoBullshitBilly
## 1115 CraveYouTV
## 1116 methodicjon USA, East Coast
## 1117 methodicjon USA, East Coast
## 1118 LizVarghese1 New York, NY
## 1119 NgoziGodwell City of London, England
## 1120 Ushbho
## 1121 bensterbenster Chicago, IL
## 1122 IamKacio Ladera Heights, CA
## 1123 eveyoung216 Pennsylvania, USA
## 1124 eveyoung216 Pennsylvania, USA
## 1125 eveyoung216 Pennsylvania, USA
## 1126 eveyoung216 Pennsylvania, USA
## 1127 eveyoung216 Pennsylvania, USA
## 1128 eveyoung216 Pennsylvania, USA
## 1129 eveyoung216 Pennsylvania, USA
## 1130 JennaLee733 London, England
## 1131 JennaLee733 London, England
## 1132 janise62794570 New York
## 1133 janise62794570 New York
## 1134 anthonyscountry Brooklyn, NY
## 1135 mrsgreenberg Pembroke Pines, FL
## 1136 Dcruz99M California, USA
## 1137 tfayegriffin Los Angeles
## 1138 PurlMaster55 The Shire in The Land of Brook
## 1139 smithee_al Hollywood, USA
## 1140 smithee_al Hollywood, USA
## 1141 Kcim67 Luton Town
## 1142 very_keigie Johannesburg, South Africa
## 1143 MizzBronze Twitter
## 1144 KPKickAss USA
## 1145 MichelleWatt10 Victoria
## 1146 MichelleWatt10 Victoria
36
## 1147 Surbiton99
## 1148 Fzeroone2 Lockdown will last for months
## 1149 alexjaimesevyn
## 1150 G4RY_ Marbella,ES🌞🌴Caledonia,SC🌦
## 1151 G4RY_ Marbella,ES🌞🌴Caledonia,SC🌦
## 1152 Amberszonely Fort Wayne, IN
## 1153 cryrenee3
## 1154 sussexsquadpod Worldwide
## 1155 sussexsquadpod Worldwide
## 1156 sussexsquadpod Worldwide
## 1157 sussexsquadpod Worldwide
## 1158 gofollie Pennsylvania, USA
## 1159 mikingram123 Manchester/UK
## 1160 mikingram123 Manchester/UK
## 1161 JG35580758
## 1162 itsthestylehive
## 1163 FLM_Alban Yer maws hoose
## 1164 kachirilady
## 1165 kachirilady
## 1166 KFANRosen Minneapolis, MN
## 1167 jboyded
## 1168 ukirishlad
## 1169 wsucpa
## 1170 RedPillMo1
## 1171 WhipperyW
## 1172 WhipperyW
## 1173 britwithtalent Narcissitic Leaders @Twitter
## 1174 britwithtalent Narcissitic Leaders @Twitter
## 1175 Ice_Colder
## 1176 AltheaAikens United States
## 1177 AltheaAikens United States
## 1178 Ifeyinwaee
## 1179 Emmanue68582678
## 1180 Standing_Fox
## 1181 MalikaGhosh USA
## 1182 alanwhite12332 Dublin City, Ireland
## 1183 alanwhite12332 Dublin City, Ireland
## 1184 reporterjulie Houston, TX
## 1185 pjgrrl 41.907414000, -88.725959000
## 1186 TchambazaLamba
## 1187 TchambazaLamba
## 1188 TchambazaLamba
## 1189 bcadgroup Toronto
## 1190 Richtea_B UK
## 1191 Richtea_B UK
## 1192 LarkLogan Boston, MA
## 1193 JoiWalter
## 1194 JoiWalter
## 1195 JoiWalter
## 1196 JoiWalter
## 1197 justice59040798
## 1198 justice59040798
## 1199 justice59040798
## 1200 justice59040798
37
## 1201 imanmali United States
## 1202 imanmali United States
## 1203 imanmali United States
## 1204 MizzBronze Twitter
## 1205 MizzBronze Twitter
## 1206 deardrewdixon United States
## 1207 deardrewdixon United States
## 1208 deardrewdixon United States
## 1209 deardrewdixon United States
## 1210 TTSheehan Derry, Ireland
## 1211 TTSheehan Derry, Ireland
## 1212 McDJohanne Montréal - Québec - UK - Paris
## 1213 soundsmove Lesmahagow
## 1214 asadAc3 Right Behind you
## 1215 ToucheAdrian
## 1216 ToucheAdrian
## 1217 ToucheAdrian
## 1218 patte151 Lansing, MI
## 1219 hopeuno
## 1220 Messi1909Messi
## 1221 Messi1909Messi
## 1222 AbuAmaanah London Town
## 1223 Garys_Goldfish1
## 1224 GetOnMyBroom Earth
## 1225 karaousel floating in between
## 1226 karaousel floating in between
## 1227 clickclick23 Cheltenham, England
## 1228 clickclick23 Cheltenham, England
## 1229 DeelightRI world wide
## 1230 DeelightRI world wide
## 1231 DeelightRI world wide
## 1232 DeelightRI world wide
## 1233 DeelightRI world wide
## 1234 WillAdamslsd UK/USA
## 1235 Britney12Jones
## 1236 Kate21986098
## 1237 Kate21986098
## 1238 ShawnWe75633259
## 1239 tweetingbrit Los Angeles + Coachella Valley
## 1240 tweetingbrit Los Angeles + Coachella Valley
## 1241 orangeponytom Wisconsin SE NYC Times Square
## 1242 orangeponytom Wisconsin SE NYC Times Square
## 1243 hobodreamer Michigan, USA
## 1244 hobodreamer Michigan, USA
## 1245 SkProMasker
## 1246 atl5120 Somewhere
## 1247 midwestmadreof2 United States
## 1248 NathanaelParke8
## 1249 Monctonsnowman Moncton, NB, CA
## 1250 MarlonMillner Evanston, IL
## 1251 viesvies1 Peterborough, England
## 1252 viesvies1 Peterborough, England
## 1253 viesvies1 Peterborough, England
## 1254 viesvies1 Peterborough, England
38
## 1255 lisapodcasts Jenâ\200\231s Laundry
## 1256 DrBethanneMoore Maryland
## 1257 patsy2251 Glasgow
## 1258 12NeeNee California, USA
## 1259 ListenerEvent
## 1260 ListenerEvent
## 1261 ListenerEvent
## 1262 Lyndablooms all over the web
## 1263 Lyndablooms all over the web
## 1264 Lyndablooms all over the web
## 1265 MoRaY1959 In the Middle of Nowhere
## 1266 SimoneNikkole Brooklyn, NY
## 1267 LeosCalvinJames
## 1268 SimonsAdviser London
## 1269 Queenie_2312 Birmingham/Manchester
## 1270 GondaiMutongi
## 1271 SunRoe S U N R O E HQ
## 1272 Tinamaria66 fort myers florida
## 1273 Tinamaria66 fort myers florida
## 1274 Tinamaria66 fort myers florida
## 1275 BombayS79124523
## 1276 Katareya2006 South East Asia
## 1277 DBrown99944
## 1278 meine__schatz
## 1279 meine__schatz
## 1280 meine__schatz
## 1281 MaDing6791
## 1282 __zainabb
## 1283 Bob_INFJ New Hampshire, USA
## 1284 Bob_INFJ New Hampshire, USA
## 1285 Bob_INFJ New Hampshire, USA
## 1286 AprilTroka Seattle, WA
## 1287 jaidenofficial United Kingdom
## 1288 colbaltsparkle North Yorkshire
## 1289 colbaltsparkle North Yorkshire
## 1290 DAYLEE Lower Mainland, BC , Canada
## 1291 Aisling_Pash
## 1292 MrsMilling1021 NC
## 1293 brijh Outspoken â\231Ž in MN!
## 1294 brijh Outspoken â\231Ž in MN!
## 1295 brijh Outspoken â\231Ž in MN!
## 1296 brijh Outspoken â\231Ž in MN!
## 1297 brijh Outspoken â\231Ž in MN!
## 1298 brijh Outspoken â\231Ž in MN!
## 1299 gkgguy
## 1300 gkgguy
## 1301 AmericaninLisbn Lisbon, Portugal
## 1302 JODIE60308187 Uganda
## 1303 siamsid99
## 1304 iwmbuzz Mumbai, India
## 1305 jonathon2021
## 1306 jonathon2021
## 1307 garethowenshaw Penarth, Wales
## 1308 MrJames007619 London
39
## 1309 FanHouzz
## 1310 multioptioned Australia
## 1311 TeeBern 👶ðŸ\217½DC🚶ðŸ\217½â\200\215â\231\200ï¸\217NJ💃ðŸ\217½MD
## 1312 theaaroncruze Los Angeles, CA
## 1313 CindyInChicago Chicago, IL
## 1314 CindyInChicago Chicago, IL
## 1315 MoanMovie United Kingdom
## 1316 gbowojo
## 1317 wilkim1971 South Australia, Australia
## 1318 wilkim1971 South Australia, Australia
## 1319 wilkim1971 South Australia, Australia
## 1320 LordBowesLyon England, United Kingdom
## 1321 LordBowesLyon England, United Kingdom
## 1322 LordBowesLyon England, United Kingdom
## 1323 LisaFranceCNN Inside my head
## 1324 FooeyFromPerth Perth, Western Australia
## 1325 kathrynhorsman
## 1326 chris_smi7h Thirsk, England
## 1327 MerlivnaMonroe
## 1328 amandajamrock Iâ\230\200n Miami body in Jamaica âœ\210ï¸\217
## 1329 DeForis66 London, England
## 1330 DeForis66 London, England
## 1331 JenFullick England, United Kingdom
## 1332 themeganemanuel Vancouver, British Columbia
## 1333 Garys_Goldfish1
## 1334 DearDana3 Atlanta, Ga.
## 1335 DearDana3 Atlanta, Ga.
## 1336 KingKolawole London, England
## 1337 ryan_ha Los Angeles, CA
## 1338 ryan_ha Los Angeles, CA
## 1339 safuleradag
## 1340 Monylove786 Sunny
## 1341 DavidGudjonsson
## 1342 pjkatiee The Entry ðŸ‘\200
## 1343 barkholzatAN Nashville, TN
## 1344 thepopcornreel California
## 1345 thepopcornreel California
## 1346 RCitaat
## 1347 rec777777 South West, England
## 1348 rec777777 South West, England
## 1349 rec777777 South West, England
## 1350 rec777777 South West, England
## 1351 rec777777 South West, England
## 1352 rec777777 South West, England
## 1353 valhalla_
## 1354 valhalla_
## 1355 mrjustsaying Manhattan, NY
## 1356 RootWeird Northern Ireland, United Kingd
## 1357 JohnSha98338960 White Cliffs Country
## 1358 MartinWilliam95 Georgia
## 1359 multioptioned Australia
## 1360 MizzBronze Twitter
## 1361 TheTrut87905708
## 1362 EricRobinson00 Denver, Colorado, USA
40
## 1363 DiabeticCyborgg Longview, TX
## 1364 rkbnow mumbai
## 1365 SummerRhapsody UK 🇪🇺
## 1366 SummerRhapsody UK 🇪🇺
## 1367 PearlaJam1
## 1368 PearlaJam1
## 1369 PearlaJam1
## 1370 Camkansh United States
## 1371 Guardian_Elite Southern California
## 1372 UnSpokenTruthz DMV
## 1373 bruce_southside Yorkshire and North Coast
## 1374 bruce_southside Yorkshire and North Coast
## 1375 bruce_southside Yorkshire and North Coast
## 1376 bruce_southside Yorkshire and North Coast
## 1377 bruce_southside Yorkshire and North Coast
## 1378 bruce_southside Yorkshire and North Coast
## 1379 bruce_southside Yorkshire and North Coast
## 1380 theskibeagle London & Ireland
## 1381 IsleOfSceptre
## 1382 IsleOfSceptre
## 1383 Anti_monarchyuk London, England
## 1384 Suezeta Lafayette, LA
## 1385 Suezeta Lafayette, LA
## 1386 _leftisbest
## 1387 ramirern
## 1388 ramirern
## 1389 emmyoffor10
## 1390 Marghan8
## 1391 Marghan8
## 1392 mimileley
## 1393 mimileley
## 1394 mimileley
## 1395 AkioMaroon Toronto
## 1396 Dana35323002
## 1397 Dana35323002
## 1398 GomezJames Orange, CA
## 1399 Shirleygailgal
## 1400 Shirleygailgal
## 1401 Shirleygailgal
## 1402 Shirleygailgal
## 1403 Shirleygailgal
## 1404 Shirleygailgal
## 1405 nmorgasenradio
## 1406 nmorgasenradio
## 1407 ashozon
## 1408 NVGhost005 Polis
## 1409 dakleef74 still ravin in the 90s
## 1410 ToucheAdrian
## 1411 ToucheAdrian
## 1412 kachirilady
## 1413 Filibuster2020 United States
## 1414 Filibuster2020 United States
## 1415 Filibuster2020 United States
## 1416 PopArtNJ
41
## 1417 NeverGonnaWoke Boston, MA
## 1418 Aaron8Terry
## 1419 Aaron8Terry
## 1420 Aaron8Terry
## 1421 Aaron8Terry
## 1422 Aaron8Terry
## 1423 Sallyjames40 London, England
## 1424 ItaliaMiranda Italy. Monaco. Tahiti. Texas.
## 1425 LGM777 Cleveland, Ohio
## 1426 elegantcartoons All Continents excl Antarctica
## 1427 martha_muchira somewhere in Africa ðŸ\230Ž
## 1428 sunnydestiny22 United States
## 1429 sunnydestiny22 United States
## 1430 sunnydestiny22 United States
## 1431 sunnydestiny22 United States
## 1432 officialjoelo_
## 1433 MonicaKaye Colorado
## 1434 BombayS79124523
## 1435 MsJoLevine Somewhere in the UK
## 1436 IanJamesSeale Albion
## 1437 pattietierney
## 1438 pattietierney
## 1439 ULiveInMyWorld In Your head & heart
## 1440 ULiveInMyWorld In Your head & heart
## 1441 ULiveInMyWorld In Your head & heart
## 1442 planetsquirrely migrated to planet earth
## 1443 IsleOfSceptre
## 1444 Yuki43907367
## 1445 Yuki43907367
## 1446 BritishWhiteG London, England
## 1447 Robin824 Manhattan, NY
## 1448 mickylaharrison Saarf London
## 1449 valhalla_
## 1450 valhalla_
## 1451 NotSoIntel Houston, TX
## 1452 TheTruthHurtsS4
## 1453 jenrelyspeaking Winchester ↔ London, UK
## 1454 SurprisedWhy
## 1455 SDZ9985 Dublin City, Ireland
## 1456 _GiftofGab_ New York
## 1457 horsesandhounds Celebration
## 1458 horsesandhounds Celebration
## 1459 ImposFairytale
## 1460 ImposFairytale
## 1461 ImposFairytale
## 1462 ThomasPercy1
## 1463 WalkingMuch United States
## 1464 sfwtrgirl
## 1465 gatitonic1968 Canada
## 1466 gatitonic1968 Canada
## 1467 gatitonic1968 Canada
## 1468 BPositive33
## 1469 BPositive33
## 1470 SPascoalLima England, United Kingdom
42
## 1471 SPascoalLima England, United Kingdom
## 1472 Phil_Neilsen London, England
## 1473 Phil_Neilsen London, England
## 1474 Phil_Neilsen London, England
## 1475 Socawkbutterfly
## 1476 Alt_Rogue_ United States
## 1477 Alt_Rogue_ United States
## 1478 Alt_Rogue_ United States
## 1479 Keedinah Texas, USA
## 1480 Keedinah Texas, USA
## 1481 pvalleypodcast Apple, Spotify...
## 1482 JillianaGibbs01 Davenport, IA
## 1483 bash_shabalala Durban,South Africa
## 1484 ahughesignite Glasgow
## 1485 FredericksMama
## 1486 angelneptustar North London
## 1487 EOkenesi London
## 1488 EOkenesi London
## 1489 EOkenesi London
## 1490 DanniLacuna Greater Vancouver
## 1491 FaranBalanced Washington, DC
## 1492 tweetingbrit Los Angeles + Coachella Valley
## 1493 caitlinmaryyyxo United Kingdom
## 1494 IsleOfSceptre
## 1495 iamdrjoycelyn ATL
## 1496 iamdrjoycelyn ATL
## 1497 reaper_not_grim
## 1498 FredGanza7 Earth
## 1499 davidmweissman Palm Bay, FL
## 1500 davidmweissman Palm Bay, FL
## 1501 davidmweissman Palm Bay, FL
## 1502 hopemaga California, USA
## 1503 hopemaga California, USA
## 1504 DerekSherratt
## 1505 DerekSherratt
## 1506 CanWeTalkOutLo1 universal
## 1507 BigSky3450
## 1508 SiphiweKingM Mpumalanga, KwaMhlanga .
## 1509 SiphiweKingM Mpumalanga, KwaMhlanga .
## 1510 ImmortalSingh2 Canada / India
## 1511 JAMgirl_Iva London
## 1512 JRD_FTW99 The Republic of England
## 1513 FameVixen Los Angeles, CA
## 1514 anastaciav Texas, USA
## 1515 JoyfulTempest1 9th DimensionðŸ\215\201ðŸ‡3🇬 🇫🇷 ðŸ\217´
## 1516 BukolaAdedeji6
## 1517 BukolaAdedeji6
## 1518 BukolaAdedeji6
## 1519 Gardeningismyl1 rural Canada
## 1520 LetianaL Campell, California
## 1521 LetianaL Campell, California
## 1522 Shi4ni World
## 1523 itsafronomics
## 1524 JaneTurner101 Northumberland
43
## 1525 AltheaAikens United States
## 1526 AltheaAikens United States
## 1527 meine__schatz
## 1528 WhiteHouse20200
## 1529 ueverwonderwhy United States
## 1530 chuterlzely
## 1531 Lgagafan Los Angeles, CA
## 1532 Phil_Neilsen London, England
## 1533 Phil_Neilsen London, England
## 1534 Phil_Neilsen London, England
## 1535 chykendubuisi
## 1536 chykendubuisi
## 1537 chykendubuisi
## 1538 CharlesKersey Florida
## 1539 dadapisconti Port Jefferson, NY
## 1540 Tambowreno Austin Texas
## 1541 TweettheSouth Louisiana, USA.
## 1542 mlnangalama Moncton, Canada
## 1543 andexter New York City
## 1544 happygreen78
## 1545 Allyson90376644 Trinidad and Tobago
## 1546 ormiga Paris old EU
## 1547 dj_dazzler Los Angeles, CA
## 1548 CarissaLawson NJ
## 1549 CarissaLawson NJ
## 1550 karamelkueen London
## 1551 willpowerentllc Brooklyn, NY
## 1552 Pedlar7 X
## 1553 Hhf1Trey
## 1554 Hhf1Trey
## 1555 meine__schatz
## 1556 meine__schatz
## 1557 meine__schatz
## 1558 meine__schatz
## 1559 kieranbarrow Warrington, England
## 1560 LogitheBear13
## 1561 LogitheBear13
## 1562 LogitheBear13
## 1563 LogitheBear13
## 1564 Lissmami D/FW Metroplex
## 1565 stylishstyletoo France
## 1566 kristinleland_ philly
## 1567 SteveintheKT
## 1568 MKleen3
## 1569 MKleen3
## 1570 B_MALOOF
## 1571 Tellitl66077922
## 1572 karinapassionx England, United Kingdom
## 1573 Fran_Neena20409 Minnesota, USA
## 1574 IndictPOTUS45 PRESIDENT Biden 🇺ðŸ‡2
## 1575 BlakeKM
## 1576 DougieGentles Cardiff Wales
## 1577 TheStephenRalph Ayr, ðŸ\217´ó \201§ó \201¢ó \2013ó \201£ó \201´ó \201¿ 🇬🇧
## 1578 TheStephenRalph Ayr, ðŸ\217´ó \201§ó \201¢ó \2013ó \201£ó \201´ó \201¿ 🇬🇧
44
## 1579 MsRiceBite
## 1580 MsRiceBite
## 1581 MsRiceBite
## 1582 MsRiceBite
## 1583 rec777777 South West, England
## 1584 rec777777 South West, England
## 1585 lanesborough77 Dorset, UK
## 1586 lanesborough77 Dorset, UK
## 1587 lanesborough77 Dorset, UK
## 1588 lanesborough77 Dorset, UK
## 1589 MartMcQ1
## 1590 MartMcQ1
## 1591 MarkFoxNews United Kingdom 🇬🇧
## 1592 MAjourno
## 1593 Fzeroone2 Lockdown will last for months
## 1594 ZeldaVegas
## 1595 WhiteHouse20200
## 1596 Restoredignity5 United Kingdom
## 1597 Sydd_93 Birmingham, England
## 1598 Sydd_93 Birmingham, England
## 1599 CampoTerry Washington, D.C. & Illinois
## 1600 CampoTerry Washington, D.C. & Illinois
## 1601 TV_NEWS_24h
## 1602 QueenlySOM Quarantine, CA
## 1603 AKansan63 London, England
## 1604 mansikoul Jammu & Kashmir | Gurgaon
## 1605 JimmyPlankRoad San Diego, CA
## 1606 davidihales Melbourne.
## 1607 davidihales Melbourne.
## 1608 GalGeelong Victoria Australia
## 1609 GalGeelong Victoria Australia
## 1610 AmerClothingCo Orlando, FL
## 1611 IAmSophiaNelson Commonwealth of Virginia
## 1612 ShelettaIsFunny Cottage Grove, MN
## 1613 JoaquinCM
## 1614 1mikeraffone United States
## 1615 AltCalifornian Citizen of the World 🌎
## 1616 AltCalifornian Citizen of the World 🌎
## 1617 AltCalifornian Citizen of the World 🌎
## 1618 fussyMcWhiskers
## 1619 ChakaZulu25
## 1620 ChakaZulu25
## 1621 Marvcovi Worldwide
## 1622 culinaryphysics Singapore
## 1623 SattyJandu
## 1624 ShortyLuv114
## 1625 incachef_peru Aqui
## 1626 TIM_BITICI West Village, Manhattan
## 1627 RepublicDeleted DMV
## 1628 rev_ellis Texas, USA
## 1629 bananna_and Essex United Kingdom
## 1630 bananna_and Essex United Kingdom
## 1631 DrakeRodriguez Little Rock, AR
## 1632 JG35580758
45
## 1633 JG35580758
## 1634 ionlyknowbravo
## 1635 maxima1967
## 1636 teamokb parts unknown
## 1637 teamokb parts unknown
## 1638 JenFullick England, United Kingdom
## 1639 wanda2f New Haven, CT
## 1640 Gemma722Smoking no ’’o’’ on keyboard apologies
## 1641 Gemma722Smoking no ’’o’’ on keyboard apologies
## 1642 Gemma722Smoking no ’’o’’ on keyboard apologies
## 1643 Gemma722Smoking no ’’o’’ on keyboard apologies
## 1644 betrueplease
## 1645 ThemysciranJZ London
## 1646 ScandalousBlog
## 1647 toniaiisley Atlanta, GA
## 1648 highbrowthought Exeter, Devon (UK)
## 1649 bit_alexis
## 1650 Democracy_Spot America! 🇺🇸
## 1651 TJinTN34_X2 Tennessee, USA
## 1652 abgweth
## 1653 abgweth
## 1654 abgweth
## 1655 abgweth
## 1656 tomasocarthaigh Galway, Ballinamuck, Banagher
## 1657 tomasocarthaigh Galway, Ballinamuck, Banagher
## 1658 Jeff_Moosekian
## 1659 Guardian_Elite Southern California
## 1660 nigrugthug
## 1661 nigrugthug
## 1662 nigrugthug
## 1663 nigrugthug
## 1664 nigrugthug
## 1665 Maximuss9999 New York, USA
## 1666 realmanorhill East Coast USA
## 1667 bandit12blue Chester F.C
## 1668 Haitiana4Obama AmeriKKKa
## 1669 Angie_RejoinEU UK + USA / Global
## 1670 Angie_RejoinEU UK + USA / Global
## 1671 IAMLISARAIE
## 1672 IAMLISARAIE
## 1673 IAMLISARAIE
## 1674 IAMLISARAIE
## 1675 LizYoun55179126
## 1676 LizYoun55179126
## 1677 LizYoun55179126
## 1678 thehustlingmom
## 1679 thehustlingmom
## 1680 OttagoniaAgain HOC Basement
## 1681 IAmSophiaNelson Commonwealth of Virginia
## 1682 BorisJustLies 10 Downing Street
## 1683 BorisJustLies 10 Downing Street
## 1684 hillww1
## 1685 McjiltonTony Uranus
## 1686 beckasaurous
46
## 1687 OfficialCwhite New York
## 1688 OfficialCwhite New York
## 1689 BernardineEvari London, England
## 1690 Amy_Jayee Mississippi, USA
## 1691 drudc77 Washington, DC
## 1692 KatLeenaCdn Edmonton, Alberta
## 1693 TeeBern 👶ðŸ\217½DC🚶ðŸ\217½â\200\215â\231\200ï¸\217NJ💃ðŸ\217½MD
## 1694 jag_sgt South East, USA
## 1695 AltheaAikens United States
## 1696 anniechristine3 Minneapolis, MN
## 1697 BomaAkainy Washington,DC
## 1698 ExactlyGolden
## 1699 ExactlyGolden
## 1700 dannyLwalker Bristol, United Kingdom
## 1701 MaryMRobin London, England.
## 1702 kathlovestennis Brooklyn Heights, NY
## 1703 SCorby21 Ireland
## 1704 drudc77 Washington, DC
## 1705 lisakayemundy Unmasked, CA
## 1706 ntl_angie USA
## 1707 WillAdamslsd UK/USA
## 1708 schittsblog
## 1709 RobbieLabour West St Crewe
## 1710 elegantcartoons All Continents excl Antarctica
## 1711 PbjPius
## 1712 PbjPius
## 1713 LifeByChristy California, USA
## 1714 LifeByChristy California, USA
## 1715 LifeByChristy California, USA
## 1716 LifeByChristy California, USA
## 1717 PrettyCrownLife Changing the world
## 1718 SimoneMSamuels Toronto, Ontario
## 1719 renee11110
## 1720 1mikeraffone United States
## 1721 mixmastermo New York, NY
## 1722 Quicklitning Toronto & Haliburton Canada Hollywood Fl
## 1723 Quicklitning Toronto & Haliburton Canada Hollywood Fl
## 1724 jessicakonijnx Abroad
## 1725 jessicakonijnx Abroad
## 1726 TheTrut87905708
## 1727 sawrubthegreat Los Angeles, CA
## 1728 sawrubthegreat Los Angeles, CA
## 1729 becurtwithit West Hollywood, CA
## 1730 WWorbts San Bartolomé de Tirajana, Esp
## 1731 ontmomfinance Toronto, Ontario
## 1732 ontmomfinance Toronto, Ontario
## 1733 ontmomfinance Toronto, Ontario
## 1734 ontmomfinance Toronto, Ontario
## 1735 SwaptySports ðŸŒ\215ðŸ\217\210ðŸ\217\200⚾🛫 Arena Hotel Airport
## 1736 workingmum22 Alcatraz, Little England
## 1737 lisakayemundy Unmasked, CA
## 1738 FairhallSa
## 1739 FairhallSa
## 1740 ChanzandSussex
47
## 1741 DuchessJRM Hong Kong Sydney London
## 1742 DuchessJRM Hong Kong Sydney London
## 1743 RoyallyPetite United Kingdom
## 1744 NannyDeb79
## 1745 NannyDeb79
## 1746 NannyDeb79
## 1747 NannyDeb79
## 1748 NannyDeb79
## 1749 NannyDeb79
## 1750 NannyDeb79
## 1751 NannyDeb79
## 1752 Del_Salvador_AU Australia
## 1753 eyesonfoxorg On the dark side of the moon.
## 1754 eyesonfoxorg On the dark side of the moon.
## 1755 eyesonfoxorg On the dark side of the moon.
## 1756 eyesonfoxorg On the dark side of the moon.
## 1757 teachertwit2 World
## 1758 teachertwit2 World
## 1759 OG_ValleyGirlCA Here & There
## 1760 OG_ValleyGirlCA Here & There
## 1761 jonathanwildman London
## 1762 SarcasmicGuru New Delhi, India
## 1763 NNichols_TX United States
## 1764 scorpionov
## 1765 scorpionov
## 1766 JamesL58
## 1767 JamesL58
## 1768 MarkGarrison1 Sydney, Australia
## 1769 MarkGarrison1 Sydney, Australia
## 1770 BorisJustLies 10 Downing Street
## 1771 americankat62 Earth
## 1772 KeshaRam Vermont, USA
## 1773 nicaton123
## 1774 nicaton123
## 1775 CJoneses100
## 1776 CJoneses100
## 1777 CJoneses100
## 1778 CJoneses100
## 1779 meltyface64 Cleveland, OH
## 1780 meltyface64 Cleveland, OH
## 1781 kimdevitt Florida, USA
## 1782 Tipsforlife7
## 1783 Stodgie UK
## 1784 ZeliaLH Tokyo, Japan
## 1785 normacrooz Lagos
## 1786 RicessPieces15
## 1787 TheTrut87905708
## 1788 TheTrut87905708
## 1789 TheTrut87905708
## 1790 TheTrut87905708
## 1791 MullerDonUK
## 1792 MullerDonUK
## 1793 multioptioned Australia
## 1794 multioptioned Australia
48
## 1795 GalWithAVoice United States
## 1796 TobyBourke Ireland
## 1797 TobyBourke Ireland
## 1798 Tracie93315429
## 1799 SunjayJK Gurgaon ðŸŒ\215 ðŸŒ\217 🌎 world
## 1800 SunjayJK Gurgaon ðŸŒ\215 ðŸŒ\217 🌎 world
## 1801 MicahXxl GLOBAL
## 1802 Rossy_AJ Preston & Leeds
## 1803 Eegrayne UK
## 1804 Eegrayne UK
## 1805 J8Aleks Australia
## 1806 abgweth
## 1807 TiraKelkerMason USA
## 1808 markapostolou2
## 1809 JustMeBeingMe4 Manchester, England
## 1810 JustMeBeingMe4 Manchester, England
## 1811 LadyB_Cynthia in the a/c
## 1812 LadyB_Cynthia in the a/c
## 1813 Lady_Bates1967
## 1814 IndyCyn
## 1815 aleisha_71 Australia
## 1816 MaPants
## 1817 DonnaFEdwards Somewhere in the world
## 1818 JRD_FTW99 The Republic of England
## 1819 JRD_FTW99 The Republic of England
## 1820 JRD_FTW99 The Republic of England
## 1821 JRD_FTW99 The Republic of England
## 1822 PatExPatri Firangistan, OxBridge
## 1823 PatExPatri Firangistan, OxBridge
## 1824 PatExPatri Firangistan, OxBridge
## 1825 PatExPatri Firangistan, OxBridge
## 1826 kristine_kenyon SoCal
## 1827 LadyZales Upstate NY
## 1828 WOOKIE318 East Hampton, CT
## 1829 WOOKIE318 East Hampton, CT
## 1830 ClaireWinslade sheffield
## 1831 ClaireWinslade sheffield
## 1832 sky_dvr Somewhere free falling...
## 1833 IsleOfSceptre
## 1834 IsleOfSceptre
## 1835 IsleOfSceptre
## 1836 IsleOfSceptre
## 1837 peachespumpkin2 Baltimore, MD
## 1838 peachespumpkin2 Baltimore, MD
## 1839 neha__lakhmani
## 1840 MissPaulaGreen SOUTH EAST LONDON - SE2
## 1841 Drjot London, W Africa, USA & Canada
## 1842 Drjot London, W Africa, USA & Canada
## 1843 tilchatta_bois गà¥\201à¤2ाबà¥\200 नगरà¥\200
## 1844 BusayoAwe1
## 1845 iFancyATopic
## 1846 iFancyATopic
## 1847 TNBrunson Atlanta, GA
## 1848 GirlTema
49
## 1849 GirlTema
## 1850 GirlTema
## 1851 GirlTema
## 1852 GirlTema
## 1853 GirlTema
## 1854 GirlTema
## 1855 GirlTema
## 1856 Wellofthoughts
## 1857 Wellofthoughts
## 1858 KickBrainTumors NC #BrainTumorThursday #BTSM ðŸ§
## 1859 HHamaschiach
## 1860 HHamaschiach
## 1861 yumchamama Central Region, Singapore
## 1862 Blake_RESISTS North Carolina, USA
## 1863 royal_suitor
## 1864 royal_suitor
## 1865 clampdownonhate Racism Must Be Eliminated
## 1866 GYsunpacking
## 1867 meine__schatz
## 1868 meine__schatz
## 1869 drudc77 Washington, DC
## 1870 drudc77 Washington, DC
## 1871 cewuzie_ Manchester, UK
## 1872 emmah_emmahmac Zimbabwe
## 1873 colbaltsparkle North Yorkshire
## 1874 colbaltsparkle North Yorkshire
## 1875 colbaltsparkle North Yorkshire
## 1876 colbaltsparkle North Yorkshire
## 1877 elnlondon London
## 1878 Beth81450411
## 1879 scorpionov
## 1880 Kingbhav17 Coventry, England
## 1881 colbaltsparkle North Yorkshire
## 1882 KDavisGayFriend A swing state near you.
## 1883 mom_opinionated Planet Earth
## 1884 EbonyJHilton_MD Charlottesville, VA
## 1885 EbonyJHilton_MD Charlottesville, VA
## 1886 TocquevilleJnr North London
## 1887 katiekgreen Sacramento, CA
## 1888 Namaste_40 Where ever I need to be!
## 1889 12_lyonesse England, United Kingdom
## 1890 CBetts08
## 1891 yoneka64
## 1892 EWWBD Minnesota, USA
## 1893 sallydipple Mirepoix France
## 1894 lolo_ego
## 1895 DaisyFurball1 Wessex via Danelaw
## 1896 DaisyFurball1 Wessex via Danelaw
## 1897 WillemHechter Johannesburg, South Africa
## 1898 ESA_CelebNews South Africa
## 1899 CruzanBlue
## 1900 Mimmle London
## 1901 AltheaAikens United States
## 1902 AltheaAikens United States
50
## 1903 AllyMakan Everywhere
## 1904 LordHthegreatH1 nice place on Earth
## 1905 LordHthegreatH1 nice place on Earth
## 1906 WillAdamslsd UK/USA
## 1907 PrivateParts16 Lincoln, UK
## 1908 juliuslumsden1 California & United Kingdom
## 1909 247NNU Nigeria
## 1910 247NNU Nigeria
## 1911 Tinsel38211159 In the Land of Mordor
## 1912 RachelCBoyle1
## 1913 RachelCBoyle1
## 1914 PochoSalcedo New York U.S.
## 1915 PochoSalcedo New York U.S.
## 1916 IanJamesSeale Albion
## 1917 IanJamesSeale Albion
## 1918 1966Dear London, UK
## 1919 1966Dear London, UK
## 1920 lizmartinlabour London, England
## 1921 DhartiKaRakshk
## 1922 WhiteHouse20200
## 1923 maisiethetortie London
## 1924 PrufrockSays
## 1925 martinmullen78 Glasgow
## 1926 Ecryptonike
## 1927 Ecryptonike
## 1928 ToucheAdrian
## 1929 Sara520S London
## 1930 Sara520S London
## 1931 zafarwestern Karachi
## 1932 labour_buzz London
## 1933 lydyx3 Birmingham
## 1934 lydyx3 Birmingham
## 1935 Mickorua1 London
## 1936 FredericksMama
## 1937 alexis_e_barton Online, on tv and in print
## 1938 alexis_e_barton Online, on tv and in print
## 1939 DrKishanRees London
## 1940 DrKishanRees London
## 1941 colbaltsparkle North Yorkshire
## 1942 meine__schatz
## 1943 meine__schatz
## 1944 meine__schatz
## 1945 kachirilady
## 1946 CatChatter25 U.S.A.
## 1947 echoesofisrael Utopia/Tranquility to thy soul
## 1948 1moocat
## 1949 randomreallife Salt Lake City, UT
## 1950 randomreallife Salt Lake City, UT
## 1951 randomreallife Salt Lake City, UT
## 1952 randomreallife Salt Lake City, UT
## 1953 EddyC4444 Nederland
## 1954 EddyC4444 Nederland
## 1955 Dnyan_murtyy
## 1956 SArmanie Manchester, England
51
## 1957 SArmanie Manchester, England
## 1958 cortessirene12 Spain Europe
## 1959 cortessirene12 Spain Europe
## 1960 PowerrGame London
## 1961 LGM777 Cleveland, Ohio
## 1962 ontmomfinance Toronto, Ontario
## 1963 kamp_du The Kingdom
## 1964 Taylor04M
## 1965 17DISH
## 1966 17DISH
## 1967 zikaay Essex, LND
## 1968 zikaay Essex, LND
## 1969 JohannaWhite
## 1970 JohannaWhite
## 1971 diamondzinher
## 1972 diamondzinher
## 1973 angelneptustar North London
## 1974 angelneptustar North London
## 1975 angelneptustar North London
## 1976 angelneptustar North London
## 1977 angelneptustar North London
## 1978 tanner_sj Toronto, Ontario
## 1979 chelsmerch Clifton, VA
## 1980 claireb48939860
## 1981 claireb48939860
## 1982 claireb48939860
## 1983 wakeprayslay72
## 1984 TerryToll Canada
## 1985 kachirilady
## 1986 conn0rstrange yeh
## 1987 Fran_Neena20409 Minnesota, USA
## 1988 time4chirping Boston, MA
## 1989 JohannaWhite
## 1990 JohannaWhite
## 1991 kstate_fan
## 1992 midnightsun91 Worldwide
## 1993 mid_zan
## 1994 mid_zan
## 1995 siobhanduck Melbourne, Victoria
## 1996 RoyFPBentley Salisbury, NC
## 1997 Henimina1
## 1998 Henimina1
## 1999 DavidUlster statelet @forgottenpeople
## 2000 DavidUlster statelet @forgottenpeople
## 2001 DavidUlster statelet @forgottenpeople
## 2002 DavidUlster statelet @forgottenpeople
## 2003 DavidUlster statelet @forgottenpeople
## 2004 Stephan83593391 Manchester, England
## 2005 shak_ja Georgia, USA
## 2006 shak_ja Georgia, USA
## 2007 WhiteHouse20200
## 2008 _Panama_Red Waikiki, O’ahu, Hawai’i
## 2009 AltCalifornian Citizen of the World 🌎
## 2010 piola100 Neverland
52
## 2011 piola100 Neverland
## 2012 jrzeegrl66
## 2013 TheDoseTweets Keeping it real
## 2014 TheDoseTweets Keeping it real
## 2015 TheDoseTweets Keeping it real
## 2016 KINGstonChic80
## 2017 BusayoAwe1
## 2018 pjkatiee The Entry ðŸ‘\200
## 2019 BigC_Contrarian UK
## 2020 ShanxPennywise Wales, United Kingdom
## 2021 Standing_Fox
## 2022 OscarB20
## 2023 KarinaSliwinski rape survivor, Australia
## 2024 DrJamesDManning ATLAH, New York
## 2025 VZabbal
## 2026 ChrisSlevin
## 2027 EmiUNC
## 2028 EmiUNC
## 2029 Tracie93315429
## 2030 Ruheimmer
## 2031 WhoSaidWhatOMG United States/ United Kingdom
## 2032 AntiRacismDay Britain
## 2033 AntiRacismDay Britain
## 2034 JenFullick England, United Kingdom
## 2035 Nexus8Replicant uk
## 2036 GujjuMafia Chand Pe Hai Apun
## 2037 GujjuMafia Chand Pe Hai Apun
## 2038 BPositive33
## 2039 BPositive33
## 2040 CatherineJolly
## 2041 CatherineJolly
## 2042 CatherineJolly
## 2043 lisalouboo kettering
## 2044 lisalouboo kettering
## 2045 nehpazojArchieH
## 2046 nehpazojArchieH
## 2047 nehpazojArchieH
## 2048 quiltamish North Druid Hills, GA
## 2049 ToucheAdrian
## 2050 ThatshowGM New York, NY
## 2051 ThatshowGM New York, NY
## 2052 VeraGoodHealth1
## 2053 strikeforcekid
## 2054 ilLondinese
## 2055 softballfreakz Lake Charles, LA
## 2056 Esmerel44191850 South Africa
## 2057 Esmerel44191850 South Africa
## 2058 Esmerel44191850 South Africa
## 2059 Esmerel44191850 South Africa
## 2060 JDEadonWriter England
## 2061 julieklewis1
## 2062 A4Dent Walsall, England
## 2063 BrianGPowell #9ll=#NWO #Nuclear #FalseFlag!
## 2064 besthealthyou Planet Earth
53
## 2065 MonnyLove4 Utopia
## 2066 mrsverypicky Glasgow environs.
## 2067 mrsverypicky Glasgow environs.
## 2068 DrRamblings Dreaming of the Beach.
## 2069 realJobiTeague Miami/DC/Phoenix
## 2070 jamesak47 London
## 2071 jamesak47 London
## 2072 jamesak47 London
## 2073 jamesak47 London
## 2074 jamesak47 London
## 2075 knudsen_norma
## 2076 tanya_fitch Australia
## 2077 tanya_fitch Australia
## 2078 brijh Outspoken â\231Ž in MN!
## 2079 brijh Outspoken â\231Ž in MN!
## 2080 brijh Outspoken â\231Ž in MN!
## 2081 brijh Outspoken â\231Ž in MN!
## 2082 brijh Outspoken â\231Ž in MN!
## 2083 pariscummings9
## 2084 pariscummings9
## 2085 bruthamarc Rochester/Atlanta/Dallas
## 2086 MKUltraLegend London, England
## 2087 OfficalJoshuaT
## 2088 RoyallyPetite United Kingdom
## 2089 BlackLesbians United States
## 2090 Mary_Mullarkey_ Chicago, IL, USA
## 2091 Mary_Mullarkey_ Chicago, IL, USA
## 2092 Mary_Mullarkey_ Chicago, IL, USA
## 2093 MohamoudGaildon Peoria, IL, USA
## 2094 blueblood_2
## 2095 WillAdamslsd UK/USA
## 2096 ronnabr United States
## 2097 ronnabr United States
## 2098 Zoe83304002 Arlington, VA
## 2099 C_Moni
## 2100 C_Moni
## 2101 pcgonenuts South East, England, UK
## 2102 pcgonenuts South East, England, UK
## 2103 BeUnmuted
## 2104 miraclesharda_ Houston, TX
## 2105 laurazam Washington, DC
## 2106 nowayozey
## 2107 PeterBa82304711 Reading, UK
## 2108 PeterBa82304711 Reading, UK
## 2109 BlackAgitator Persevering
## 2110 BlackAgitator Persevering
## 2111 pickingquarrels most EXISTENTIAL place
## 2112 pickingquarrels most EXISTENTIAL place
## 2113 MichaelTodd3 Lambeau South, Wisconsin
## 2114 NannyDeb79
## 2115 NannyDeb79
## 2116 NannyDeb79
## 2117 NannyDeb79
## 2118 NannyDeb79
54
## 2119 NannyDeb79
## 2120 NannyDeb79
## 2121 NannyDeb79
## 2122 Dangerangel Right here, right now
## 2123 DemocracyWon20 Parkland, FL
## 2124 Amy_Jayee Mississippi, USA
## 2125 Amy_Jayee Mississippi, USA
## 2126 Amy_Jayee Mississippi, USA
## 2127 Luapsevaerg North West, England
## 2128 AltheaAikens United States
## 2129 tomvamos Winchester, GB
## 2130 kaurdinate Vancouver, British Columbia
## 2131 FinFox2 South & North Seasonally
## 2132 WhiteHouse20200
## 2133 FredGanza7 Earth
## 2134 FredGanza7 Earth
## 2135 Scott1984FP Bedford, Bedfordshire, Uk,
## 2136 Scott1984FP Bedford, Bedfordshire, Uk,
## 2137 Scott1984FP Bedford, Bedfordshire, Uk,
## 2138 nonotousky United States
## 2139 nonotousky United States
## 2140 JBW_____
## 2141 YsanneBueno Wherever the Pepper Sauce Is
## 2142 AlphonsoVM Abidjan, Cote d’Ivoire
## 2143 AlphonsoVM Abidjan, Cote d’Ivoire
## 2144 AlphonsoVM Abidjan, Cote d’Ivoire
## 2145 AlphonsoVM Abidjan, Cote d’Ivoire
## 2146 LeftBlazkowicz
## 2147 MrBaileyyy
## 2148 mikingram123 Manchester/UK
## 2149 mikingram123 Manchester/UK
## 2150 angelneptustar North London
## 2151 MeghansMeyhive
## 2152 ClaudiaGeorgios Kralingen, Rotterdam NL ðŸ‡3🇱
## 2153 TraceyNew California dreamin’
## 2154 drudc77 Washington, DC
## 2155 royal_suitor
## 2156 BEVMO1969
## 2157 AzaleaCannie
## 2158 AzaleaCannie
## 2159 Andy_J_Crawford WestWorld,SatyriConnecticutUSA
## 2160 Andy_J_Crawford WestWorld,SatyriConnecticutUSA
## 2161 iHeartSolutions Iowa
## 2162 Peters4Life San Francisco
## 2163 Peters4Life San Francisco
## 2164 KMTV_Kent Kent
## 2165 WhatIsSheThink1 New York, NY
## 2166 gayshaph Philippines🇵🇠USA 🇺🇸
## 2167 ravetvchannel Lagos, Nigeria
## 2168 Namaste_40 Where ever I need to be!
## 2169 GirlWhyPodcast
## 2170 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 2171 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 2172 teracotachannel Québec, Canada
55
## 2173 teracotachannel Québec, Canada
## 2174 teracotachannel Québec, Canada
## 2175 _LOVEINVAIN
## 2176 _LOVEINVAIN
## 2177 _LOVEINVAIN
## 2178 kwinews1
## 2179 momo_noona_ot7 Little Rock, AR
## 2180 imtall15 Houston, Texas
## 2181 imtall15 Houston, Texas
## 2182 CharlesKersey Florida
## 2183 DrKynast Milky way, I can see aliens !
## 2184 Drjot London, W Africa, USA & Canada
## 2185 Celebrityfame1 World
## 2186 Celebrityfame1 World
## 2187 Celebrityfame1 World
## 2188 Celebrityfame1 World
## 2189 AmyShaubMaddox Ch
## 2190 LouisWalshXFact
## 2191 LouisWalshXFact
## 2192 WhiteHouse20200
## 2193 Jpjm1964 Huddersfield, England
## 2194 C_Wonder Colorado, USA
## 2195 FredGanza7 Earth
## 2196 FredGanza7 Earth
## 2197 FredGanza7 Earth
## 2198 Cakrice
## 2199 Chunmon ÃœT: 39.434969,-76.37142
## 2200 Chunmon ÃœT: 39.434969,-76.37142
## 2201 mmmHobart Hobart, Tasmania.
## 2202 mmmHobart Hobart, Tasmania.
## 2203 BBCEmilyUnia
## 2204 thecomforter_1 Nebraska .
## 2205 Obamican USA
## 2206 DhartiKaRakshk
## 2207 AbundantLife88
## 2208 AbundantLife88
## 2209 Tracie93315429
## 2210 StateofGrace_90
## 2211 happybunnybee
## 2212 aleisha_71 Australia
## 2213 KydessShabazz 🇬🇩🇨🇦
## 2214 LGM777 Cleveland, Ohio
## 2215 LGM777 Cleveland, Ohio
## 2216 LGM777 Cleveland, Ohio
## 2217 LGM777 Cleveland, Ohio
## 2218 eralpatky United States
## 2219 27dogdays
## 2220 OWNTVFans USA
## 2221 claireb48939860
## 2222 claireb48939860
## 2223 Chanchie19 Global Citizen
## 2224 Chanchie19 Global Citizen
## 2225 Chanchie19 Global Citizen
## 2226 _GiftofGab_ New York
56
## 2227 Koimoi Bombay
## 2228 touremanju
## 2229 NayelySpring910
## 2230 Drjot London, W Africa, USA & Canada
## 2231 Drjot London, W Africa, USA & Canada
## 2232 JessiicaKTaylor
## 2233 Its_GPriyanka
## 2234 Its_GPriyanka
## 2235 Its_GPriyanka
## 2236 Its_GPriyanka
## 2237 hopemaga California, USA
## 2238 SoOverItPeople
## 2239 SoOverItPeople
## 2240 mid_zan
## 2241 EnolaGrae London/Addis Ababa/the World
## 2242 EnolaGrae London/Addis Ababa/the World
## 2243 DCwatch16 Santa Fe, NM
## 2244 DCwatch16 Santa Fe, NM
## 2245 gramoscaldato
## 2246 AKansan63 London, England
## 2247 sustainablesuzy Petaluma, CA
## 2248 ReadsSometimes Leeds
## 2249 GwenJBrewer London, England
## 2250 GwenJBrewer London, England
## 2251 GwenJBrewer London, England
## 2252 MediaKAT1912 Florida
## 2253 UKEU360 London, capital city of France
## 2254 UKEU360 London, capital city of France
## 2255 MsJadeOnline London, England
## 2256 MsJadeOnline London, England
## 2257 Riversparkle England, United Kingdom
## 2258 ginaifeanyi
## 2259 KGFCoffeeGirl
## 2260 KGFCoffeeGirl
## 2261 Sallyjames40 London, England
## 2262 Fran_Neena20409 Minnesota, USA
## 2263 NeilH1968 South East, England
## 2264 NeilH1968 South East, England
## 2265 JayVeltri Canada
## 2266 ropeynes
## 2267 bl1ssfulcrystal Los Angeles, CA
## 2268 WellBuiltLair
## 2269 WellBuiltLair
## 2270 McDJohanne Montréal - Québec - UK - Paris
## 2271 SussexsquadM Worldwide like the Sussexes
## 2272 SussexsquadM Worldwide like the Sussexes
## 2273 SussexsquadM Worldwide like the Sussexes
## 2274 77jano77
## 2275 ethelik
## 2276 becausewematte1 scotland
## 2277 PierretteY
## 2278 Linamahmud3
## 2279 Linamahmud3
## 2280 JoannaH78 NY
57
## 2281 azulsoul2013 Greenville, Ms
## 2282 azulsoul2013 Greenville, Ms
## 2283 azulsoul2013 Greenville, Ms
## 2284 azulsoul2013 Greenville, Ms
## 2285 azulsoul2013 Greenville, Ms
## 2286 azulsoul2013 Greenville, Ms
## 2287 Kismetavah
## 2288 HallettKate New York
## 2289 Adrienne_Wicca Barnsley, England
## 2290 PerformPukeko Here
## 2291 rklresources Richmond, VIrginia
## 2292 JeMarieTherese
## 2293 vincentjbove United States
## 2294 vincentjbove United States
## 2295 gurliegurl23
## 2296 gurliegurl23
## 2297 stmprkb Sunshine State
## 2298 13orangesbc United Kingdom
## 2299 13orangesbc United Kingdom
## 2300 Trump45isaloser
## 2301 happygreen78
## 2302 jimothysargo Bali, Indonesia
## 2303 JLPullinger #RVA
## 2304 micklondon London
## 2305 GhingerC
## 2306 chrisy84875917 Earth
## 2307 chrisy84875917 Earth
## 2308 motorheadmukund Mumbai
## 2309 pauleenmwalo Nairobi
## 2310 pauleenmwalo Nairobi
## 2311 lynn180_lynn Portland, OR
## 2312 ZackUK20 United Kingdom
## 2313 ZackUK20 United Kingdom
## 2314 englishbuzz
## 2315 PigSty96452169
## 2316 MediaKAT1912 Florida
## 2317 CorporatePiggie Here and there
## 2318 therealfoxxie_ Lansing, IL
## 2319 Baconbitsnews world of news
## 2320 Baconbitsnews world of news
## 2321 homeystuff Rancho Park area, Calif.
## 2322 laurenmakk Los Angeles, CA
## 2323 midnightsun91 Worldwide
## 2324 midnightsun91 Worldwide
## 2325 BukolaAdedeji6
## 2326 TheVotingNerd New York, USA
## 2327 mid_zan
## 2328 rtwith London, England
## 2329 rtwith London, England
## 2330 rtwith London, England
## 2331 rtwith London, England
## 2332 jh23188
## 2333 MINDoverMS Southern California
## 2334 IAmMargoGrant Cambridge, MA U.S.A.
58
## 2335 cool2_b United States
## 2336 cool2_b United States
## 2337 winterfell_home Earth.
## 2338 DuchessJRM Hong Kong Sydney London
## 2339 DuchessJRM Hong Kong Sydney London
## 2340 DuchessJRM Hong Kong Sydney London
## 2341 DuchessJRM Hong Kong Sydney London
## 2342 DuchessJRM Hong Kong Sydney London
## 2343 DuchessJRM Hong Kong Sydney London
## 2344 DuchessJRM Hong Kong Sydney London
## 2345 DuchessJRM Hong Kong Sydney London
## 2346 DemocracyIsDead Wherever the Hell I want to be
## 2347 DemocracyIsDead Wherever the Hell I want to be
## 2348 NayelySpring910
## 2349 BMovies212 Bridgeport, CT
## 2350 RoyalAstrologst #Europe
## 2351 TchambazaLamba
## 2352 Mr_James_Baker Enquiries to @KSA-North
## 2353 Mr_James_Baker Enquiries to @KSA-North
## 2354 deannalaquian Sunnyvale, CA
## 2355 vivi31641860
## 2356 Toddwith2dees Toronto, Ontario
## 2357 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 2358 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 2359 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 2360 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 2361 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 2362 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 2363 Lisieuxsr 26.295207,-97.9436
## 2364 CHRONICLECHRIS1 Philly #FBR #RESIST #BLM 🌊✊ðŸ\217¿
## 2365 CHRONICLECHRIS1 Philly #FBR #RESIST #BLM 🌊✊ðŸ\217¿
## 2366 AnnetteWalkerUK
## 2367 AnnetteWalkerUK
## 2368 ModerateUK
## 2369 niksthompson AshevilleNCUSAEarthMilkyWayâ\200”â\200”â\200”
## 2370 PeterBa82304711 Reading, UK
## 2371 433Rachel
## 2372 EclecticPop
## 2373 EclecticPop
## 2374 nabongo_mumias
## 2375 yasmineelsabawi Washington, D.C.
## 2376 jinjinnyc new york
## 2377 important_sam
## 2378 important_sam
## 2379 Aaron8Terry
## 2380 TheStateWatcher UK
## 2381 TheStateWatcher UK
## 2382 strikeforcekid
## 2383 FOX5Atlanta Atlanta
## 2384 DuchessJRM Hong Kong Sydney London
## 2385 DuchessJRM Hong Kong Sydney London
## 2386 DuchessJRM Hong Kong Sydney London
## 2387 DeanPerl1 Santa Clarita, CA
## 2388 MrskokoU
59
## 2389 kiranjoyv Toronto, Ontario
## 2390 wcleghorn London | EU | Global
## 2391 wcleghorn London | EU | Global
## 2392 TellsGary At the moment Leeds City West Yorkshire.
## 2393 EarthAngelGreen Dancing with Leprechauns
## 2394 EarthAngelGreen Dancing with Leprechauns
## 2395 EarthAngelGreen Dancing with Leprechauns
## 2396 adjovie
## 2397 pamewatts
## 2398 pamewatts
## 2399 dory_derry Los Angeles, CA
## 2400 dory_derry Los Angeles, CA
## 2401 brijh Outspoken â\231Ž in MN!
## 2402 brijh Outspoken â\231Ž in MN!
## 2403 brijh Outspoken â\231Ž in MN!
## 2404 brijh Outspoken â\231Ž in MN!
## 2405 brijh Outspoken â\231Ž in MN!
## 2406 brijh Outspoken â\231Ž in MN!
## 2407 brijh Outspoken â\231Ž in MN!
## 2408 brijh Outspoken â\231Ž in MN!
## 2409 itismedesu Santa Monica
## 2410 itismedesu Santa Monica
## 2411 colbaltsparkle North Yorkshire
## 2412 colbaltsparkle North Yorkshire
## 2413 justdoodirty3 Manhattan, NY
## 2414 justdoodirty3 Manhattan, NY
## 2415 justdoodirty3 Manhattan, NY
## 2416 justdoodirty3 Manhattan, NY
## 2417 justdoodirty3 Manhattan, NY
## 2418 omitbdf RT ≠agree
## 2419 martynladss
## 2420 SunnyUpland North West, England
## 2421 marciomattosuk Lisbon, Portugal
## 2422 marciomattosuk Lisbon, Portugal
## 2423 simpledarklife
## 2424 TheRealSteveWI Milwaukee, Wisconsin
## 2425 RobinByrd3 Chicago, IL
## 2426 RobinByrd3 Chicago, IL
## 2427 RobinByrd3 Chicago, IL
## 2428 RobinByrd3 Chicago, IL
## 2429 RobinByrd3 Chicago, IL
## 2430 fpjindia India
## 2431 kachirilady
## 2432 MATH_0522
## 2433 jamesak47 London
## 2434 jamesak47 London
## 2435 jamesak47 London
## 2436 jamesak47 London
## 2437 jamesak47 London
## 2438 jamesak47 London
## 2439 jamesak47 London
## 2440 jamesak47 London
## 2441 jamesak47 London
## 2442 VZabbal
60
## 2443 KitTweeter London, United Kingdom
## 2444 KitTweeter London, United Kingdom
## 2445 KitTweeter London, United Kingdom
## 2446 nigrugthug
## 2447 nigrugthug
## 2448 kyrantitterton Bulawayo, Zimbabwe
## 2449 BestCouple2009 Wakefield, England
## 2450 midnightsun91 Worldwide
## 2451 millymoo97
## 2452 WhiteHouse20200
## 2453 Muslims4USA Colorado, USA
## 2454 ZT1967
## 2455 blackfastest1 Neither here nor there...
## 2456 RichOnOWN USA
## 2457 VTPoliticsProf Vermont and Abroad
## 2458 LGM777 Cleveland, Ohio
## 2459 LGM777 Cleveland, Ohio
## 2460 paul_hunter England
## 2461 ImanHassan612
## 2462 drudc77 Washington, DC
## 2463 drudc77 Washington, DC
## 2464 Un2Jennyjk
## 2465 princessvic1912 New York, NY
## 2466 TheDoseTweets Keeping it real
## 2467 TheDoseTweets Keeping it real
## 2468 Fran_Neena20409 Minnesota, USA
## 2469 LauraKHettiger St. Louis, MO
## 2470 DanLow13 United States
## 2471 DanLow13 United States
## 2472 sunnydestiny22 United States
## 2473 ArtsandCulture Born on Ngambra land. Me/Me/Me
## 2474 AKansan63 London, England
## 2475 AKansan63 London, England
## 2476 IAmMargoGrant Cambridge, MA U.S.A.
## 2477 IAmMargoGrant Cambridge, MA U.S.A.
## 2478 pauleenmwalo Nairobi
## 2479 pauleenmwalo Nairobi
## 2480 jedfoundation New York
## 2481 Fzeroone2 Lockdown will last for months
## 2482 Fzeroone2 Lockdown will last for months
## 2483 km8nyc Brookyn, NY
## 2484 km8nyc Brookyn, NY
## 2485 LarrabeeNed Florida, USA
## 2486 kdittmar Philadelphia, PA
## 2487 Dazed_Flower Orange County,CA
## 2488 ChrisMH247 London, England
## 2489 HelenMaryPike A chaise longue, Belvoir Vale
## 2490 Syrobbo1
## 2491 gkgguy
## 2492 gkgguy
## 2493 gkgguy
## 2494 Sujatkamal India-Noida-delhi region
## 2495 TheVotingNerd New York, USA
## 2496 h1biedude Bonny Scotland
61
## 2497 amauney28 Maryland, USA
## 2498 GusWatanabe Winnipeg, Manitoba (Treaty 1)
## 2499 805onthe101
## 2500 andrz003 Atlanta
## 2501 GalanthusA
## 2502 ToucheAdrian
## 2503 ToucheAdrian
## 2504 pariscummings9
## 2505 pariscummings9
## 2506 pariscummings9
## 2507 mybasictarget Nigeria
## 2508 ETCanada Canada
## 2509 VickyBelgrano Buenos Aires
## 2510 VickyBelgrano Buenos Aires
## 2511 VickyBelgrano Buenos Aires
## 2512 VickyBelgrano Buenos Aires
## 2513 andrewdee03 Wales, United Kingdom
## 2514 andrewdee03 Wales, United Kingdom
## 2515 Bubblejet The Interweb
## 2516 Bubblejet The Interweb
## 2517 SuperSkylord United Kingdom
## 2518 thatoreloaded Melville, South Africa
## 2519 transplantID Charleston, SC
## 2520 carolyn01624551 Somerset
## 2521 carolyn01624551 Somerset
## 2522 carolyn01624551 Somerset
## 2523 blackwomxnuk London, UK
## 2524 TheirThorn Brexitville, England
## 2525 ggonefan
## 2526 ggonefan
## 2527 sureking_odds
## 2528 Liorarity
## 2529 cogitator99 Bucks
## 2530 cogitator99 Bucks
## 2531 Jonwatson99
## 2532 Michael08875131 Chattanooga, TN
## 2533 gkgguy
## 2534 gkgguy
## 2535 FairSociety3 London, England
## 2536 FairSociety3 London, England
## 2537 FairSociety3 London, England
## 2538 FairSociety3 London, England
## 2539 lukeheywood New York
## 2540 lukeheywood New York
## 2541 JerzDevl2000 New Jersey
## 2542 JerzDevl2000 New Jersey
## 2543 MartinWilliam95 Georgia
## 2544 brijh Outspoken â\231Ž in MN!
## 2545 brijh Outspoken â\231Ž in MN!
## 2546 brijh Outspoken â\231Ž in MN!
## 2547 brijh Outspoken â\231Ž in MN!
## 2548 brijh Outspoken â\231Ž in MN!
## 2549 thaylakersher Curitiba, Brasil
## 2550 thaylakersher Curitiba, Brasil
62
## 2551 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 2552 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 2553 keligoff New York/LA
## 2554 JackieSussex The netherlands
## 2555 JackieSussex The netherlands
## 2556 Trump45isaloser
## 2557 carolyn01624551 Somerset
## 2558 carolyn01624551 Somerset
## 2559 carolyn01624551 Somerset
## 2560 jodlof_ South Shields, England
## 2561 WillAdamslsd UK/USA
## 2562 WillAdamslsd UK/USA
## 2563 PeterFornchor Abuja, Nigeria
## 2564 ughmuki Sydney
## 2565 PopCulture1000
## 2566 PopCulture1000
## 2567 KALAGHODA6
## 2568 depalan VR
## 2569 depalan VR
## 2570 depalan VR
## 2571 josullivan4 Massachusetts
## 2572 josullivan4 Massachusetts
## 2573 Bmorefit15 Houston texas
## 2574 mufcberbs
## 2575 BrendaRuzzo
## 2576 BrendaRuzzo
## 2577 PR_Whisperer
## 2578 CarlosTonight United States
## 2579 GloriaSchramm1 New York
## 2580 wakeprayslay72
## 2581 wakeprayslay72
## 2582 wakeprayslay72
## 2583 wakeprayslay72
## 2584 wakeprayslay72
## 2585 wakeprayslay72
## 2586 wakeprayslay72
## 2587 wakeprayslay72
## 2588 DawnBaldwinGib1
## 2589 sio_brown Utah, USA
## 2590 JenFullick England, United Kingdom
## 2591 arovakay
## 2592 AngelaEatsMusic New York
## 2593 important_sam
## 2594 important_sam
## 2595 important_sam
## 2596 important_sam
## 2597 CK1london Planet Earth
## 2598 CK1london Planet Earth
## 2599 AuthorWriterEB UK
## 2600 AuthorWriterEB UK
## 2601 AuthorWriterEB UK
## 2602 WillAdamslsd UK/USA
## 2603 WillAdamslsd UK/USA
## 2604 olivia_p_walker Tampa, FL
63
## 2605 depalan VR
## 2606 michelledohrty
## 2607 michelledohrty
## 2608 dennispastorizo Los Angeles, CA
## 2609 UniOfSunComms Sunderland, England
## 2610 trishacullen San Jose, CA
## 2611 debbie_spirit bristol
## 2612 debbie_spirit bristol
## 2613 claireb48939860
## 2614 claireb48939860
## 2615 claireb48939860
## 2616 claireb48939860
## 2617 claireb48939860
## 2618 bella_j6
## 2619 bella_j6
## 2620 twin_fangirl
## 2621 OtimMichael Everywhere
## 2622 OtimMichael Everywhere
## 2623 Jannatu13692481
## 2624 ATB265 Thames-Coromandel, New Zealand
## 2625 iamnikhilnanda à¤1िनà¥\215दà¥\201सà¥\215तान
## 2626 australian_ben Australia
## 2627 australian_ben Australia
## 2628 megslilgreenhat
## 2629 Joe_Biteum 🤡🌎
## 2630 Joe_Biteum 🤡🌎
## 2631 Joe_Biteum 🤡🌎
## 2632 WillAdamslsd UK/USA
## 2633 DaniSavvyWright London, England
## 2634 433Rachel
## 2635 433Rachel
## 2636 433Rachel
## 2637 jamesak47 London
## 2638 jamesak47 London
## 2639 jamesak47 London
## 2640 jamesak47 London
## 2641 jamesak47 London
## 2642 antisocialite01 On my throne
## 2643 erostratus_
## 2644 muhitreza World
## 2645 muhitreza World
## 2646 muhitreza World
## 2647 kachirilady
## 2648 Ed74663303
## 2649 winterfell_home Earth.
## 2650 transconachick Canada
## 2651 PhantomVoodoo Portugal
## 2652 PhantomVoodoo Portugal
## 2653 PhantomVoodoo Portugal
## 2654 Caramel_Angel7 ð\235“œð\235“®ð\235“½ð\235“»o ð\235““ð\235“®ð\235“½ð\235“»ð\235“¸ð\235“2ð\235“½, ð\235“œð\235“\230
## 2655 teetee_luvs_u United States
## 2656 chuterlzely
## 2657 chuterlzely
## 2658 ClassicKells Earth
64
## 2659 PanFiddlediddle
## 2660 UpNorthHiker Ontario, Canada
## 2661 Valegami1
## 2662 Valegami1
## 2663 uk_reginaY London
## 2664 _ChrisWaldorf Here.
## 2665 rebjefwill_j United States
## 2666 Sir_An0nym0us13 London, England
## 2667 blackbuttrfly Dallas, TX
## 2668 blackbuttrfly Dallas, TX
## 2669 ObinnaS86479321
## 2670 ObinnaS86479321
## 2671 Sugarsweetstarr UK
## 2672 dkarlocastro Manila âœ\210ï¸\217 Tokyo âœ\210ï¸\217 Stockholm
## 2673 Namaste_40 Where ever I need to be!
## 2674 Namaste_40 Where ever I need to be!
## 2675 Namaste_40 Where ever I need to be!
## 2676 Namaste_40 Where ever I need to be!
## 2677 capricorn9 Toronto
## 2678 capricorn9 Toronto
## 2679 capricorn9 Toronto
## 2680 RobinGr08124639
## 2681 RobinGr08124639
## 2682 Ssalikg256 Kampala, Uganda
## 2683 sweatsoflondon London, England
## 2684 sweatsoflondon London, England
## 2685 PetefromHayNSW Riverina, NSW, Australia
## 2686 PetefromHayNSW Riverina, NSW, Australia
## 2687 PetefromHayNSW Riverina, NSW, Australia
## 2688 omarhnoureldin Los Angeles, CA
## 2689 janise62794570 New York
## 2690 janise62794570 New York
## 2691 Anna59499783
## 2692 startupqueenn Dubai, UAE
## 2693 startupqueenn Dubai, UAE
## 2694 dazzasmith7 Milton Keynes, England
## 2695 whoisholmes jo’burg/pretoria
## 2696 NikitaFrancois Los Angeles, CA
## 2697 Samanth30985728 Paris, France
## 2698 Samanth30985728 Paris, France
## 2699 drudc77 Washington, DC
## 2700 LaLaKristiansen SK, BC, FL, and in YOUR mind!
## 2701 TheTrut87905708
## 2702 DuchessJRM Hong Kong Sydney London
## 2703 pettitems2 Nashville
## 2704 Dogmother12 Scotland, United Kingdom
## 2705 Dogmother12 Scotland, United Kingdom
## 2706 SueNiBhroin Dublin Ireland
## 2707 Annierow1
## 2708 therealGnlzamba West Hollywood + Kampala
## 2709 Antonia62019914
## 2710 nevertooliberal We are everywhere
## 2711 flower_childe
## 2712 flower_childe
65
## 2713 ApiWenuwen Sri Lanka
## 2714 ApiWenuwen Sri Lanka
## 2715 LGM777 Cleveland, Ohio
## 2716 LGM777 Cleveland, Ohio
## 2717 DhartiKaRakshk
## 2718 MoRaY1959 In the Middle of Nowhere
## 2719 Labellebleue
## 2720 ConquersallLove
## 2721 ConquersallLove
## 2722 1SierraCheyenne
## 2723 Coldwarwarrior2 Luton, England
## 2724 mid_zan
## 2725 Obimomknobi 3rd Rock ðŸŒ\217 from the 🌞
## 2726 MaryMacElveen
## 2727 nyssag Atl, NY, LA
## 2728 nyssag Atl, NY, LA
## 2729 Syrobbo1
## 2730 thebraceygroup God knows. FB-StaceyLBracey
## 2731 drudc77 Washington, DC
## 2732 royal_suitor
## 2733 royal_suitor
## 2734 royal_suitor
## 2735 aswagtuteyik
## 2736 turbogeek421 Britain
## 2737 Marcie_Jacobs
## 2738 blessingkim7
## 2739 OmenProp Extraterestre
## 2740 MartinWilliam95 Georgia
## 2741 Samanth30985728 Paris, France
## 2742 HeartsSpeaking On Twitter
## 2743 DianaKoenic London, England
## 2744 NunuvyabiznessB Nowhere/Everywhere/Somewhere
## 2745 JJB20201 England, United Kingdom
## 2746 TheHillNI1 Belfast, Northern Ireland
## 2747 KALAGHODA6
## 2748 Restoredignity5 United Kingdom
## 2749 pjkatiee The Entry ðŸ‘\200
## 2750 StonebridgeMom Ottawa, Ontario
## 2751 StonebridgeMom Ottawa, Ontario
## 2752 AuroraClubhouse
## 2753 pattietierney
## 2754 kafidrexel Washington, DC
## 2755 JG35580758
## 2756 erenee20 Houston Texas
## 2757 erenee20 Houston Texas
## 2758 erenee20 Houston Texas
## 2759 ShalanRao Hyderabad
## 2760 abgweth
## 2761 abgweth
## 2762 abgweth
## 2763 abgweth
## 2764 ChrisTaps0 London, England
## 2765 WillAdamslsd UK/USA
## 2766 WillAdamslsd UK/USA
66
## 2767 LangstonFrazier MOST LIKELY AT A GOLF COURSE!â›3ï¸\217
## 2768 CaligirlLeftie Dying Earth
## 2769 CaligirlLeftie Dying Earth
## 2770 CaligirlLeftie Dying Earth
## 2771 BillyLinehan Ireland
## 2772 PeteP15193553 England
## 2773 PeteP15193553 England
## 2774 frma_com Citizen of the universe
## 2775 frma_com Citizen of the universe
## 2776 frma_com Citizen of the universe
## 2777 IsleOfSceptre
## 2778 IsleOfSceptre
## 2779 RachelCBoyle1
## 2780 RachelCBoyle1
## 2781 meine__schatz
## 2782 PopeJuliusII5 Varican City
## 2783 MarciGower
## 2784 TrentTDaley á\220Šá’¥á\220¢á‘¿á’Œá\220šá\220¢á‘2á\220¦á\220ƒá‘2á\220£
## 2785 PK12one London World Wide
## 2786 PK12one London World Wide
## 2787 KayabagaArielle London, Ontario
## 2788 fit_warren
## 2789 Knowled79420294
## 2790 Knowled79420294
## 2791 JohnDediePolSci USA
## 2792 SummerRhapsody UK 🇪🇺
## 2793 SummerRhapsody UK 🇪🇺
## 2794 SummerRhapsody UK 🇪🇺
## 2795 DaisyFurball1 Wessex via Danelaw
## 2796 DaisyFurball1 Wessex via Danelaw
## 2797 bananna_and Essex United Kingdom
## 2798 bananna_and Essex United Kingdom
## 2799 bananna_and Essex United Kingdom
## 2800 ladykootoure Atlanta
## 2801 ladykootoure Atlanta
## 2802 WeHoTim West Hollywood, CA
## 2803 marysrockman San Francisco, CA
## 2804 ari2012 the back of the wind
## 2805 fayfee7
## 2806 sussexsquadpod Worldwide
## 2807 pattietierney
## 2808 Webbo03 Hull, England
## 2809 SenLewie
## 2810 angelneptustar North London
## 2811 NV_CA_Insurance Nevada & California License
## 2812 timesofindia New Delhi
## 2813 SammyVictoria26 Leeds, UK
## 2814 NealeThompson1 Oswaldtwistle, Hyndburn, UK
## 2815 NealeThompson1 Oswaldtwistle, Hyndburn, UK
## 2816 debstersd
## 2817 debstersd
## 2818 Whazzup_yo ChinqueTerra if Trump relected
## 2819 nighthawkins Edinburgh
## 2820 nighthawkins Edinburgh
67
## 2821 nighthawkins Edinburgh
## 2822 nighthawkins Edinburgh
## 2823 nighthawkins Edinburgh
## 2824 Jannatu13692481
## 2825 whoisronjames MD
## 2826 whoisronjames MD
## 2827 Vrouwenpagina Nederland
## 2828 markpaterson California, USA
## 2829 thecarguy41 London, England
## 2830 softballfreakz Lake Charles, LA
## 2831 marcanthonyr Tampa, FL
## 2832 alexlimeq
## 2833 DivinelyMeghan Donate
## 2834 conn0rstrange yeh
## 2835 dory_derry Los Angeles, CA
## 2836 AKansan63 London, England
## 2837 AKansan63 London, England
## 2838 Jimbob210712 Man Cave
## 2839 Jimbob210712 Man Cave
## 2840 FredGanza7 Earth
## 2841 FredGanza7 Earth
## 2842 Ryan_Mucilih Western Australia, Australia
## 2843 TessHope3
## 2844 janise62794570 New York
## 2845 drudc77 Washington, DC
## 2846 wsucpa
## 2847 FenugreekGreen Edinburgh, Scotland
## 2848 Northerndrums Niagara, Ontario
## 2849 Northerndrums Niagara, Ontario
## 2850 shnappie9
## 2851 shnappie9
## 2852 shnappie9
## 2853 shnappie9
## 2854 tracibg123 Montgomery County, MD
## 2855 amyacc Florida, USA
## 2856 amyacc Florida, USA
## 2857 AmbikQueen
## 2858 OpenMediaFilmTV London, UK
## 2859 OpenMediaFilmTV London, UK
## 2860 RobinByrd3 Chicago, IL
## 2861 RobinByrd3 Chicago, IL
## 2862 LGM777 Cleveland, Ohio
## 2863 LGM777 Cleveland, Ohio
## 2864 LGM777 Cleveland, Ohio
## 2865 RavenJ70857140
## 2866 NowJags United States
## 2867 BPositive33
## 2868 TOdiary Toronto, Ontario
## 2869 JG35580758
## 2870 JG35580758
## 2871 nataliae_a_j41 Canada
## 2872 nataliae_a_j41 Canada
## 2873 nataliae_a_j41 Canada
## 2874 SummerRhapsody UK 🇪🇺
68
## 2875 blkdiamondgurl United States
## 2876 blkdiamondgurl United States
## 2877 blkdiamondgurl United States
## 2878 drudc77 Washington, DC
## 2879 TheLastMoorKing
## 2880 EastYorksTony Local
## 2881 AKansan63 London, England
## 2882 AKansan63 London, England
## 2883 AKansan63 London, England
## 2884 AKansan63 London, England
## 2885 DamoFather Puerto Banus, Spain
## 2886 _Bernard71 British Isles
## 2887 _Bernard71 British Isles
## 2888 _Bernard71 British Isles
## 2889 Jannatu13692481
## 2890 M_Elizabeth252 Los Angeles, CA
## 2891 EverydayAmeric7
## 2892 BorisJustLies 10 Downing Street
## 2893 BorisJustLies 10 Downing Street
## 2894 BorisJustLies 10 Downing Street
## 2895 rec777777 South West, England
## 2896 rec777777 South West, England
## 2897 NobbsPaddy
## 2898 Yankeefan2975 New York City
## 2899 FerrolEl Not here!!
## 2900 Fran_Neena20409 Minnesota, USA
## 2901 IsleOfSceptre
## 2902 Colleen42191829
## 2903 Colleen42191829
## 2904 Colleen42191829
## 2905 hopemaga California, USA
## 2906 MonroviaKat Glendora, CA
## 2907 JTRobbedCanada Manitoba, Canada
## 2908 JTRobbedCanada Manitoba, Canada
## 2909 JacobTheTyper Your Screen
## 2910 StilettoExec VA and beyond.
## 2911 DuchessJRM Hong Kong Sydney London
## 2912 DuchessJRM Hong Kong Sydney London
## 2913 rach_tastic California
## 2914 cjsmiffy1978 Accrington, England
## 2915 Ellerret1
## 2916 Ellerret1
## 2917 TheTrut87905708
## 2918 drudc77 Washington, DC
## 2919 NYBackpacker New Amsterdam
## 2920 Success4Sussexs
## 2921 Success4Sussexs
## 2922 Success4Sussexs
## 2923 Success4Sussexs
## 2924 Success4Sussexs
## 2925 sharronrene_
## 2926 WhiteHouse20200
## 2927 GeraldineGeneva Lausanne, Switzerland
## 2928 GeraldineGeneva Lausanne, Switzerland
69
## 2929 C_W_UK Hyères, France
## 2930 C_W_UK Hyères, France
## 2931 _GiftofGab_ New York
## 2932 _GiftofGab_ New York
## 2933 sophieelsworth Melbourne, Victoria
## 2934 AKansan63 London, England
## 2935 AKansan63 London, England
## 2936 StefSimanowitz [email protected]
## 2937 WizardBattery
## 2938 WizardBattery
## 2939 WizardBattery
## 2940 WizardBattery
## 2941 ATB265 Thames-Coromandel, New Zealand
## 2942 ATB265 Thames-Coromandel, New Zealand
## 2943 ATB265 Thames-Coromandel, New Zealand
## 2944 aleisha_71 Australia
## 2945 whendreamscome
## 2946 whendreamscome
## 2947 missstx N 17°43’ 0’’ / W 64°51’ 0’’
## 2948 ZingyTheRobot UK
## 2949 deardrewdixon United States
## 2950 deardrewdixon United States
## 2951 deardrewdixon United States
## 2952 IsleOfSceptre
## 2953 JustANormie5 San Bernardino, California
## 2954 JustANormie5 San Bernardino, California
## 2955 BrandonLady45 Georgia
## 2956 Serena09386470
## 2957 KFenton21 Swansea, WalesðŸ\217´ó \201§ó \201¢ó \201·ó \201¬ó \2013ó \201¿â\235¤ï¸\217
## 2958 SarahLuckhurst4
## 2959 BorisJustLies 10 Downing Street
## 2960 fullcodecpr Bellflower, CA
## 2961 fullcodecpr Bellflower, CA
## 2962 fullcodecpr Bellflower, CA
## 2963 Viwe_Pobana Pretoria, South Africa
## 2964 ntl_angie USA
## 2965 ntl_angie USA
## 2966 ntl_angie USA
## 2967 JobieseCPA Nairobi, Kenya
## 2968 WillAdamslsd UK/USA
## 2969 DivaFlyMusic
## 2970 EbonyJHilton_MD Charlottesville, VA
## 2971 realgaysatan Los Angeles, CA
## 2972 MBIMunshi Dhaka
## 2973 ronnabr United States
## 2974 drudc77 Washington, DC
## 2975 shellybarr Buffalo, New York
## 2976 time4chirping Boston, MA
## 2977 Sonia64550226 Lagos, Nigeria
## 2978 BPositive33
## 2979 BPositive33
## 2980 BPositive33
## 2981 BPositive33
## 2982 PostMarch18Guys
70
## 2983 PostMarch18Guys
## 2984 DuchessJRM Hong Kong Sydney London
## 2985 parkerwarwick Hertfordshire
## 2986 EvitaEsq United States
## 2987 ontmomfinance Toronto, Ontario
## 2988 GuyFawk95323763 Traveling
## 2989 malawian81 Washington, DC
## 2990 CJOMAX761 Tennessee
## 2991 Johnyshan South East, England
## 2992 yumchamama Central Region, Singapore
## 2993 herandu El Dorado, Amazon
## 2994 Resrcher
## 2995 MarilynRising Hollywood, CA
## 2996 MBIMunshi Dhaka
## 2997 MBIMunshi Dhaka
## 2998 ChrisByrne1986 Doncaster, UK.
## 2999 anon1395 United States
## 3000 drudc77 Washington, DC
## 3001 drudc77 Washington, DC
## 3002 drudc77 Washington, DC
## 3003 ronnabr United States
## 3004 Justmythots8 London, England
## 3005 spragueg
## 3006 sergio83878195
## 3007 ImmoralJellyFi1 Around
## 3008 ImmoralJellyFi1 Around
## 3009 ScientistFor United Kingdom
## 3010 Olohunxe Esmeraldas, Ecuador
## 3011 Olohunxe Esmeraldas, Ecuador
## 3012 brigittahartma1 Berlin, Deutschland
## 3013 Maximuss9999 New York, USA
## 3014 VU3UJM mumbai
## 3015 VU3UJM mumbai
## 3016 FiorediNotte33
## 3017 PralinesNLipStk NOLA-ATL-HOUSTON, USA
## 3018 PralinesNLipStk NOLA-ATL-HOUSTON, USA
## 3019 pos_theatre International
## 3020 gatitonic1968 Canada
## 3021 johndyerjnr South East, England
## 3022 johndyerjnr South East, England
## 3023 chicks67 Chicago,IL
## 3024 donnovanbennett
## 3025 donnovanbennett
## 3026 jorgito2729
## 3027 TheHopefulGard1
## 3028 leroy_mccurdy USSR
## 3029 Hawks10880737 Chicago
## 3030 megslilgreenhat
## 3031 megslilgreenhat
## 3032 arovakay
## 3033 3DPixelPro Virtual Space, USA
## 3034 3DPixelPro Virtual Space, USA
## 3035 MeghansMirror International
## 3036 maribellezza
71
## 3037 DiaryOtdGirl London, England
## 3038 clareprecey Norwich
## 3039 clareprecey Norwich
## 3040 Celebrityfame1 World
## 3041 mid_zan
## 3042 Jaygee_58 Edinburgh
## 3043 Jaygee_58 Edinburgh
## 3044 Jaygee_58 Edinburgh
## 3045 Jaygee_58 Edinburgh
## 3046 Jaygee_58 Edinburgh
## 3047 Jaygee_58 Edinburgh
## 3048 Jaygee_58 Edinburgh
## 3049 Jaygee_58 Edinburgh
## 3050 MichaelPLS Las Vegas c/o Louisville, KY
## 3051 AFC2Cor Aylesbury, England
## 3052 Sukyna12
## 3053 MizzBronze Twitter
## 3054 ArtsandCulture Born on Ngambra land. Me/Me/Me
## 3055 ArtsandCulture Born on Ngambra land. Me/Me/Me
## 3056 l20517685
## 3057 l20517685
## 3058 Casumptious Scotland, United Kingdom
## 3059 TheAnswers8 United States
## 3060 torp771
## 3061 torp771
## 3062 torp771
## 3063 JotakaEaddy Washington DC / San Francisco
## 3064 omekongo Washington, DC
## 3065 chirpingKatee Fluttering in the US
## 3066 chirpingKatee Fluttering in the US
## 3067 chirpingKatee Fluttering in the US
## 3068 chirpingKatee Fluttering in the US
## 3069 chirpingKatee Fluttering in the US
## 3070 theconservattic
## 3071 HuangZii
## 3072 Rubinafangurl
## 3073 mrsrobboswansea United Kingdom
## 3074 mrsrobboswansea United Kingdom
## 3075 mrsrobboswansea United Kingdom
## 3076 kristenmeinzer Brooklyn, NY
## 3077 PLVerratti Los Angeles, CA
## 3078 PLVerratti Los Angeles, CA
## 3079 Anti_monarchyuk London, England
## 3080 Anti_monarchyuk London, England
## 3081 Anti_monarchyuk London, England
## 3082 Anti_monarchyuk London, England
## 3083 BPositive33
## 3084 BPositive33
## 3085 BPositive33
## 3086 oluwaphemmyade1 burna boy house ðŸ“ðŸ¦\215
## 3087 ukirishlad
## 3088 ukirishlad
## 3089 terencecosgrave North Tipperary, Ireland
## 3090 multifocused
72
## 3091 makeupcs Toronto, Ontario
## 3092 jillienp Bay Area, CA
## 3093 jillienp Bay Area, CA
## 3094 Nakia_Hill somewhere writing...
## 3095 MullerDonUK
## 3096 MullerDonUK
## 3097 Gordon_McQue West of Scotland
## 3098 contour88632203
## 3099 contour88632203
## 3100 proudindian_iam California, USA
## 3101 proudindian_iam California, USA
## 3102 proudindian_iam California, USA
## 3103 KhayonIskandar Prospero
## 3104 KhayonIskandar Prospero
## 3105 KhayonIskandar Prospero
## 3106 drudc77 Washington, DC
## 3107 JewishVoice New York, NY
## 3108 JewishVoice New York, NY
## 3109 JewishVoice New York, NY
## 3110 karaousel floating in between
## 3111 karaousel floating in between
## 3112 BodhisattvaKat Universal Mass Consciousness
## 3113 JvO_0708
## 3114 JvO_0708
## 3115 JvO_0708
## 3116 bickers1983 Earth
## 3117 KathyE_Boston Boston, MA
## 3118 MartinWilliam95 Georgia
## 3119 aderonke_a Somewhere, US
## 3120 aderonke_a Somewhere, US
## 3121 denimology From London to LA!
## 3122 OllieLove44 CALIFUCKINFORNIA
## 3123 lennycurry
## 3124 spokengrace Florida, USA
## 3125 Quayleman89 Baltimore, MD
## 3126 flower_lee8 London, England
## 3127 SameerN7 Bharat
## 3128 SameerN7 Bharat
## 3129 lisfaulkner Edinburgh, Scotland
## 3130 ukirishlad
## 3131 ukirishlad
## 3132 sweatsoflondon London, England
## 3133 sweatsoflondon London, England
## 3134 FredGanza7 Earth
## 3135 FredGanza7 Earth
## 3136 Gaynor4Brexit
## 3137 Gaynor4Brexit
## 3138 Gaynor4Brexit
## 3139 meine__schatz
## 3140 meine__schatz
## 3141 brcena New Monmouth,NJ
## 3142 whos81
## 3143 whos81
## 3144 ILuvLewisHam
73
## 3145 ILuvLewisHam
## 3146 ILuvLewisHam
## 3147 Namaste_40 Where ever I need to be!
## 3148 ylimemay
## 3149 RobinGr08124639
## 3150 RobinGr08124639
## 3151 juliuslumsden1 California & United Kingdom
## 3152 JeMarieTherese
## 3153 MotownDR Location? Guess...lol.
## 3154 mansikoul Jammu & Kashmir | Gurgaon
## 3155 hisey_mike New York
## 3156 tommybox3
## 3157 tommybox3
## 3158 ianmsyme UK
## 3159 DestiGrace1 Global Citizen
## 3160 DestiGrace1 Global Citizen
## 3161 Gilapfeffer London, England
## 3162 CrystalChild59
## 3163 MeganVanDiver Minneapolis, MN
## 3164 IsleOfSceptre
## 3165 Jpjm1964 Huddersfield, England
## 3166 tommybox3
## 3167 tommybox3
## 3168 tommybox3
## 3169 simon_ball46 Luton, England
## 3170 simon_ball46 Luton, England
## 3171 SineadCMitchell
## 3172 c_makeba
## 3173 BukolaAdedeji6
## 3174 Changeling_1 Where we run wild, run free.
## 3175 Changeling_1 Where we run wild, run free.
## 3176 str8talkin88 England, United Kingdom
## 3177 IamPenelope5 Somewhere out there
## 3178 multioptioned Australia
## 3179 depalan VR
## 3180 depalan VR
## 3181 depalan VR
## 3182 mudpuppy001 United States
## 3183 mudpuppy001 United States
## 3184 SparklesBromley Bromley, Kent
## 3185 SparklesBromley Bromley, Kent
## 3186 EbonyJHilton_MD Charlottesville, VA
## 3187 WelshCelt Wales, United Kingdom
## 3188 TomRed43 SYDNEY
## 3189 Nexus8Replicant uk
## 3190 annascande Leeds, England
## 3191 MartinWilliam95 Georgia
## 3192 RealiTEAtime {~in~the~zeitgeist~}
## 3193 Energy_exotic A World of Colour & Ink
## 3194 The_Major_Knows United Kingdom
## 3195 312shelly3
## 3196 BuxtonJulia The Northern powerhouse
## 3197 BuxtonJulia The Northern powerhouse
## 3198 BuxtonJulia The Northern powerhouse
74
## 3199 steveandrew2000
## 3200 lordofintent
## 3201 crittercottab3
## 3202 crittercottab3
## 3203 BrandMeEbony Global
## 3204 wonderlandmag LONDON
## 3205 dannyLwalker Bristol, United Kingdom
## 3206 dannyLwalker Bristol, United Kingdom
## 3207 dannyLwalker Bristol, United Kingdom
## 3208 AKansan63 London, England
## 3209 Mblainer_
## 3210 Mblainer_
## 3211 MBIMunshi Dhaka
## 3212 Summerbae18
## 3213 illumilady NEW YORK, Malaga, Sevilla
## 3214 consultantUK_ Angleterre, Royaume-Uni
## 3215 IsleOfSceptre
## 3216 BusayoAwe1
## 3217 CH_2014 Suisse romande
## 3218 Karlos_2049 London, England
## 3219 Karlos_2049 London, England
## 3220 Karlos_2049 London, England
## 3221 TheBigYin85 Livingston, Scotland
## 3222 Melitz_Vivid Somewhere over the rainbow
## 3223 FredGanza7 Earth
## 3224 mid_zan
## 3225 mansikoul Jammu & Kashmir | Gurgaon
## 3226 kachirilady
## 3227 SummerRhapsody UK 🇪🇺
## 3228 SummerRhapsody UK 🇪🇺
## 3229 AngellaRicot New York, NY
## 3230 WhoSaidWhatOMG United States/ United Kingdom
## 3231 RebeccaAguilar Texas, USA
## 3232 colbaltsparkle North Yorkshire
## 3233 juliuslumsden1 California & United Kingdom
## 3234 juliuslumsden1 California & United Kingdom
## 3235 celticpirate1
## 3236 sannetje_26
## 3237 sannetje_26
## 3238 sannetje_26
## 3239 sannetje_26
## 3240 pippinago Switzerland
## 3241 asjjones18 London, England
## 3242 MoRaY1959 In the Middle of Nowhere
## 3243 JG35580758
## 3244 JG35580758
## 3245 JG35580758
## 3246 KirbyChuckShow Nashville, TN
## 3247 KirbyChuckShow Nashville, TN
## 3248 TrivolutionGame Sarasota, Florida
## 3249 fiasco_n Florida, USA
## 3250 mugabo_robert Rwanda 📸: @Innocentrw
## 3251 PierretteY
## 3252 FinchExt
75
## 3253 FinchExt
## 3254 meine__schatz
## 3255 alr6872 North wales uk
## 3256 brenmupa
## 3257 ryan_j_begint Cape Town, South Africa
## 3258 MichaelPLS Las Vegas c/o Louisville, KY
## 3259 SarahSchowalter Pennsylvania, USA
## 3260 SarahSchowalter Pennsylvania, USA
## 3261 Robin_Volpi Chicago, IL
## 3262 Robin_Volpi Chicago, IL
## 3263 Robin_Volpi Chicago, IL
## 3264 QueenVLion1
## 3265 QueenVLion1
## 3266 wandaransom Texas, USA
## 3267 wandaransom Texas, USA
## 3268 wandaransom Texas, USA
## 3269 rachelj02017275
## 3270 rachelj02017275
## 3271 Tellitl66077922
## 3272 RoyallyPetite United Kingdom
## 3273 RoyallyPetite United Kingdom
## 3274 karynpalminteri
## 3275 karynpalminteri
## 3276 abgweth
## 3277 abgweth
## 3278 abgweth
## 3279 EmmaPeel_Knight Vienna, Austria, Europe
## 3280 GirlsOnFilm4 Atlanta, GA
## 3281 LGM777 Cleveland, Ohio
## 3282 staurt1
## 3283 thomasoxley Chesterfield
## 3284 Ruheimmer
## 3285 C2theA2theB Glass Case of Emotion
## 3286 MBIMunshi Dhaka
## 3287 MBIMunshi Dhaka
## 3288 MBIMunshi Dhaka
## 3289 Justmythots8 London, England
## 3290 Justmythots8 London, England
## 3291 10NewsFirst Australia
## 3292 poonamsharma00 London, England
## 3293 DuchessJRM Hong Kong Sydney London
## 3294 DuchessJRM Hong Kong Sydney London
## 3295 DuchessJRM Hong Kong Sydney London
## 3296 DuchessJRM Hong Kong Sydney London
## 3297 DirtyEzio1st
## 3298 Jaygee_58 Edinburgh
## 3299 Jaygee_58 Edinburgh
## 3300 Jaygee_58 Edinburgh
## 3301 Jaygee_58 Edinburgh
## 3302 Jaygee_58 Edinburgh
## 3303 Jaygee_58 Edinburgh
## 3304 Jaygee_58 Edinburgh
## 3305 Jaygee_58 Edinburgh
## 3306 HarryHarryshud Middlesbrough, England
76
## 3307 Dougy_UK Nottingham, England, UK.
## 3308 Dougy_UK Nottingham, England, UK.
## 3309 c_makeba
## 3310 DBrown99944
## 3311 DBrown99944
## 3312 Tatum0420 Timbuktu
## 3313 Tatum0420 Timbuktu
## 3314 GovSherazKhan
## 3315 JohannaWhite
## 3316 museofmarketing London Victoria SW1
## 3317 winston_wallis
## 3318 DaveBannon2
## 3319 MeghansMeyhive
## 3320 MeghansMeyhive
## 3321 MeghansMeyhive
## 3322 aralcsubtweet Not Here
## 3323 BrendaI58824950 Newtownards, Northern Ireland
## 3324 Hellosmee1
## 3325 LadyGlencoe65 Canberra, Australia
## 3326 Jess75833164
## 3327 Jess75833164
## 3328 Jess75833164
## 3329 ViiBags Behind You
## 3330 ViiBags Behind You
## 3331 ViiBags Behind You
## 3332 moo1mh Swindon
## 3333 ernestoverdugo Amsterdam
## 3334 VideoElephantTV Los Angeles
## 3335 angelneptustar North London
## 3336 Tanisha_Ev The Dirty Dirty
## 3337 Tanisha_Ev The Dirty Dirty
## 3338 Tanisha_Ev The Dirty Dirty
## 3339 rebukd Sydney
## 3340 jlmartin1234
## 3341 jlmartin1234
## 3342 jlmartin1234
## 3343 jlmartin1234
## 3344 ViewerLicious
## 3345 ViewerLicious
## 3346 IsleOfSceptre
## 3347 IsleOfSceptre
## 3348 GoBinge_ Cape Town, South Africa
## 3349 NorrinR06303580 Caught somewhere in time...
## 3350 KThompsonABD United States
## 3351 fararrri_x
## 3352 eddiegaona Los Angeles â\200¢ Web
## 3353 eddiegaona Los Angeles â\200¢ Web
## 3354 morningshowca
## 3355 Hameedwafa Kabul - Vancouver
## 3356 glam_and_classy
## 3357 NeilWayneSmith Tamworth
## 3358 marciomattosuk Lisbon, Portugal
## 3359 BusayoAwe1
## 3360 modificata
77
## 3361 modificata
## 3362 modificata
## 3363 JnthnMorse
## 3364 JnthnMorse
## 3365 JnthnMorse
## 3366 MaritaLalaguna London, England
## 3367 MaritaLalaguna London, England
## 3368 MaritaLalaguna London, England
## 3369 MaritaLalaguna London, England
## 3370 patrickmadrid 190 radio stations nationally
## 3371 midnightsun91 Worldwide
## 3372 steviecoolest On the web & in your hearts
## 3373 vishal_CBD Mumbai
## 3374 JillofAllTrad14
## 3375 Dr_Lord_Watson
## 3376 Dr_Lord_Watson
## 3377 TheTrut87905708
## 3378 TheTrut87905708
## 3379 TheTrut87905708
## 3380 TheTrut87905708
## 3381 TheTrut87905708
## 3382 TheTrut87905708
## 3383 rec777777 South West, England
## 3384 saziz01b South Lyon, Mi
## 3385 OkohaiPatienceC Lagos, Nigeria
## 3386 dedig3623
## 3387 dedig3623
## 3388 lovebuddy64 Long Island, NY
## 3389 bellobabydog
## 3390 bellobabydog
## 3391 BlackandPaper1
## 3392 WhiteHouse20200
## 3393 WhiteHouse20200
## 3394 scarletsfiIm ðŸ\215“â\230\201ï¸\217🧺
## 3395 MaryT51727102
## 3396 MaryT51727102
## 3397 AndyGifford6 South East, England
## 3398 A_w0n_Comedy Los Angeles, CA
## 3399 kimpossible2214
## 3400 kimpossible2214
## 3401 HofferChristine Eastern Washington
## 3402 Drjot London, W Africa, USA & Canada
## 3403 Drjot London, W Africa, USA & Canada
## 3404 pomeinnz
## 3405 PierretteY
## 3406 _leftisbest
## 3407 TooBroadway
## 3408 hopemaga California, USA
## 3409 anncarmody I â\235¤ï¸\217 NY
## 3410 VikramBarhat Canada
## 3411 Namaste_40 Where ever I need to be!
## 3412 evythgisawful
## 3413 JeMarieTherese
## 3414 JeMarieTherese
78
## 3415 JeMarieTherese
## 3416 JeMarieTherese
## 3417 chisovn
## 3418 angelneptustar North London
## 3419 timallanwalker West Palm Beach, FL
## 3420 timallanwalker West Palm Beach, FL
## 3421 BookishBrina
## 3422 brcena New Monmouth,NJ
## 3423 JAIMELAVIE9309
## 3424 CL_Cresswell United Kingdom
## 3425 ElenMorris4
## 3426 MaxineABlack London, England
## 3427 MaxineABlack London, England
## 3428 MaxineABlack London, England
## 3429 DuchessJRM Hong Kong Sydney London
## 3430 DuchessJRM Hong Kong Sydney London
## 3431 DuchessJRM Hong Kong Sydney London
## 3432 KatieLMPrice She/Her #BLM
## 3433 halltoons Florida, USA
## 3434 ThumperTurnbri1
## 3435 ThumperTurnbri1
## 3436 angelicilda New York, England
## 3437 JimmyPlankRoad San Diego, CA
## 3438 chipgro
## 3439 chipgro
## 3440 IanDWagner New Tripoli, PA
## 3441 TraceyNew California dreamin’
## 3442 FookMi6 Scotland, United Kingdom
## 3443 FookMi6 Scotland, United Kingdom
## 3444 CodyMarley ?
## 3445 jtw_25_51 Gods own county.
## 3446 Obamican USA
## 3447 Nikita04768553 Carlsbad, CA
## 3448 Nikita04768553 Carlsbad, CA
## 3449 this_melanin
## 3450 Liberal151
## 3451 Liberal151
## 3452 jimrosenfield Philadelpha, PA
## 3453 FredGanza7 Earth
## 3454 FredGanza7 Earth
## 3455 JeanineAGarcia Los Angeles, CA
## 3456 DEE0JAY0BAX
## 3457 KatyWil44603938
## 3458 Sleslie1 Orange County, CA
## 3459 Sleslie1 Orange County, CA
## 3460 NVisionMarketin Atlanta
## 3461 NVisionMarketin Atlanta
## 3462 3wisemonk3ys California, USA
## 3463 3wisemonk3ys California, USA
## 3464 the_graytest_ Baton Rouge, LA
## 3465 the_graytest_ Baton Rouge, LA
## 3466 ParisSorel
## 3467 BukolaAdedeji6
## 3468 BukolaAdedeji6
79
## 3469 LizYoun55179126
## 3470 LizYoun55179126
## 3471 LizYoun55179126
## 3472 LizYoun55179126
## 3473 LizYoun55179126
## 3474 VoltarSophia
## 3475 iFangirlLots RVA
## 3476 abgweth
## 3477 abgweth
## 3478 JohnAndreou8
## 3479 JohnAndreou8
## 3480 ScarlettBice Key West, FL
## 3481 ShelettaIsFunny Cottage Grove, MN
## 3482 jenlove999 🌴Philippines
## 3483 emmabelle96
## 3484 normacrooz Lagos
## 3485 Sadie_81MResist San Antonio, TX
## 3486 MaxineKnightWr1 Bristol, England
## 3487 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 3488 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 3489 BelievingBruce Instagram -believingbruce360
## 3490 BelievingBruce Instagram -believingbruce360
## 3491 ArtsPrintable Phoenix, AZ
## 3492 wendynyc123 New York
## 3493 wendynyc123 New York
## 3494 bananna_and Essex United Kingdom
## 3495 Caroline_Wilson Louisville, KY
## 3496 MullerDonUK
## 3497 MullerDonUK
## 3498 JoeyHodge18
## 3499 SarahJacksonSJ Dallas, TX
## 3500 bartvader3
## 3501 RoyalEscape2020 Vancouver, BC, Canada
## 3502 RoyalEscape2020 Vancouver, BC, Canada
## 3503 Ramonzmania
## 3504 SoapQueen86 Inverness, Scotland
## 3505 pureshtuyot UK & Israel
## 3506 KitMurray14
## 3507 geniuswriter1 Isle of Wight
## 3508 lautarofmf Argentina / Los Angeles
## 3509 citizen_pdx
## 3510 ToriesOUT6 United Kingdom
## 3511 JenFullick England, United Kingdom
## 3512 AazMedia
## 3513 GoodBuddyKIRK Quebec, c
## 3514 TheMarketingAnu London, England
## 3515 TheMarketingAnu London, England
## 3516 myrtmcg
## 3517 dammy_mac
## 3518 bird10_lee
## 3519 ThrivingWriter Toronto, Ontario Canada
## 3520 Hopalon89013906
## 3521 ChristoferRiley
## 3522 ChristoferRiley
80
## 3523 ChristoferRiley
## 3524 aditinfinite United States
## 3525 aditinfinite United States
## 3526 SFPlayers Livin the SF Life
## 3527 marian_kwei
## 3528 TarekFatah Toronto, Ontario
## 3529 TarekFatah Toronto, Ontario
## 3530 DeepsShetty
## 3531 DeepsShetty
## 3532 RamusFl Toronto - Canada
## 3533 WokeJoke5 LA-NYC
## 3534 JusticeAvengeHQ
## 3535 JusticeAvengeHQ
## 3536 JusticeAvengeHQ
## 3537 susiezygy
## 3538 susiezygy
## 3539 ronnabr United States
## 3540 ronnabr United States
## 3541 JoRichardsKent
## 3542 Sotiredofallth1 Great Britain
## 3543 GirlofSC
## 3544 michael_hows England
## 3545 michael_hows England
## 3546 duchess_salty
## 3547 duchess_salty
## 3548 kachirilady
## 3549 itismedesu Santa Monica
## 3550 itismedesu Santa Monica
## 3551 HavetStorm North West, England
## 3552 multioptioned Australia
## 3553 multioptioned Australia
## 3554 p90744597
## 3555 ITookAShot
## 3556 ITookAShot
## 3557 Trump45isaloser
## 3558 0livepie
## 3559 0livepie
## 3560 0livepie
## 3561 yipmann82
## 3562 yipmann82
## 3563 officialtedwinn ÃœT: 33.81037,-84.374451
## 3564 Emran29902311 United Kingdom
## 3565 Emran29902311 United Kingdom
## 3566 refturner Tulsa, OK
## 3567 BPositive33
## 3568 AltheaAikens United States
## 3569 kachirilady
## 3570 suelin_flower West Midlands, England
## 3571 accessonline Instagram → @accessonline
## 3572 Henimina1
## 3573 Henimina1
## 3574 Henimina1
## 3575 Tracie93315429
## 3576 Bamboltalia
81
## 3577 citrusramaphosa
## 3578 citrusramaphosa
## 3579 royal_suitor
## 3580 NYTimesRedux New York
## 3581 GezimAlpion Birmingham, UK
## 3582 GezimAlpion Birmingham, UK
## 3583 TMidsouth1
## 3584 TMidsouth1
## 3585 TMidsouth1
## 3586 TMidsouth1
## 3587 Jenniferbeast7
## 3588 FitChefNardo Charlotte, NC
## 3589 FitChefNardo Charlotte, NC
## 3590 FitChefNardo Charlotte, NC
## 3591 Yekoz Toronto
## 3592 rea_carey
## 3593 zoobomax Australia
## 3594 DevanSandiford Brooklyn, NY
## 3595 DevanSandiford Brooklyn, NY
## 3596 DevanSandiford Brooklyn, NY
## 3597 muhitreza World
## 3598 muhitreza World
## 3599 muhitreza World
## 3600 aminshhhh
## 3601 metldoctor
## 3602 doodle_sammy Florida, USA
## 3603 doodle_sammy Florida, USA
## 3604 doodle_sammy Florida, USA
## 3605 DimondhandsAndy
## 3606 LauraKHettiger St. Louis, MO
## 3607 shollins77 Toronto, Ontario
## 3608 itsashleymae21 Tucker, GA
## 3609 itsashleymae21 Tucker, GA
## 3610 ChiomaEucheria Somewhere, in the World
## 3611 carecgy #PlantBasedTown
## 3612 CambridgeGarden ðŸ’\231ðŸ“
## 3613 CambridgeGarden ðŸ’\231ðŸ“
## 3614 CambridgeGarden ðŸ’\231ðŸ“
## 3615 CambridgeGarden ðŸ’\231ðŸ“
## 3616 CambridgeGarden ðŸ’\231ðŸ“
## 3617 elizabethbetsyr Queens, NY
## 3618 nehpazojArchieH
## 3619 MyMentalMatter3
## 3620 MyMentalMatter3
## 3621 IanJamesSeale Albion
## 3622 IanJamesSeale Albion
## 3623 angelneptustar North London
## 3624 bohemianww Ontari-ari-ari-O... Canadians are awesome
## 3625 bohemianww Ontari-ari-ari-O... Canadians are awesome
## 3626 deAdder Halifax
## 3627 okamgoing Navi Mumbai / Bahrain
## 3628 kevinwellsart
## 3629 VideoElephantTV Los Angeles
## 3630 rec777777 South West, England
82
## 3631 rec777777 South West, England
## 3632 rec777777 South West, England
## 3633 rec777777 South West, England
## 3634 mid_zan
## 3635 mid_zan
## 3636 Texlyn82 USA
## 3637 johnmiller United States
## 3638 MaDing6791
## 3639 DesaPhilly Los Angeles, CA
## 3640 JG35580758
## 3641 JG35580758
## 3642 JG35580758
## 3643 JG35580758
## 3644 JG35580758
## 3645 BPositive33
## 3646 BPositive33
## 3647 BPositive33
## 3648 BPositive33
## 3649 BPositive33
## 3650 BPositive33
## 3651 BPositive33
## 3652 BPositive33
## 3653 BPositive33
## 3654 quickbeam71 Kettering, OH
## 3655 Fzeroone2 Lockdown will last for months
## 3656 Fzeroone2 Lockdown will last for months
## 3657 HHamaschiach
## 3658 ntl_angie USA
## 3659 ntl_angie USA
## 3660 SalmanJpt London / Karachi
## 3661 megantheeteachr Houston, TX
## 3662 beauty_maven Washington DC
## 3663 omitbdf RT ≠agree
## 3664 BIGDaddio29 Glasgow, Scotland
## 3665 BIGDaddio29 Glasgow, Scotland
## 3666 BIGDaddio29 Glasgow, Scotland
## 3667 BIGDaddio29 Glasgow, Scotland
## 3668 BIGDaddio29 Glasgow, Scotland
## 3669 BIGDaddio29 Glasgow, Scotland
## 3670 BIGDaddio29 Glasgow, Scotland
## 3671 BIGDaddio29 Glasgow, Scotland
## 3672 drudc77 Washington, DC
## 3673 CyberRev1 Global
## 3674 Amy_Jayee Mississippi, USA
## 3675 Amy_Jayee Mississippi, USA
## 3676 Amy_Jayee Mississippi, USA
## 3677 mandarsavarkar Mumbai
## 3678 BorisJustLies 10 Downing Street
## 3679 BorisJustLies 10 Downing Street
## 3680 TheirThorn Brexitville, England
## 3681 likeacynic
## 3682 highbrowthought Exeter, Devon (UK)
## 3683 highbrowthought Exeter, Devon (UK)
## 3684 hisey_mike New York
83
## 3685 hisey_mike New York
## 3686 cool2_b United States
## 3687 shalompoem
## 3688 TheOtherRBG Arlington, VA
## 3689 strengthtodream Scotland
## 3690 cwesterman72 Oshawa, Ontario
## 3691 Phil_Neilsen London, England
## 3692 Phil_Neilsen London, England
## 3693 Phil_Neilsen London, England
## 3694 buckeyegirlMap Katy, TX
## 3695 buckeyegirlMap Katy, TX
## 3696 andexter New York City
## 3697 ChiomaEucheria Somewhere, in the World
## 3698 highbrowthought Exeter, Devon (UK)
## 3699 TraderJenn Suberbs
## 3700 brijh Outspoken â\231Ž in MN!
## 3701 brijh Outspoken â\231Ž in MN!
## 3702 brijh Outspoken â\231Ž in MN!
## 3703 brijh Outspoken â\231Ž in MN!
## 3704 brijh Outspoken â\231Ž in MN!
## 3705 sherrieshepherd Los Angeles
## 3706 williederrick3 Whitemarsh Island, GA
## 3707 Criticastery London, England
## 3708 Criticastery London, England
## 3709 Serena09386470
## 3710 Serena09386470
## 3711 Serena09386470
## 3712 MDNiteOwl Maryland
## 3713 AngelaC16168415 Wembley, Greater London
## 3714 AngelaC16168415 Wembley, Greater London
## 3715 JG35580758
## 3716 eamonnMon
## 3717 besthealthyou Planet Earth
## 3718 delilahc401
## 3719 TheTrut87905708
## 3720 TheTrut87905708
## 3721 mynameis_ceri London
## 3722 CelebrityPageTV Las Vegas, NV & New York, NY
## 3723 EllensMomma
## 3724 MissNottingHill London
## 3725 MissNottingHill London
## 3726 MissNottingHill London
## 3727 MissNottingHill London
## 3728 drudc77 Washington, DC
## 3729 literatelipsti1 Australia
## 3730 AlphaRichard London, UK
## 3731 amightystream
## 3732 GeezAmazing
## 3733 PaulG_Lon Wandsworth, London
## 3734 kachirilady
## 3735 NapaVoice California, USA
## 3736 NapaVoice California, USA
## 3737 jman37297 beyond the wall
## 3738 DynamiteFroglo
84
## 3739 tstrahan4NY New York City
## 3740 Lotus44171129
## 3741 Lotus44171129
## 3742 drudc77 Washington, DC
## 3743 Mimizwei Global
## 3744 aloragarooo 26 / New York
## 3745 fpjindia India
## 3746 Guardian_Elite Southern California
## 3747 akajames101 Cardiff, Wales
## 3748 akajames101 Cardiff, Wales
## 3749 sauhem26 Gujarat, India
## 3750 MizzBronze Twitter
## 3751 LisalovesBoston
## 3752 restlessnetwork London, England
## 3753 TheDadhiwala Sydney, New South Wales
## 3754 monico636 Michigan, USA
## 3755 drudc77 Washington, DC
## 3756 drudc77 Washington, DC
## 3757 aleisha_71 Australia
## 3758 sussexsquadpod Worldwide
## 3759 Swampdo01077548
## 3760 Jakeleeds88
## 3761 PeterBa82304711 Reading, UK
## 3762 PeterBa82304711 Reading, UK
## 3763 PeterBa82304711 Reading, UK
## 3764 PeterBa82304711 Reading, UK
## 3765 RealTheresaM Maryland & abroad
## 3766 sewbysea
## 3767 TonyCavallo6
## 3768 candor_radical
## 3769 TocquevilleJnr North London
## 3770 jhbriankim New Haven, CT
## 3771 vee_vee_ca
## 3772 AngryGill Hollywood
## 3773 SuperSkylord United Kingdom
## 3774 skipper68uk South Coast, England
## 3775 JaneEliz Raleigh, N.C.
## 3776 love650 California Love!
## 3777 iamnuriareal Sheffield | 27 🦋
## 3778 MeghansMeyhive
## 3779 MeghansMeyhive
## 3780 MeghansMeyhive
## 3781 WillAdamslsd UK/USA
## 3782 BananasRoyally
## 3783 WhiteHouse20200
## 3784 QuentinRendell Adelaide
## 3785 QuentinRendell Adelaide
## 3786 ferozwala E
## 3787 charmingly_Me
## 3788 itismedesu Santa Monica
## 3789 itismedesu Santa Monica
## 3790 scorpionov
## 3791 DuchessJRM Hong Kong Sydney London
## 3792 DuchessJRM Hong Kong Sydney London
85
## 3793 DuchessJRM Hong Kong Sydney London
## 3794 wellsdak Houston, TX
## 3795 Amy_Jayee Mississippi, USA
## 3796 MeghansMeyhive
## 3797 MeghansMeyhive
## 3798 MeghansMeyhive
## 3799 SaraUncensored Orange County, CA
## 3800 ethelik
## 3801 ethelik
## 3802 ethelik
## 3803 jstephenson84 Lakewood, CA
## 3804 BusayoAwe1
## 3805 JJob88
## 3806 angelneptustar North London
## 3807 Medical_Nomad_ Earth
## 3808 Medical_Nomad_ Earth
## 3809 WinifredLovatt Just Outside London UK
## 3810 jtw_25_51 Gods own county.
## 3811 jtw_25_51 Gods own county.
## 3812 jtw_25_51 Gods own county.
## 3813 ryanbut93391049 swindon
## 3814 LakerFan443224
## 3815 LakerFan443224
## 3816 blackpr0t0n
## 3817 KOTOldie
## 3818 KOTOldie
## 3819 CassieDominic Vancouver
## 3820 KyleChristophe9 Brooklyn, NY
## 3821 KyleChristophe9 Brooklyn, NY
## 3822 KyleChristophe9 Brooklyn, NY
## 3823 SodOffMarkle
## 3824 SodOffMarkle
## 3825 spesh1512 Pretoria, South Africa
## 3826 pilutta_dig
## 3827 literatelipsti1 Australia
## 3828 peteriwanoff Corby
## 3829 peteriwanoff Corby
## 3830 hisey_mike New York
## 3831 soundsmove Lesmahagow
## 3832 BukolaAdedeji6
## 3833 knudsen_norma
## 3834 mj_santos Planet Earth
## 3835 mj_santos Planet Earth
## 3836 ClellandGreen Near Philly!
## 3837 AltheaAikens United States
## 3838 AltheaAikens United States
## 3839 kayfidds
## 3840 1974AHSlouie San Francisco Bay Area
## 3841 1974AHSlouie San Francisco Bay Area
## 3842 1974AHSlouie San Francisco Bay Area
## 3843 StateofGrace_90
## 3844 StateofGrace_90
## 3845 StateofGrace_90
## 3846 StateofGrace_90
86
## 3847 ShelbyCoatesTV Georgia, USA
## 3848 IAmSophiaNelson Commonwealth of Virginia
## 3849 dangerouskaos The Echo Below ðŸ•3
## 3850 DemocracyIsDead Wherever the Hell I want to be
## 3851 brcena New Monmouth,NJ
## 3852 brcena New Monmouth,NJ
## 3853 HHamaschiach
## 3854 HHamaschiach
## 3855 Aresnalgr8AGAIN Bergen, Norway
## 3856 big_voice
## 3857 POPSUGARFashion
## 3858 IanJamesSeale Albion
## 3859 3wisemonk3ys California, USA
## 3860 Twisted_Kidney Somerset
## 3861 Twisted_Kidney Somerset
## 3862 Twisted_Kidney Somerset
## 3863 smc429 Los Angeles, CA
## 3864 GigiLeche
## 3865 nonotousky United States
## 3866 nonotousky United States
## 3867 nonotousky United States
## 3868 LeeRendell
## 3869 LeeRendell
## 3870 LeeRendell
## 3871 TheTrut87905708
## 3872 kbp12345
## 3873 stann2 Bournemouth
## 3874 why9999999 United States
## 3875 France24_en Paris, France
## 3876 Black21412
## 3877 Misty__Bella
## 3878 R3B3L_BELLE London & South of Spain,World
## 3879 angelneptustar North London
## 3880 angelneptustar North London
## 3881 angelneptustar North London
## 3882 angelneptustar North London
## 3883 angelneptustar North London
## 3884 MartinWilliam95 Georgia
## 3885 bruthamarc Rochester/Atlanta/Dallas
## 3886 Patterson122877 Saratoga, CA
## 3887 Patterson122877 Saratoga, CA
## 3888 JEFFREYTSCOTT1 Broadview, IL
## 3889 royal_suitor
## 3890 royal_suitor
## 3891 TraceyNew California dreamin’
## 3892 TraceyNew California dreamin’
## 3893 Restoredignity5 United Kingdom
## 3894 Restoredignity5 United Kingdom
## 3895 Ted_Yeoman Europe
## 3896 OhSoFrieda
## 3897 OhSoFrieda
## 3898 OhSoFrieda
## 3899 OhSoFrieda
## 3900 OhSoFrieda
87
## 3901 OhSoFrieda
## 3902 OhSoFrieda
## 3903 OhSoFrieda
## 3904 Netsbridge Space City, Lone Star State
## 3905 Giles_House Woodstock, GA
## 3906 tico75 Brooklyn
## 3907 missZimunya1 Green side
## 3908 claricebailey England, United Kingdom
## 3909 claricebailey England, United Kingdom
## 3910 GunnersSign
## 3911 Rainey_DEII
## 3912 Rainey_DEII
## 3913 Rainey_DEII
## 3914 Rainey_DEII
## 3915 Mbenarc
## 3916 Mbenarc
## 3917 Mbenarc
## 3918 Ashley_A_Holt Dallas, TX
## 3919 cool2_b United States
## 3920 cool2_b United States
## 3921 CDFleming5
## 3922 HumptyD49831913 La La Land 🇺🇸
## 3923 HumptyD49831913 La La Land 🇺🇸
## 3924 HumptyD49831913 La La Land 🇺🇸
## 3925 Goldie131 Minnesota, USA
## 3926 bananna_and Essex United Kingdom
## 3927 freedom2015glo NYC
## 3928 Clark33Clark New York, New York
## 3929 Clark33Clark New York, New York
## 3930 Defnotmagsimoo
## 3931 moni_urch
## 3932 LynneKLynch1 Dayton OhioUSA #DaytonStrong
## 3933 LynneKLynch1 Dayton OhioUSA #DaytonStrong
## 3934 anoelsevot
## 3935 anoelsevot
## 3936 anoelsevot
## 3937 montyollie Ontario, Canada
## 3938 HorrorForgotten
## 3939 HorrorForgotten
## 3940 pcgonenuts South East, England, UK
## 3941 pcgonenuts South East, England, UK
## 3942 iPolitics_pk Eskilstuna, Sverige
## 3943 JohnOSullivan36 Prahran, Melbourne
## 3944 hotelkeys New Jersey
## 3945 hotelkeys New Jersey
## 3946 hotelkeys New Jersey
## 3947 Davorghini Australia
## 3948 Bella_Italia609 New Jersey, USA
## 3949 ckbrouwer1 Sterling Heights, Michigan USA
## 3950 0livepie
## 3951 thepatriotpam Washington, DC
## 3952 IElectrocuted Philadelphia, PA
## 3953 i_AmMyBrand United States
## 3954 i_AmMyBrand United States
88
## 3955 peaceloverearth
## 3956 TytheWriter
## 3957 Real_Share2
## 3958 RebeccaAguilar Texas, USA
## 3959 RebeccaAguilar Texas, USA
## 3960 DuchessJRM Hong Kong Sydney London
## 3961 DuchessJRM Hong Kong Sydney London
## 3962 jenifer__5 New Jersey, USA
## 3963 Beautrotting Wilton Manors, Florida
## 3964 Beautrotting Wilton Manors, Florida
## 3965 ethelik
## 3966 CKapinsky Bethesda, MD
## 3967 OpinePolls Salach, Germany
## 3968 pechazclark St. Louis, Missouri
## 3969 pechazclark St. Louis, Missouri
## 3970 Chuckmeg close to snacks
## 3971 Chuckmeg close to snacks
## 3972 Chuckmeg close to snacks
## 3973 memymonicalink New York City
## 3974 VikMcCole United Kingdom
## 3975 VikMcCole United Kingdom
## 3976 FinancialManna Worldwide!
## 3977 BrandMeEbony Global
## 3978 JuJubeTime
## 3979 Grneyedgirlie Up da street & round da corner
## 3980 RealSoyinkaJnr Everywhere You Go
## 3981 RealSoyinkaJnr Everywhere You Go
## 3982 HilliusGlitch England
## 3983 HilliusGlitch England
## 3984 HilliusGlitch England
## 3985 InezShooter Here.
## 3986 wittashburn7011
## 3987 CLE_SHONUFF Virginia, USA
## 3988 Moulay_Zaid London/GCC
## 3989 DinosaurDisley Liverpool, England
## 3990 important_sam
## 3991 important_sam
## 3992 important_sam
## 3993 important_sam
## 3994 donnovanbennett
## 3995 Restoredignity5 United Kingdom
## 3996 TheTrut87905708
## 3997 TheTrut87905708
## 3998 TheTrut87905708
## 3999 besthealthyou Planet Earth
## 4000 LGM777 Cleveland, Ohio
## 4001 LGM777 Cleveland, Ohio
## 4002 LGM777 Cleveland, Ohio
## 4003 Justmythots8 London, England
## 4004 Justmythots8 London, England
## 4005 Omahuson Auckland New Zealand
## 4006 Barnard_Castle1
## 4007 ZeliaLH Tokyo, Japan
## 4008 ZeliaLH Tokyo, Japan
89
## 4009 ZeliaLH Tokyo, Japan
## 4010 mytwosince
## 4011 mytwosince
## 4012 morningshowca
## 4013 OnceaDerrygirl Somewhere in UK
## 4014 OnceaDerrygirl Somewhere in UK
## 4015 SojournerT2 USA
## 4016 SojournerT2 USA
## 4017 MarytheRobot California, United States
## 4018 MarytheRobot California, United States
## 4019 dreemonmusic Los Angeles, CA
## 4020 Alex_S2357
## 4021 OhBrokenBritain
## 4022 Standing_Fox
## 4023 mosestein Nairobi, Kenya
## 4024 mosestein Nairobi, Kenya
## 4025 tayobero Toronto
## 4026 iloveanchet ÃœT: 51.4876579,-0.1116655
## 4027 iloveanchet ÃœT: 51.4876579,-0.1116655
## 4028 mrjustsaying Manhattan, NY
## 4029 mrjustsaying Manhattan, NY
## 4030 rupert_baxter
## 4031 meine__schatz
## 4032 BongCrisby Mint Aero
## 4033 BongCrisby Mint Aero
## 4034 Standing_Fox
## 4035 AngieGreaves London, England
## 4036 foxesdale
## 4037 BorisJustLies 10 Downing Street
## 4038 BorisJustLies 10 Downing Street
## 4039 BorisJustLies 10 Downing Street
## 4040 BorisJustLies 10 Downing Street
## 4041 BorisJustLies 10 Downing Street
## 4042 Thebuddhasdog
## 4043 Thebuddhasdog
## 4044 Banished2Live London
## 4045 multioptioned Australia
## 4046 Telatruth
## 4047 Telatruth
## 4048 drudc77 Washington, DC
## 4049 drudc77 Washington, DC
## 4050 AmberLouiiiise South East, England
## 4051 LizYoun55179126
## 4052 LizYoun55179126
## 4053 LizYoun55179126
## 4054 LizYoun55179126
## 4055 LizYoun55179126
## 4056 sorebrokendad At home
## 4057 sorebrokendad At home
## 4058 sorebrokendad At home
## 4059 KitTweeter London, United Kingdom
## 4060 KitTweeter London, United Kingdom
## 4061 omekongo Washington, DC
## 4062 zungumuza Outthere
90
## 4063 AKansan63 London, England
## 4064 AKansan63 London, England
## 4065 MartinWilliam95 Georgia
## 4066 NewsGabe
## 4067 WillAdamslsd UK/USA
## 4068 adamzyglis Buffalo, NY
## 4069 shall_try Botany, Sydney
## 4070 shall_try Botany, Sydney
## 4071 SherineWilson Motherwell, Scotland
## 4072 PaulG_Lon Wandsworth, London
## 4073 aryan_kapoor1 London, England
## 4074 justymike529 Detroit, MI
## 4075 shawadli Los Angeles
## 4076 Ose2021
## 4077 ritabwunicef
## 4078 ritabwunicef
## 4079 SmashCarm United States
## 4080 MorayaLMFT Beacon, NY
## 4081 nadleics Leicestershire, UK
## 4082 AratiSinghR1 Texas, USA
## 4083 colbaltsparkle North Yorkshire
## 4084 312shelly3
## 4085 312shelly3
## 4086 312shelly3
## 4087 Alamo16KP_2013 Texas
## 4088 Alamo16KP_2013 Texas
## 4089 Alamo16KP_2013 Texas
## 4090 OllyPubTrade United Kingdom
## 4091 OllyPubTrade United Kingdom
## 4092 seekandfind23
## 4093 SummerRhapsody UK 🇪🇺
## 4094 AltheaAikens United States
## 4095 gnugut13 Ohio
## 4096 shesaidsports8 TV and RADIO
## 4097 Termon15
## 4098 Termon15
## 4099 Termon15
## 4100 bullriders1 Balboa Peninsula, SoCal USA
## 4101 juliagallardo United States
## 4102 JazziebelleTV NYC
## 4103 PressOfficeMan Sussex, Berkshire, London
## 4104 PressOfficeMan Sussex, Berkshire, London
## 4105 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 4106 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 4107 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 4108 DANETRAIN05 Sparta, WI
## 4109 QueenLikeSass
## 4110 donnabrazile USA
## 4111 donnabrazile USA
## 4112 VikramBarhat Canada
## 4113 guptaempire
## 4114 TalesPan London, England
## 4115 MohamoudGaildon Peoria, IL, USA
## 4116 andexter New York City
91
## 4117 Harriso42911034
## 4118 ZeldaVegas
## 4119 VZabbal
## 4120 JDmaX5k
## 4121 edineysantana
## 4122 s1m0nM3rcury UK
## 4123 s1m0nM3rcury UK
## 4124 s1m0nM3rcury UK
## 4125 MyDiamondHands Dallas, TX
## 4126 dazzlegal United States and Hogwarts
## 4127 Rosiedays12
## 4128 Rosiedays12
## 4129 SuperSoulConve1
## 4130 SuperSoulConve1
## 4131 SuperSoulConve1
## 4132 important_sam
## 4133 important_sam
## 4134 dannyLwalker Bristol, United Kingdom
## 4135 AlwaysRight111
## 4136 AlwaysRight111
## 4137 SmilePrettyLady
## 4138 Tami2cents New Englander
## 4139 SaarioBrandon Granada Hills, Los Angeles
## 4140 BlackAgitator Persevering
## 4141 BlackAgitator Persevering
## 4142 GwenJBrewer London, England
## 4143 GwenJBrewer London, England
## 4144 jennifer_su Johannesburg, South Africa
## 4145 justdoodirty3 Manhattan, NY
## 4146 justdoodirty3 Manhattan, NY
## 4147 justdoodirty3 Manhattan, NY
## 4148 justdoodirty3 Manhattan, NY
## 4149 justdoodirty3 Manhattan, NY
## 4150 PereraSamdhan United Kingdom
## 4151 PereraSamdhan United Kingdom
## 4152 jimmpowell Bristol, London, Noosa.
## 4153 MeghansMole California, USA
## 4154 IanJamesSeale Albion
## 4155 softballfreakz Lake Charles, LA
## 4156 inhisserviceat1
## 4157 omitbdf RT ≠agree
## 4158 liloo19650780 Moustic Island palace
## 4159 liloo19650780 Moustic Island palace
## 4160 JonLopez88
## 4161 JonLopez88
## 4162 RealSoyinkaJnr Everywhere You Go
## 4163 jjpthe2 USA
## 4164 VZabbal
## 4165 Wrestfull The Big Blue Marble
## 4166 ArchewellBaby baby Archie said Ah aaaah ah.
## 4167 DebraGuild Ft. Lauderdale, FL
## 4168 DebraGuild Ft. Lauderdale, FL
## 4169 AKansan63 London, England
## 4170 AKansan63 London, England
92
## 4171 AKansan63 London, England
## 4172 justice59040798
## 4173 justice59040798
## 4174 justice59040798
## 4175 0livepie
## 4176 0livepie
## 4177 JoaquinCM
## 4178 JoaquinCM
## 4179 Mill3nnialMH England, United Kingdom
## 4180 Mill3nnialMH England, United Kingdom
## 4181 ramenbarbie
## 4182 SoapOperaSpy
## 4183 brijh Outspoken â\231Ž in MN!
## 4184 brijh Outspoken â\231Ž in MN!
## 4185 brijh Outspoken â\231Ž in MN!
## 4186 brijh Outspoken â\231Ž in MN!
## 4187 brijh Outspoken â\231Ž in MN!
## 4188 G73164334
## 4189 AKansan63 London, England
## 4190 AKansan63 London, England
## 4191 AKansan63 London, England
## 4192 YorkLisa Southeastern US
## 4193 ShiningEarth Detroit & Houston
## 4194 drudc77 Washington, DC
## 4195 AudreyWSBTV New York/Atlanta
## 4196 AudreyWSBTV New York/Atlanta
## 4197 IamRonNelsonJr1
## 4198 martinradio United Kingdom
## 4199 HumpyRu
## 4200 HumpyRu
## 4201 HumpyRu
## 4202 MixerPsg Manchester
## 4203 Bubblejet The Interweb
## 4204 Bubblejet The Interweb
## 4205 BrknRoad27 United States
## 4206 JimmyPlankRoad San Diego, CA
## 4207 meine__schatz
## 4208 meine__schatz
## 4209 meine__schatz
## 4210 bondwooley New York City
## 4211 WestCameroons Southern Cameroons
## 4212 TOdiary Toronto, Ontario
## 4213 mid_zan
## 4214 icur_here2 Queensland, Australia
## 4215 icur_here2 Queensland, Australia
## 4216 icur_here2 Queensland, Australia
## 4217 PeepingMoon PeepingMoon HQ, Mumbai
## 4218 HBassols
## 4219 DuchessJRM Hong Kong Sydney London
## 4220 nonotousky United States
## 4221 nonotousky United States
## 4222 CartooningPeace Paris, France
## 4223 CartooningPeace Paris, France
## 4224 Robin_Volpi Chicago, IL
93
## 4225 Robin_Volpi Chicago, IL
## 4226 Robin_Volpi Chicago, IL
## 4227 Robin_Volpi Chicago, IL
## 4228 Vexation101
## 4229 mamamuse Blighty
## 4230 mamamuse Blighty
## 4231 OmniGovernment Universe 001, Omniverse
## 4232 ecochicjasmine
## 4233 ZackUK20 United Kingdom
## 4234 RachelintheOC #SexAbuseChat Tues 6 pm pst!
## 4235 prpdubent 🇨🇦Vancouver, Canada🇨🇦
## 4236 prpdubent 🇨🇦Vancouver, Canada🇨🇦
## 4237 3LWTV Atlanta
## 4238 WhoSaidWhatOMG United States/ United Kingdom
## 4239 mackette52 Poconos, USA
## 4240 kachirilady
## 4241 LVie30
## 4242 JimmyPlankRoad San Diego, CA
## 4243 LGM777 Cleveland, Ohio
## 4244 LGM777 Cleveland, Ohio
## 4245 LGM777 Cleveland, Ohio
## 4246 LGM777 Cleveland, Ohio
## 4247 LGM777 Cleveland, Ohio
## 4248 NadirCarlsonWI
## 4249 BrandMeEbony Global
## 4250 JG35580758
## 4251 JG35580758
## 4252 JG35580758
## 4253 JordanJordanShw New Orleans
## 4254 quiltamish North Druid Hills, GA
## 4255 RHPB3
## 4256 Abdi_Segulle Somaliland
## 4257 Abdi_Segulle Somaliland
## 4258 Abdi_Segulle Somaliland
## 4259 davidcrais NOLA Distributed
## 4260 wiselatinaslink USA
## 4261 wiselatinaslink USA
## 4262 DryHumorBabe United States
## 4263 Crooklar Terms and Conditions Apply
## 4264 LGM777 Cleveland, Ohio
## 4265 LGM777 Cleveland, Ohio
## 4266 DuchessJRM Hong Kong Sydney London
## 4267 DuchessJRM Hong Kong Sydney London
## 4268 _daniellemakeup
## 4269 PSilvertongue2
## 4270 chrissiemac2424 Boston, MA
## 4271 mimi66katt Orlando, Florida
## 4272 katesterne Constantly Seeking Sunshine
## 4273 sussexsquadpod Worldwide
## 4274 sussexsquadpod Worldwide
## 4275 sussexsquadpod Worldwide
## 4276 PennPopPop This side of dirt.
## 4277 TheStephenRalph Ayr, ðŸ\217´ó \201§ó \201¢ó \2013ó \201£ó \201´ó \201¿ 🇬🇧
## 4278 TheStephenRalph Ayr, ðŸ\217´ó \201§ó \201¢ó \2013ó \201£ó \201´ó \201¿ 🇬🇧
94
## 4279 WestCameroons Southern Cameroons
## 4280 masi_va
## 4281 ImanHassan612
## 4282 _Rapscalion Palmdale, CA
## 4283 _Rapscalion Palmdale, CA
## 4284 _Rapscalion Palmdale, CA
## 4285 NicolaADeMarco Peekskill, New York
## 4286 zoobomax Australia
## 4287 zoobomax Australia
## 4288 Barbra08757698
## 4289 GeekBrenda Seattle
## 4290 drudc77 Washington, DC
## 4291 CeeJervis
## 4292 CeeJervis
## 4293 CeeJervis
## 4294 CeeJervis
## 4295 CeeJervis
## 4296 ashleo05 Paramus, NJ
## 4297 NoMaamMwCP Chicago, IL
## 4298 Melody22M Universe
## 4299 CDFleming5
## 4300 CDFleming5
## 4301 Hugos_There_ Manchester, England
## 4302 Activa999666 Universe Way,. Universe!
## 4303 Activa999666 Universe Way,. Universe!
## 4304 ETCanada Canada
## 4305 BadgerOfSteel England
## 4306 BadgerOfSteel England
## 4307 BadgerOfSteel England
## 4308 _JoMarney
## 4309 RickyNolan74 England, United Kingdom
## 4310 chatter16979696
## 4311 chatter16979696
## 4312 RoisinBMusic Ireland
## 4313 BelleAudiophile California
## 4314 BelleAudiophile California
## 4315 Grneyedgirlie Up da street & round da corner
## 4316 Grneyedgirlie Up da street & round da corner
## 4317 MarkFoxNews United Kingdom 🇬🇧
## 4318 MarkFoxNews United Kingdom 🇬🇧
## 4319 JeepFreedom Florida
## 4320 Hobart1976 Against the dark side
## 4321 nii_molai London, England
## 4322 nii_molai London, England
## 4323 nii_molai London, England
## 4324 AfricaGlobalMag Sandton, South Africa
## 4325 AfricaGlobalMag Sandton, South Africa
## 4326 klizcrown
## 4327 clockoutwars
## 4328 politicsastar United Kingdom
## 4329 rachelj02017275
## 4330 rachelj02017275
## 4331 rachelj02017275
## 4332 rachelj02017275
95
## 4333 rachelj02017275
## 4334 JoRichardsKent
## 4335 JoRichardsKent
## 4336 JoRichardsKent
## 4337 justchantele
## 4338 jamarcusw4 Indianapolis, IN
## 4339 angelicilda New York, England
## 4340 PeepingMoon PeepingMoon HQ, Mumbai
## 4341 ntl_angie USA
## 4342 CBCAElite1 Los Angeles, CA
## 4343 CBCAElite1 Los Angeles, CA
## 4344 CBCAElite1 Los Angeles, CA
## 4345 BattenOn United Kingdom
## 4346 BattenOn United Kingdom
## 4347 AKansan63 London, England
## 4348 GirlsOnFilm4 Atlanta, GA
## 4349 royal_suitor
## 4350 Skylar_Writer Renting space in yâ\200\231all heads
## 4351 Skylar_Writer Renting space in yâ\200\231all heads
## 4352 Dnyan_murtyy
## 4353 Misty__Bella
## 4354 newyorker9_28 Bronx, NY
## 4355 JimDelos147
## 4356 JimDelos147
## 4357 SirSeaside United Kingdom & Worldwide
## 4358 erica_perry
## 4359 TradeCNBC Philly
## 4360 TradeCNBC Philly
## 4361 GionGior London
## 4362 EternalSublimeJ
## 4363 Gillianmc Northern Ireland, United Kingdom
## 4364 Phil_Neilsen London, England
## 4365 Phil_Neilsen London, England
## 4366 Phil_Neilsen London, England
## 4367 Phil_Neilsen London, England
## 4368 Phil_Neilsen London, England
## 4369 Phil_Neilsen London, England
## 4370 POPSUGARMoms NYC
## 4371 Drjot London, W Africa, USA & Canada
## 4372 Drjot London, W Africa, USA & Canada
## 4373 svsfsu29 NewBrunswick,Tally,Tampa
## 4374 One_WomanRiot Wherever I Need to Be
## 4375 pinkybluetick From Nunyabidniz, USA
## 4376 meine__schatz
## 4377 alana_mac13 Inverness
## 4378 MrsVSNC09 NC
## 4379 CostanzaNOCCHI Firenze, Toscana
## 4380 YNB Fiddling with your mind
## 4381 jbmtweetz San Francisco | Santa Fe
## 4382 jbmtweetz San Francisco | Santa Fe
## 4383 jbmtweetz San Francisco | Santa Fe
## 4384 jbmtweetz San Francisco | Santa Fe
## 4385 Cupen_Ames Los Angeles, CA
## 4386 MyPresident21 Everywhere
96
## 4387 MyPresident21 Everywhere
## 4388 MyPresident21 Everywhere
## 4389 MyPresident21 Everywhere
## 4390 muhitreza World
## 4391 muhitreza World
## 4392 muhitreza World
## 4393 alessporr
## 4394 IAmSophiaNelson Commonwealth of Virginia
## 4395 DavidUlster statelet @forgottenpeople
## 4396 DavidUlster statelet @forgottenpeople
## 4397 DavidUlster statelet @forgottenpeople
## 4398 DavidUlster statelet @forgottenpeople
## 4399 DavidUlster statelet @forgottenpeople
## 4400 DeepStateGypsy Infatroopen, MN
## 4401 highbrowthought Exeter, Devon (UK)
## 4402 DennyAlfonso New York, USA
## 4403 naomitj Kissimmee, FL
## 4404 naomitj Kissimmee, FL
## 4405 FeedingdaTurkey
## 4406 itsKEENON In Gods Hands
## 4407 winterfell_home Earth.
## 4408 KyleHunter Los Angeles, CA
## 4409 KyleHunter Los Angeles, CA
## 4410 KyleHunter Los Angeles, CA
## 4411 Dakneez Halifax, Nova Scotia
## 4412 PhotogDwight Richmond, VA USA
## 4413 Everybodychill1
## 4414 Everybodychill1
## 4415 CindyGaitherPHX Phoenix, AZ
## 4416 flakygurl London, England
## 4417 ClaretKev1980 Bridgend, South Wales
## 4418 soldes18
## 4419 mjohnso27
## 4420 mjohnso27
## 4421 kristenmeinzer Brooklyn, NY
## 4422 Masafi_P DC Occupied Zone
## 4423 DrSarah1on1 Boston
## 4424 SurprisedWhy
## 4425 SurprisedWhy
## 4426 SummerRhapsody UK 🇪🇺
## 4427 DinosaurDisley Liverpool, England
## 4428 DinosaurDisley Liverpool, England
## 4429 DinosaurDisley Liverpool, England
## 4430 icitizen12 Third rock from the Sun
## 4431 yasir_haider Sydney, New South Wales
## 4432 TanyaSayz United Kingdom
## 4433 CEO_Sips South Africa Johannesburg
## 4434 FuckYouJackDor4 London and NY
## 4435 FuckYouJackDor4 London and NY
## 4436 FuckYouJackDor4 London and NY
## 4437 brcena New Monmouth,NJ
## 4438 muhitreza World
## 4439 muhitreza World
## 4440 audreypg12 Buckhaven
97
## 4441 audreypg12 Buckhaven
## 4442 audreypg12 Buckhaven
## 4443 martinpoler Romford, London
## 4444 martinpoler Romford, London
## 4445 MixerPsg Manchester
## 4446 YoDeVa
## 4447 islandsenorita Naath, Essos
## 4448 WinifredLovatt Just Outside London UK
## 4449 contour88632203
## 4450 contour88632203
## 4451 contour88632203
## 4452 nerdlingerkelly louisiana
## 4453 BREESTIFER Texas, USA
## 4454 ABWP2002
## 4455 Jannatu13692481
## 4456 crystalbroyles
## 4457 ronanmadigan Limerick
## 4458 ronanmadigan Limerick
## 4459 OmniGovernment Universe 001, Omniverse
## 4460 UrFaveFltAttndt Depends when you ask
## 4461 UrFaveFltAttndt Depends when you ask
## 4462 sosaysmarc Planet Earth
## 4463 CeeJervis
## 4464 AngelaC16168415 Wembley, Greater London
## 4465 Fran_Neena20409 Minnesota, USA
## 4466 433Rachel
## 4467 HOPress Philadelphia, PA
## 4468 stevotapper wherever i lay my hat
## 4469 stevotapper wherever i lay my hat
## 4470 karimahmusik
## 4471 Serena09386470
## 4472 Serena09386470
## 4473 IAmMargoGrant Cambridge, MA U.S.A.
## 4474 AngieGreaves London, England
## 4475 AngieGreaves London, England
## 4476 AngieGreaves London, England
## 4477 AngieGreaves London, England
## 4478 singlecitygal Usa
## 4479 EenerNo Canada
## 4480 EenerNo Canada
## 4481 EenerNo Canada
## 4482 LYNNMILDNER London Suburbs
## 4483 TheTrut87905708
## 4484 KHen06 Charlotte
## 4485 C_W_UK Hyères, France
## 4486 royal_suitor
## 4487 BorisJustLies 10 Downing Street
## 4488 BorisJustLies 10 Downing Street
## 4489 BorisJustLies 10 Downing Street
## 4490 BorisJustLies 10 Downing Street
## 4491 BorisJustLies 10 Downing Street
## 4492 BorisJustLies 10 Downing Street
## 4493 BorisJustLies 10 Downing Street
## 4494 BorisJustLies 10 Downing Street
98
## 4495 myblack_izbold
## 4496 lisakayemundy Unmasked, CA
## 4497 sannetje_26
## 4498 sannetje_26
## 4499 sannetje_26
## 4500 sannetje_26
## 4501 Tellitl66077922
## 4502 itismedesu Santa Monica
## 4503 itismedesu Santa Monica
## 4504 important_sam
## 4505 important_sam
## 4506 anea194
## 4507 anea194
## 4508 patsdumas Living at The Jersey Shore
## 4509 angelneptustar North London
## 4510 angelneptustar North London
## 4511 missleighding1 London, England
## 4512 GovSherazKhan
## 4513 sarahprout Instagram: sarahprout
## 4514 Jason35782733
## 4515 Jason35782733
## 4516 Jason35782733
## 4517 Jason35782733
## 4518 IsleOfSceptre
## 4519 IsleOfSceptre
## 4520 IsleOfSceptre
## 4521 gatitonic1968 Canada
## 4522 GerriManderink ...remote.
## 4523 GerriManderink ...remote.
## 4524 Rafaeell66 United States
## 4525 drudc77 Washington, DC
## 4526 BloodMeghans
## 4527 BloodMeghans
## 4528 MartinWilliam95 Georgia
## 4529 QDalahorses
## 4530 Mikeeweb Andover
## 4531 WillAdamslsd UK/USA
## 4532 WelshCelt Wales, United Kingdom
## 4533 BloodMeghans
## 4534 Neilfan12 United States
## 4535 colbaltsparkle North Yorkshire
## 4536 colbaltsparkle North Yorkshire
## 4537 THE_BLK_HOUSE Atlanta, GA
## 4538 MrsLovesNature
## 4539 MartMcQ1
## 4540 joerave
## 4541 joerave
## 4542 meteebee
## 4543 Melody22M Universe
## 4544 LaksshyaAdvani
## 4545 WillAdamslsd UK/USA
## 4546 WillAdamslsd UK/USA
## 4547 S99Arn Thetford, England
## 4548 007Dufour007 Bordeaux France
99
## 4549 Guardian_Elite Southern California
## 4550 Guardian_Elite Southern California
## 4551 WhiteHouse20200
## 4552 Hungryrican68 Mayberry
## 4553 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 4554 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 4555 ntl_angie USA
## 4556 nevbavAlt
## 4557 nevbavAlt
## 4558 nevbavAlt
## 4559 besthealthyou Planet Earth
## 4560 YaFolksNemJo Clarkston, GA
## 4561 TKPHockey Henderson and Huntington Beach
## 4562 BearCares8
## 4563 BearCares8
## 4564 mackman
## 4565 purrplepumpkinn
## 4566 purrplepumpkinn
## 4567 Mogsy22171230
## 4568 moondusty68 England, United Kingdom
## 4569 AndreasBoos USA
## 4570 jakeyboie Hercules, CA
## 4571 WhoSaidWhatOMG United States/ United Kingdom
## 4572 TheVotingNerd New York, USA
## 4573 AKansan63 London, England
## 4574 AKansan63 London, England
## 4575 TheTrut87905708
## 4576 JohannaWhite
## 4577 FutureDr_Drea Washington, DC
## 4578 FutureDr_Drea Washington, DC
## 4579 FutureDr_Drea Washington, DC
## 4580 FutureDr_Drea Washington, DC
## 4581 SingItPretty Albuquerque, NM
## 4582 SingItPretty Albuquerque, NM
## 4583 SingItPretty Albuquerque, NM
## 4584 Malchick7
## 4585 Malchick7
## 4586 FredGanza7 Earth
## 4587 FredGanza7 Earth
## 4588 sharronrene_
## 4589 Restoredignity5 United Kingdom
## 4590 myfairladyt Maryland
## 4591 ueverwonderwhy United States
## 4592 hisey_mike New York
## 4593 nabongo_mumias
## 4594 bl1ssfulcrystal Los Angeles, CA
## 4595 GuyFawk95323763 Traveling
## 4596 GuyFawk95323763 Traveling
## 4597 GuyFawk95323763 Traveling
## 4598 meine__schatz
## 4599 CeeJervis
## 4600 CeeJervis
## 4601 arovakay
## 4602 DuchessJRM Hong Kong Sydney London
100
## 4603 DuchessJRM Hong Kong Sydney London
## 4604 SoniRw San Francisco 🇺🇸, 🇦🇺, 🇮ðŸ‡3
## 4605 rainbow_irshc
## 4606 willpowerentllc Brooklyn, NY
## 4607 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 4608 deAdder Halifax
## 4609 deAdder Halifax
## 4610 shopgirl479 Blue In A Red state
## 4611 shopgirl479 Blue In A Red state
## 4612 realityof_tv
## 4613 realityof_tv
## 4614 TheTrut87905708
## 4615 jlmartin1234
## 4616 jlmartin1234
## 4617 jlmartin1234
## 4618 gymandlifeUK Lancashire
## 4619 SkipMcQ Charleston SC
## 4620 SkipMcQ Charleston SC
## 4621 MartinWilliam95 Georgia
## 4622 LGM777 Cleveland, Ohio
## 4623 LGM777 Cleveland, Ohio
## 4624 LGM777 Cleveland, Ohio
## 4625 Restoredignity5 United Kingdom
## 4626 MrsLovesNature
## 4627 MrsLovesNature
## 4628 MrsLovesNature
## 4629 AlanaStott
## 4630 AlanaStott
## 4631 gavinantonyrice London, England
## 4632 Marvcovi Worldwide
## 4633 Marvcovi Worldwide
## 4634 Marvcovi Worldwide
## 4635 DuchessJRM Hong Kong Sydney London
## 4636 DuchessJRM Hong Kong Sydney London
## 4637 NYtweetie Manhattan/London
## 4638 IngweKennedy Kalamazoo, Michigan
## 4639 IngweKennedy Kalamazoo, Michigan
## 4640 uncrown3d_kvng Atlanta, GA
## 4641 MerlivnaMonroe
## 4642 MerlivnaMonroe
## 4643 colishia Greenville, NC
## 4644 evelyncolleen
## 4645 KemptonLoryn Vermont, USA
## 4646 Zoeroux1
## 4647 discu55
## 4648 discu55
## 4649 _GiftofGab_ New York
## 4650 PeterJMorgan1 United Kingdom
## 4651 PeterJMorgan1 United Kingdom
## 4652 Megancartwrig11 scotland
## 4653 Megancartwrig11 scotland
## 4654 PSilvertongue2
## 4655 DeathlyFree
## 4656 ErroneousJURIS1 Mars East, Mars
101
## 4657 JobieseCPA Nairobi, Kenya
## 4658 GuyFawk95323763 Traveling
## 4659 GuyFawk95323763 Traveling
## 4660 angelneptustar North London
## 4661 angelneptustar North London
## 4662 angelneptustar North London
## 4663 angelneptustar North London
## 4664 Darkvader1776
## 4665 cris_ybarra Austin, TX
## 4666 Shaheen05183404
## 4667 JessTraxler
## 4668 jandra5262 Florida, USA
## 4669 kelseypcoffey Athens, GA
## 4670 kelseypcoffey Athens, GA
## 4671 Bonn1eGreer London UK and beyond.
## 4672 severencemacla1 Florida, USA
## 4673 Pousspouss Nowhere really
## 4674 Pousspouss Nowhere really
## 4675 JenFullick England, United Kingdom
## 4676 JenFullick England, United Kingdom
## 4677 JenFullick England, United Kingdom
## 4678 nmuffuh New York
## 4679 gryph82 St Louis, MO
## 4680 CiA_AREA_51 Mecca Inside Kaaba 🕋
## 4681 realayesation
## 4682 drudc77 Washington, DC
## 4683 MoRaY1959 In the Middle of Nowhere
## 4684 Aryathatbitch
## 4685 geogypsy Rochester, NY
## 4686 Anglais89793137 United Kingdom
## 4687 Anglais89793137 United Kingdom
## 4688 JacobGaIIagher Emmadale village, Yorkshire
## 4689 JacobGaIIagher Emmadale village, Yorkshire
## 4690 JacobGaIIagher Emmadale village, Yorkshire
## 4691 Priti_Shoes
## 4692 coolAikenchica Aiken, South Carolina
## 4693 coolAikenchica Aiken, South Carolina
## 4694 coolAikenchica Aiken, South Carolina
## 4695 coolAikenchica Aiken, South Carolina
## 4696 LGM777 Cleveland, Ohio
## 4697 jbw1837 Washington, DC
## 4698 drudc77 Washington, DC
## 4699 drudc77 Washington, DC
## 4700 angelneptustar North London
## 4701 WhiteHouse20200
## 4702 WhiteHouse20200
## 4703 ronnabr United States
## 4704 dailystar London
## 4705 dailystar London
## 4706 Graciousnbeauty
## 4707 DuchessJRM Hong Kong Sydney London
## 4708 DuchessJRM Hong Kong Sydney London
## 4709 DuchessJRM Hong Kong Sydney London
## 4710 DuchessJRM Hong Kong Sydney London
102
## 4711 DuchessJRM Hong Kong Sydney London
## 4712 DuchessJRM Hong Kong Sydney London
## 4713 MamaBurf
## 4714 MamaBurf
## 4715 MamaBurf
## 4716 ShelettaIsFunny Cottage Grove, MN
## 4717 ShelettaIsFunny Cottage Grove, MN
## 4718 kristenmeinzer Brooklyn, NY
## 4719 kristenmeinzer Brooklyn, NY
## 4720 StJoPeninsulaFL Florida, Arkansas, Oklahoma.
## 4721 Vavra29
## 4722 Vavra29
## 4723 jamesak47 London
## 4724 jamesak47 London
## 4725 pierremichelDE2
## 4726 SummerRhapsody UK 🇪🇺
## 4727 SummerRhapsody UK 🇪🇺
## 4728 SummerRhapsody UK 🇪🇺
## 4729 Friggy Cornwall, England, Europe.
## 4730 hrhcate
## 4731 SarahAndDC UK
## 4732 SarahAndDC UK
## 4733 VZabbal
## 4734 MeghanFamily
## 4735 andexter New York City
## 4736 MeghanBeeby rural CNY, U.S. {PA, IA, Éire}
## 4737 jorimarcus Chicago, IL
## 4738 NatashaLunin2 United States
## 4739 nikolinapapa North America
## 4740 paulatoti
## 4741 Helderbueno_ Campinas
## 4742 Helderbueno_ Campinas
## 4743 lotusfilmgirl Los Angeles/Hanalei/NYC/Malibu
## 4744 JG35580758
## 4745 JG35580758
## 4746 ElleMarie1970 Florida, USA
## 4747 ElleMarie1970 Florida, USA
## 4748 TV_NEWS_24h
## 4749 nikolinapapa North America
## 4750 nataschaadama Europe
## 4751 aeidinger Washington, DC
## 4752 diamondzinher
## 4753 diamondzinher
## 4754 diamondzinher
## 4755 emotionhart Honeymoon island
## 4756 IAmSophiaNelson Commonwealth of Virginia
## 4757 FredGanza7 Earth
## 4758 Stephen1010102
## 4759 Stephen1010102
## 4760 Stephen1010102
## 4761 Stephen1010102
## 4762 Bliss11342962
## 4763 Bliss11342962
## 4764 hollywood_com
103
## 4765 WelshCelt Wales, United Kingdom
## 4766 MannyFrimps Accra, Ghana 🇬ðŸ‡
## 4767 MannyFrimps Accra, Ghana 🇬ðŸ‡
## 4768 Catzear36 Virginia
## 4769 badlandj somewhere on a big blue ball
## 4770 badlandj somewhere on a big blue ball
## 4771 AndreaShore4
## 4772 AndreaShore4
## 4773 kierankenzi Southampton/London/Liverpool
## 4774 kierankenzi Southampton/London/Liverpool
## 4775 Olayiwola_alex New York, USA
## 4776 DamiEluyera Toronto, Ontario
## 4777 PlukPet
## 4778 moyocoyotzinnow
## 4779 Mary_Mullarkey_ Chicago, IL, USA
## 4780 Mary_Mullarkey_ Chicago, IL, USA
## 4781 Mary_Mullarkey_ Chicago, IL, USA
## 4782 Mary_Mullarkey_ Chicago, IL, USA
## 4783 Mary_Mullarkey_ Chicago, IL, USA
## 4784 Mary_Mullarkey_ Chicago, IL, USA
## 4785 Mary_Mullarkey_ Chicago, IL, USA
## 4786 Mary_Mullarkey_ Chicago, IL, USA
## 4787 Mary_Mullarkey_ Chicago, IL, USA
## 4788 Mary_Mullarkey_ Chicago, IL, USA
## 4789 Mary_Mullarkey_ Chicago, IL, USA
## 4790 makeugorgeous Maryland
## 4791 TeeBern 👶ðŸ\217½DC🚶ðŸ\217½â\200\215â\231\200ï¸\217NJ💃ðŸ\217½MD
## 4792 SoapsyAndSudsy NY/London/Sydney
## 4793 SoapsyAndSudsy NY/London/Sydney
## 4794 SoapsyAndSudsy NY/London/Sydney
## 4795 PandemicPatty1
## 4796 PandemicPatty1
## 4797 DrBHotchkins Dystopia
## 4798 ChloeLang16
## 4799 ChloeLang16
## 4800 ChloeLang16
## 4801 ChloeLang16
## 4802 dolphinkrishna Global Village
## 4803 iam_danishkhan Tampa, FL
## 4804 Sam_Northampton East Midlands, England
## 4805 DaphneR34610976
## 4806 DaphneR34610976
## 4807 WillAdamslsd UK/USA
## 4808 TeaTrucking Indiana 🇺🇸
## 4809 numberspanda Chandler, AZ
## 4810 numberspanda Chandler, AZ
## 4811 marynyc717 Queens, NY
## 4812 QueenCori Nevada, USA
## 4813 sunnydestiny22 United States
## 4814 sunnydestiny22 United States
## 4815 ChambersJenny25 Washington, DC
## 4816 ChambersJenny25 Washington, DC
## 4817 ChambersJenny25 Washington, DC
## 4818 PigSty96452169
104
## 4819 Benjmeister85 West Midlands, England
## 4820 buneluv Chicago, IL.
## 4821 SaltyLadytron
## 4822 SaltyLadytron
## 4823 SaltyLadytron
## 4824 Restoredignity5 United Kingdom
## 4825 Restoredignity5 United Kingdom
## 4826 BugLugg
## 4827 BugLugg
## 4828 johnmark omnipresent
## 4829 CambridgeGarden ðŸ’\231ðŸ“
## 4830 WoofDouggieDog generic social suburbia
## 4831 Captain_Anson
## 4832 ShilohSheridan Alberta, Canada
## 4833 leahahenry
## 4834 hereweare1982 Los Angeles, CA
## 4835 hereweare1982 Los Angeles, CA
## 4836 DhartiKaRakshk
## 4837 TraceyNew California dreamin’
## 4838 TraceyNew California dreamin’
## 4839 AndyEastAnglia England, United Kingdom
## 4840 ItsMichelle_l_
## 4841 AnonymouslySav2
## 4842 JayneSloan17 England, United Kingdom
## 4843 JayneSloan17 England, United Kingdom
## 4844 DuchessJRM Hong Kong Sydney London
## 4845 DuchessJRM Hong Kong Sydney London
## 4846 Joelle_o The People’s Republic of South Londonâ„¢
## 4847 Romy71153181
## 4848 GeraldG28 Houston, TX
## 4849 BusayoAwe1
## 4850 Lordofcynics
## 4851 GBigkevin
## 4852 GBigkevin
## 4853 GBigkevin
## 4854 Musengii Washington, USA
## 4855 Justmythots8 London, England
## 4856 LorimarieWillis NY, FAR FAR LEFT Coast 🌊
## 4857 SavantCapitals London/Dallas
## 4858 SavantCapitals London/Dallas
## 4859 kachirilady
## 4860 lalazzworld
## 4861 FairSociety3 London, England
## 4862 FairSociety3 London, England
## 4863 LouisWalshXFact
## 4864 LouisWalshXFact
## 4865 LouisWalshXFact
## 4866 ladylatte7
## 4867 thatnursefromtx Portland, OR
## 4868 Maskcara1
## 4869 JoeP99137428
## 4870 JoeP99137428
## 4871 leongm99
## 4872 AltheaAikens United States
105
## 4873 HumpyRu
## 4874 FredericksMama
## 4875 Prettyangeltoo 1 Peter 5:7
## 4876 americankat62 Earth
## 4877 sergio83878195
## 4878 dana_gemini67 Somewhere in the Heartland
## 4879 eliottaylor66 Cork, Ireland
## 4880 Marmar_85
## 4881 BIAFRA24 BIAFRA LAND
## 4882 BIAFRA24 BIAFRA LAND
## 4883 BIAFRA24 BIAFRA LAND
## 4884 JoeBOBaHead
## 4885 prpdubent 🇨🇦Vancouver, Canada🇨🇦
## 4886 CatChatter25 U.S.A.
## 4887 CatChatter25 U.S.A.
## 4888 CatChatter25 U.S.A.
## 4889 CatChatter25 U.S.A.
## 4890 CatChatter25 U.S.A.
## 4891 LGM777 Cleveland, Ohio
## 4892 LGM777 Cleveland, Ohio
## 4893 LGM777 Cleveland, Ohio
## 4894 thesofa Hollandia
## 4895 BPositive33
## 4896 TiffThomp ÃœT: 40.741503,-73.614816
## 4897 GabrielleCee Manchester, England
## 4898 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 4899 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 4900 Kinsey_Crosby England, United Kingdom
## 4901 Kinsey_Crosby England, United Kingdom
## 4902 billywhitesox Four Seasons Total Landscaping
## 4903 shall_try Botany, Sydney
## 4904 shall_try Botany, Sydney
## 4905 RisingSussex
## 4906 MadMomNY Mars
## 4907 MadMomNY Mars
## 4908 Drsxyllama [email protected]
## 4909 AKansan63 London, England
## 4910 MyPresident21 Everywhere
## 4911 drudc77 Washington, DC
## 4912 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 4913 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 4914 hannagee1 Helsinki
## 4915 hannagee1 Helsinki
## 4916 OwensMarian7 The United States
## 4917 OwensMarian7 The United States
## 4918 HealthFinInst Washington, DC
## 4919 LamarMakers Mombasa, Kenya
## 4920 Johnhar11257509 Portsmouth, England
## 4921 amightystream
## 4922 Marvcovi Worldwide
## 4923 Marvcovi Worldwide
## 4924 bypro_democracy
## 4925 WhipperyW
## 4926 WhipperyW
106
## 4927 The_Emper0r Richmond, VA
## 4928 33Norex
## 4929 RaquelValenci12 Los Angeles, CA
## 4930 CleanerDalry Edinburgh, Scotland, EU
## 4931 Ibbz_ter I’m GLoBah (Ë\230̯Ë\230 )
## 4932 TheOtherRBG Arlington, VA
## 4933 PrinceKellyLynn Williamsburg, VA
## 4934 PearlaJam1
## 4935 PearlaJam1
## 4936 PearlaJam1
## 4937 PearlaJam1
## 4938 rec777777 South West, England
## 4939 rec777777 South West, England
## 4940 rec777777 South West, England
## 4941 gofollie Pennsylvania, USA
## 4942 marcusjdahling Chicago
## 4943 TOdiary Toronto, Ontario
## 4944 Cici86280666
## 4945 GeraldineGeneva Lausanne, Switzerland
## 4946 MBphoto111
## 4947 colbaltsparkle North Yorkshire
## 4948 FredericksMama
## 4949 rebukd Sydney
## 4950 ScottieMcClue United Kingdom
## 4951 ScottieMcClue United Kingdom
## 4952 GuyFawk95323763 Traveling
## 4953 Rehanana 38.907883,-77.05067
## 4954 HeathertheHeron SW London
## 4955 HeathertheHeron SW London
## 4956 after_chronicle
## 4957 MillenniumMe1 World
## 4958 AbundantLife88
## 4959 AbundantLife88
## 4960 LGM777 Cleveland, Ohio
## 4961 LGM777 Cleveland, Ohio
## 4962 LGM777 Cleveland, Ohio
## 4963 LGM777 Cleveland, Ohio
## 4964 77jano77
## 4965 periodontaldoc United Kingdom
## 4966 mrjustsaying Manhattan, NY
## 4967 LeftyCricketer9
## 4968 LeftyCricketer9
## 4969 LeftyCricketer9
## 4970 ggonefan
## 4971 nighthawkins Edinburgh
## 4972 NewsSlasher London, England
## 4973 mahree77926916
## 4974 TheRealDeclanK1
## 4975 TheRealDeclanK1
## 4976 lasgidifm901 177b, Sinari Daranijo Street,
## 4977 lasgidifm901 177b, Sinari Daranijo Street,
## 4978 lasgidifm901 177b, Sinari Daranijo Street,
## 4979 winemedineme Cincinnati, OH
## 4980 RightOfCentreUK
107
## 4981 RightOfCentreUK
## 4982 DreamzRreal Gift-wrapped in the present.
## 4983 kwilliam111 Rotherham, England
## 4984 Rhamnousia7
## 4985 Rhamnousia7
## 4986 PressTVPrograms Islamic Republic of Iran
## 4987 PressTVPrograms Islamic Republic of Iran
## 4988 KikassP Deptford London, London.
## 4989 neelamcrosscom Bangalore&Delhi
## 4990 neelamcrosscom Bangalore&Delhi
## 4991 DiversityPerrie
## 4992 DiversityPerrie
## 4993 DiversityPerrie
## 4994 DiversityPerrie
## 4995 DiversityPerrie
## 4996 SurprisedWhy
## 4997 SurprisedWhy
## 4998 SurprisedWhy
## 4999 SurprisedWhy
## 5000 SurprisedWhy
## 5001 ETCanada Canada
## 5002 teracotachannel Québec, Canada
## 5003 teracotachannel Québec, Canada
## 5004 NpoReports Nigeria
## 5005 Bubblejet The Interweb
## 5006 Bubblejet The Interweb
## 5007 Bubblejet The Interweb
## 5008 OmenProp Extraterestre
## 5009 Namaste_40 Where ever I need to be!
## 5010 Namaste_40 Where ever I need to be!
## 5011 Namaste_40 Where ever I need to be!
## 5012 DebbieB32113101 United States
## 5013 TheFabledAesop Ancient Greece... possibly,
## 5014 SamGilliganIndy Planet Earth
## 5015 SamGilliganIndy Planet Earth
## 5016 drudc77 Washington, DC
## 5017 maxwell_nifty
## 5018 anthonyscountry Brooklyn, NY
## 5019 thenotoriousac Texas, USA
## 5020 ph08nix
## 5021 089968Raph__ London
## 5022 ChiomaEucheria Somewhere, in the World
## 5023 ChiomaEucheria Somewhere, in the World
## 5024 ChiomaEucheria Somewhere, in the World
## 5025 ChiomaEucheria Somewhere, in the World
## 5026 ChiomaEucheria Somewhere, in the World
## 5027 ChiomaEucheria Somewhere, in the World
## 5028 ChiomaEucheria Somewhere, in the World
## 5029 MartMcQ1
## 5030 MartMcQ1
## 5031 shareybaby Miami, FL
## 5032 TOdiary Toronto, Ontario
## 5033 RJoySanchez
## 5034 jh23188
108
## 5035 jh23188
## 5036 CrankyKat05
## 5037 JoyRoseM
## 5038 missBigKim ÃœT: 34.0714932,-118.363155
## 5039 babaorum31
## 5040 TheQueenMeghanM
## 5041 TheQueenMeghanM
## 5042 OriginalAussie #ABORIGINALLAND. #StolenLand
## 5043 OriginalAussie #ABORIGINALLAND. #StolenLand
## 5044 ormiga Paris old EU
## 5045 ormiga Paris old EU
## 5046 clowningar Lakewood, CA
## 5047 clowningar Lakewood, CA
## 5048 CharlieH892 England, United Kingdom
## 5049 Restoredignity5 United Kingdom
## 5050 NotSoIntel Houston, TX
## 5051 bigpoppanard Nationwide
## 5052 bigpoppanard Nationwide
## 5053 joymdiv Atlanta, GA
## 5054 HumpyRu
## 5055 JudoSamuraiGBR South West, England
## 5056 JudoSamuraiGBR South West, England
## 5057 deadcon8 Brooklyn NYC
## 5058 no_retreatx Paradise, AU, Earth
## 5059 RLopez00025 The Bay to the A
## 5060 Nunya12472952 My own little world
## 5061 benjaminteacher IG/FB/YT @benjaminteacher
## 5062 MeaghanWray Toronto, Ontario
## 5063 CatsHighlanders Wisconsin
## 5064 CatsHighlanders Wisconsin
## 5065 CatsHighlanders Wisconsin
## 5066 TOdiary Toronto, Ontario
## 5067 nicovetch New York
## 5068 nicovetch New York
## 5069 seank_100
## 5070 Ejay74630549 Canada
## 5071 Ejay74630549 Canada
## 5072 dewysue Shropshire & Cornwall UK
## 5073 dewysue Shropshire & Cornwall UK
## 5074 JG35580758
## 5075 Tiffluvs2shop Obama Avenue
## 5076 Tiffluvs2shop Obama Avenue
## 5077 Tiffluvs2shop Obama Avenue
## 5078 CoreyTheTruth87 Memphis, TN
## 5079 CC_Selekta UK
## 5080 CC_Selekta UK
## 5081 jpabecilla Cebu City, Central Visayas
## 5082 WhoSaidWhatOMG United States/ United Kingdom
## 5083 amybethgo Flat Rock, IL
## 5084 mizz_rants_alot Bengaluru, India
## 5085 cass_lud
## 5086 cass_lud
## 5087 cass_lud
## 5088 TradeCNBC Philly
109
## 5089 vernon78784378
## 5090 vernon78784378
## 5091 jenlove999 🌴Philippines
## 5092 angelneptustar North London
## 5093 angelneptustar North London
## 5094 jrider1101
## 5095 sharevalues South Africa, Port Elizabeth
## 5096 hatrat The BEST state ev-R
## 5097 hatrat The BEST state ev-R
## 5098 hatrat The BEST state ev-R
## 5099 ALIS0N1962 Sheffield, England
## 5100 ALIS0N1962 Sheffield, England
## 5101 AmberWaheed Dubai, United Arab Emirates
## 5102 AmberWaheed Dubai, United Arab Emirates
## 5103 1974AHSlouie San Francisco Bay Area
## 5104 sussexdaily Houston, TX
## 5105 ZeliaLH Tokyo, Japan
## 5106 Syrobbo1
## 5107 Rob2K London, England
## 5108 lucyflight United Kingdom
## 5109 lucyflight United Kingdom
## 5110 lucyflight United Kingdom
## 5111 Restoredignity5 United Kingdom
## 5112 Restoredignity5 United Kingdom
## 5113 Restoredignity5 United Kingdom
## 5114 TribeIceni
## 5115 TribeIceni
## 5116 moyocoyotzinnow
## 5117 moyocoyotzinnow
## 5118 JML2020AD Southern United States
## 5119 MsWalker225 Oxford, Alabama
## 5120 AfrBusinesslink
## 5121 AfrBusinesslink
## 5122 AfrBusinesslink
## 5123 AfrBusinesslink
## 5124 JR_justJR Fly it to Earn it
## 5125 SarahAMC72 Rome, Lazio 🇻🇦
## 5126 AliceGD89 Bournemouth
## 5127 nytink82 Long Beach, NY
## 5128 klipsch1 California, USA
## 5129 Tracie93315429
## 5130 multioptioned Australia
## 5131 multioptioned Australia
## 5132 0livepie
## 5133 0livepie
## 5134 0livepie
## 5135 Primula_England Connecticut, USA
## 5136 thekushie Toronto, Ontario
## 5137 tanuj_garg ÃœT: 18.955478,72.798771
## 5138 rachredmond London
## 5139 Michelle_WBT Doncaster, England
## 5140 AnArtfulPenguin Reno, NV
## 5141 youknowit0609
## 5142 youknowit0609
110
## 5143 youknowit0609
## 5144 Restoredignity5 United Kingdom
## 5145 Midge80310285
## 5146 Midge80310285
## 5147 OutragedMary Margate, England
## 5148 OutragedMary Margate, England
## 5149 OutragedMary Margate, England
## 5150 MackZorris The Burbs
## 5151 MerlivnaMonroe
## 5152 AndyEastAnglia England, United Kingdom
## 5153 BeingReal5
## 5154 BeingReal5
## 5155 SamiG58 New Jersey, USA
## 5156 MarthiaSides Nashville, TN
## 5157 JUSPRA1 DM is not for hooking up!
## 5158 JUSPRA1 DM is not for hooking up!
## 5159 SoggyBottom22 Arizona, USA
## 5160 haroinsinner
## 5161 JennaLee733 London, England
## 5162 madeline_dm Toronto
## 5163 madeline_dm Toronto
## 5164 Resist4Lyfe bigwideworld
## 5165 Guardian_Elite Southern California
## 5166 MakeseMotley Washington, DC
## 5167 Meldi_Arkin Newcastle, New South Wales
## 5168 WilsonShilo The World
## 5169 EthiopianOnion Abdurafi, Gondar, Ethiopia
## 5170 EthiopianOnion Abdurafi, Gondar, Ethiopia
## 5171 birdieinmyear facebook.com/birdieinmyear/
## 5172 BadTranny_Shoes Scabby Fat Piggy Trottersville
## 5173 JosephSakran Fairfax Station, VA
## 5174 wilderoosje Aruba
## 5175 wilderoosje Aruba
## 5176 wilderoosje Aruba
## 5177 wilderoosje Aruba
## 5178 wilderoosje Aruba
## 5179 wilderoosje Aruba
## 5180 wilderoosje Aruba
## 5181 wilderoosje Aruba
## 5182 wilderoosje Aruba
## 5183 wilderoosje Aruba
## 5184 candaceconvo Georgia
## 5185 Rhamnousia7
## 5186 Rhamnousia7
## 5187 Globalbizdynam1 London, England.
## 5188 gmanmillwall London, England
## 5189 j_a1948
## 5190 leahmcelrath Houston
## 5191 Mogsy22171230
## 5192 CarmiOnTheVerge
## 5193 CarmiOnTheVerge
## 5194 TeamMeghanandH1
## 5195 TeamMeghanandH1
## 5196 TeamMeghanandH1
111
## 5197 nicolesaidhuh
## 5198 quickbeam71 Kettering, OH
## 5199 quickbeam71 Kettering, OH
## 5200 quickbeam71 Kettering, OH
## 5201 MerlivnaMonroe
## 5202 hooperstarium
## 5203 TeezFlowerz 🇬🇧 Up North from down South
## 5204 jacquik_19 Scotland, United Kingdom
## 5205 Nolliag66 ask GCHQ
## 5206 Nolliag66 ask GCHQ
## 5207 MyDiamondHands Dallas, TX
## 5208 jillienp Bay Area, CA
## 5209 mid_zan
## 5210 Wiblicks United Kingdom
## 5211 LGM777 Cleveland, Ohio
## 5212 POPSUGAR San Francisco, LA, NYC
## 5213 DennydimpDen
## 5214 DennydimpDen
## 5215 DennydimpDen
## 5216 itismedesu Santa Monica
## 5217 itismedesu Santa Monica
## 5218 ___Mu____
## 5219 TammyWatford2 Denver CO
## 5220 icur_here2 Queensland, Australia
## 5221 MojoLFC
## 5222 Diana736275261 UK Derbyshire
## 5223 Diana736275261 UK Derbyshire
## 5224 marian_kwei
## 5225 GeorginaLee Gillingham Kent United Kingdom
## 5226 JoyPalmerRM London, England
## 5227 JoyPalmerRM London, England
## 5228 JoyPalmerRM London, England
## 5229 Dcparker35
## 5230 Dcparker35
## 5231 EditorPoultryZA Scotland and Africa
## 5232 EditorPoultryZA Scotland and Africa
## 5233 EditorPoultryZA Scotland and Africa
## 5234 DiCali007 USA
## 5235 RavenBeauty1970
## 5236 Guardian_Elite Southern California
## 5237 SojournerT2 USA
## 5238 SojournerT2 USA
## 5239 SojournerT2 USA
## 5240 IAmMargoGrant Cambridge, MA U.S.A.
## 5241 LegendaryEgos
## 5242 LegendaryEgos
## 5243 davidihales Melbourne.
## 5244 davidihales Melbourne.
## 5245 davidihales Melbourne.
## 5246 davidihales Melbourne.
## 5247 TheresaTonyan Kenosha, Wi
## 5248 EricaCobb Chicagoâœ\210ï¸\217Denverâœ\210ï¸\217Sacâœ\210ï¸\217Denverâœ\210ï¸\217
## 5249 SummerRhapsody UK 🇪🇺
## 5250 SummerRhapsody UK 🇪🇺
112
## 5251 SummerRhapsody UK 🇪🇺
## 5252 ntl_angie USA
## 5253 ntl_angie USA
## 5254 DuchessJRM Hong Kong Sydney London
## 5255 DuchessJRM Hong Kong Sydney London
## 5256 DuchessJRM Hong Kong Sydney London
## 5257 suelin_flower West Midlands, England
## 5258 bluepolitics_ Atlanta
## 5259 randomideas20
## 5260 EricAndFazio
## 5261 EricAndFazio
## 5262 lovejones0303 United States
## 5263 jamesak47 London
## 5264 jamesak47 London
## 5265 jamesak47 London
## 5266 jamesak47 London
## 5267 jamesak47 London
## 5268 jamesak47 London
## 5269 jamesak47 London
## 5270 jamesak47 London
## 5271 jamesak47 London
## 5272 hopemaga California, USA
## 5273 EyeEdinburgh Twitter formatting ruined.
## 5274 EyeEdinburgh Twitter formatting ruined.
## 5275 BasilEdwins
## 5276 BasilEdwins
## 5277 lgfc2 Ontario Canada
## 5278 Avalonemory
## 5279 JakeIntEco
## 5280 amedeonyc New York, USA
## 5281 amedeonyc New York, USA
## 5282 KALAGHODA6
## 5283 JoannaSoaps United States
## 5284 worldchangeryo Georgia, USA
## 5285 worldchangeryo Georgia, USA
## 5286 LittleMsMuffin ATL
## 5287 CanWeSayIt
## 5288 ProudCo79003724
## 5289 ProudCo79003724
## 5290 ProudCo79003724
## 5291 WhiteHouse20200
## 5292 TheTrut87905708
## 5293 loveradio44132 Earth
## 5294 conn0rstrange yeh
## 5295 conn0rstrange yeh
## 5296 conn0rstrange yeh
## 5297 LGM777 Cleveland, Ohio
## 5298 LGM777 Cleveland, Ohio
## 5299 LGM777 Cleveland, Ohio
## 5300 LGM777 Cleveland, Ohio
## 5301 LGM777 Cleveland, Ohio
## 5302 Demelzadeburca Dublin
## 5303 FamilyActionNet
## 5304 FamilyActionNet
113
## 5305 Namaste_40 Where ever I need to be!
## 5306 Namaste_40 Where ever I need to be!
## 5307 Namaste_40 Where ever I need to be!
## 5308 sergntranze84 Chicago, IL
## 5309 WestYorksLass Leeds, England
## 5310 ImNotFrankOcean Dallas
## 5311 jaysnipesdj nottingham UK
## 5312 jaysnipesdj nottingham UK
## 5313 jaysnipesdj nottingham UK
## 5314 jaysnipesdj nottingham UK
## 5315 jaysnipesdj nottingham UK
## 5316 jaysnipesdj nottingham UK
## 5317 jaysnipesdj nottingham UK
## 5318 HSHPatrick London, England
## 5319 BrandiSaari
## 5320 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 5321 RatedR_2020 Mars conjunct Pluto....🌋🗻🌋
## 5322 joellhobson Huddersfield/ A fresh hell!
## 5323 b_7gorgeous
## 5324 Fablous50
## 5325 SusyWuzy Houston, TX
## 5326 MerlivnaMonroe
## 5327 Mountainmanwang
## 5328 itismedesu Santa Monica
## 5329 kachirilady
## 5330 nicspalate New York,NY
## 5331 nicspalate New York,NY
## 5332 nicspalate New York,NY
## 5333 BrandMeEbony Global
## 5334 shawadli Los Angeles
## 5335 shawadli Los Angeles
## 5336 MrsMe15556009 UK/Wherever you need me
## 5337 1mikeraffone United States
## 5338 ToriesOUT6 United Kingdom
## 5339 UsgovtC Planet Earth
## 5340 Banterm42404691 Amazonas, Brazil
## 5341 PastorBailey Columbia, SC
## 5342 PastorBailey Columbia, SC
## 5343 AtlantaStayFI Atlanta, GA
## 5344 jenlove999 🌴Philippines
## 5345 jenlove999 🌴Philippines
## 5346 IrmaGrace26 Abbey Rd, Yep, thee Abbey Rd
## 5347 Scott1984FP Bedford, Bedfordshire, Uk,
## 5348 Scott1984FP Bedford, Bedfordshire, Uk,
## 5349 Scott1984FP Bedford, Bedfordshire, Uk,
## 5350 Scott1984FP Bedford, Bedfordshire, Uk,
## 5351 KarimbaFrank EU
## 5352 SlverFoxyMoron Toluca Lake/DFW
## 5353 WhoSaidWhatOMG United States/ United Kingdom
## 5354 CDFleming5
## 5355 CDFleming5
## 5356 AltheaAikens United States
## 5357 UPoxbottle The End of an icy Rainbow
## 5358 UPoxbottle The End of an icy Rainbow
114
## 5359 UPoxbottle The End of an icy Rainbow
## 5360 pepsicocom Among the living
## 5361 prpdubent 🇨🇦Vancouver, Canada🇨🇦
## 5362 BorisJustLies 10 Downing Street
## 5363 RoxFarsi
## 5364 ArtsandCulture Born on Ngambra land. Me/Me/Me
## 5365 089968Raph__ London
## 5366 judide New York
## 5367 steveandrew2000
## 5368 falanouc Western Hemisphere
## 5369 ValdaDeDieu South Beach
## 5370 BeingSuperhero
## 5371 write2educate Dallas, TX
## 5372 write2educate Dallas, TX
## 5373 FirstLa14340074 home
## 5374 WhiteHouse20200
## 5375 DrJamesDManning ATLAH, New York
## 5376 AKansan63 London, England
## 5377 djibouti09 uk
## 5378 Anna59499783
## 5379 KatzCheryle
## 5380 YouthPollNaija West Africa
## 5381 YouthPollNaija West Africa
## 5382 chescawalton London, England
## 5383 LynnCarratt London
## 5384 AminZannon The Kingdom
## 5385 juliagallardo United States
## 5386 Brian_Wibe UK
## 5387 negrowriter New York, NY
## 5388 baronessvonbli New York
## 5389 hogan_1969 Maryland, USA
## 5390 Lilylilyyyyu
## 5391 GWINNA18
## 5392 GWINNA18
## 5393 MBIMunshi Dhaka
## 5394 MBIMunshi Dhaka
## 5395 bellaramon
## 5396 LondonHoskins Here
## 5397 chynkwo
## 5398 chynkwo
## 5399 chynkwo
## 5400 mmofhollywood Hollywood, California
## 5401 mmofhollywood Hollywood, California
## 5402 JARosenberg12 The World
## 5403 Lanyiadr United States
## 5404 Lanyiadr United States
## 5405 JeMarieTherese
## 5406 RoyalAstrologst #Europe
## 5407 RoyalAstrologst #Europe
## 5408 kachirilady
## 5409 MohamoudGaildon Peoria, IL, USA
## 5410 ochicanado Lagos, Nigeria
## 5411 ochicanado Lagos, Nigeria
## 5412 ochicanado Lagos, Nigeria
115
## 5413 ochicanado Lagos, Nigeria
## 5414 ochicanado Lagos, Nigeria
## 5415 ochicanado Lagos, Nigeria
## 5416 ochicanado Lagos, Nigeria
## 5417 gatitonic1968 Canada
## 5418 gatitonic1968 Canada
## 5419 gatitonic1968 Canada
## 5420 mid_zan
## 5421 mid_zan
## 5422 mid_zan
## 5423 mid_zan
## 5424 mid_zan
## 5425 drudc77 Washington, DC
## 5426 TiffanyCamill11 Atlanta, GA
## 5427 karawink MN
## 5428 HabibaNosheen New York /Toronto via Pakistan
## 5429 BertTatlock Midgard
## 5430 strikeforcekid
## 5431 FitChefNardo Charlotte, NC
## 5432 pop_malaysia Kuala Lumpur, Wilayah Persekut
## 5433 pop_malaysia Kuala Lumpur, Wilayah Persekut
## Num.of.Friend Num.of.Followers Total.Tweets.by.user Account.Created.at
## 1 23 1 84 2021-03-05 16:26:08
## 2 5001 3827 233303 2008-09-20 14:21:44
## 3 35 8 1301 2019-07-24 21:18:48
## 4 204 50 1201 2021-02-05 16:27:08
## 5 102 14 367 2017-05-04 03:31:47
## 6 2271 3198 97892 2016-07-21 19:53:08
## 7 2271 3198 97892 2016-07-21 19:53:08
## 8 2271 3198 97892 2016-07-21 19:53:08
## 9 12 29 4241 2020-12-30 10:31:20
## 10 12 29 4241 2020-12-30 10:31:20
## 11 0 0 98 2020-12-19 21:49:30
## 12 0 0 98 2020-12-19 21:49:30
## 13 0 0 98 2020-12-19 21:49:30
## 14 2106 1936 16137 2011-11-17 00:55:34
## 15 436 5749 9456 2011-07-04 01:32:02
## 16 436 5749 9456 2011-07-04 01:32:02
## 17 436 5749 9456 2011-07-04 01:32:02
## 18 262 96 17961 2020-12-10 23:02:12
## 19 262 96 17961 2020-12-10 23:02:12
## 20 1198 501 3481 2011-12-08 03:34:30
## 21 286 46 585 2014-03-30 23:43:43
## 22 1387 575 31359 2011-09-02 05:56:32
## 23 14626 13297 108397 2017-02-02 20:09:09
## 24 11 0 71 2020-02-22 12:47:50
## 25 11 0 71 2020-02-22 12:47:50
## 26 728 7349 7572 2009-04-18 01:28:42
## 27 18274 18897 10773 2018-05-03 21:15:44
## 28 457 36 298 2016-05-12 10:51:52
## 29 2439 1822 22065 2009-04-20 17:09:00
## 30 7593 7220 182193 2016-06-18 18:13:56
## 31 2027 1658 7970 2020-11-21 10:16:34
## 32 2027 1658 7970 2020-11-21 10:16:34
116
## 33 117 63 1802 2017-03-15 18:58:19
## 34 1956 111 3787 2015-12-21 09:54:33
## 35 198 39 2921 2011-06-01 06:02:54
## 36 381 190 3949 2013-03-14 23:39:47
## 37 1135 242 7629 2012-10-06 02:38:18
## 38 17975 19562 554484 2009-01-28 09:58:52
## 39 17975 19562 554484 2009-01-28 09:58:52
## 40 1111 9982 40917 2009-03-23 15:51:35
## 41 62 19 1561 2020-11-16 13:02:28
## 42 1340 1428 1996 2008-09-29 19:32:26
## 43 21 17 1520 2020-02-18 20:16:19
## 44 68 1057 14059 2009-05-14 19:26:28
## 45 568 459 9593 2009-02-20 23:36:20
## 46 568 459 9593 2009-02-20 23:36:20
## 47 527 239 955 2013-08-15 11:40:52
## 48 475 0 358 2020-02-04 19:48:06
## 49 5001 1255 30457 2012-04-30 23:02:19
## 50 5001 1255 30457 2012-04-30 23:02:19
## 51 31 2 122 2021-02-14 04:00:51
## 52 81 116 7058 2013-02-11 18:22:53
## 53 69 13 128 2021-02-14 04:59:38
## 54 69 13 128 2021-02-14 04:59:38
## 55 19 2 14 2016-12-13 21:02:14
## 56 182 75 10609 2019-08-03 04:13:29
## 57 182 75 10609 2019-08-03 04:13:29
## 58 182 75 10609 2019-08-03 04:13:29
## 59 378 2139 108030 2012-06-28 19:44:25
## 60 70 34 1715 2018-11-13 21:15:14
## 61 70 34 1715 2018-11-13 21:15:14
## 62 70 34 1715 2018-11-13 21:15:14
## 63 70 34 1715 2018-11-13 21:15:14
## 64 70 34 1715 2018-11-13 21:15:14
## 65 3249 66265 24567 2009-01-19 18:32:10
## 66 3249 66265 24567 2009-01-19 18:32:10
## 67 1445 1354 61437 2011-09-02 17:25:53
## 68 81 116 7058 2013-02-11 18:22:53
## 69 81 116 7058 2013-02-11 18:22:53
## 70 145 43 854 2009-04-09 15:03:23
## 71 341 349 15844 2010-02-22 16:31:27
## 72 96 118 22121 2009-02-20 15:32:27
## 73 96 118 22121 2009-02-20 15:32:27
## 74 531 462 48690 2011-08-31 17:11:21
## 75 531 462 48690 2011-08-31 17:11:21
## 76 26 110 9089 2019-06-08 02:48:37
## 77 3223 1354 65762 2012-12-11 19:00:05
## 78 352 82 10464 2009-02-05 23:12:35
## 79 352 82 10464 2009-02-05 23:12:35
## 80 311 46 5875 2020-12-22 01:23:10
## 81 311 46 5875 2020-12-22 01:23:10
## 82 311 46 5875 2020-12-22 01:23:10
## 83 32 1 135 2020-12-24 15:38:27
## 84 32 1 135 2020-12-24 15:38:27
## 85 4075 456251 129228 2008-04-10 18:42:29
## 86 983 494 1434 2017-02-28 02:19:45
117
## 87 240 33 3065 2020-03-25 09:27:55
## 88 668 15124 8307 2019-08-10 09:22:24
## 89 668 15124 8307 2019-08-10 09:22:24
## 90 792 5147 18245 2009-03-30 11:08:12
## 91 448 215 7222 2009-04-24 11:36:02
## 92 448 215 7222 2009-04-24 11:36:02
## 93 344 50 1142 2020-02-05 12:58:12
## 94 1912 1647 92393 2009-02-13 16:10:37
## 95 553 400 22596 2012-11-24 01:02:56
## 96 3155 120285 67089 2009-02-25 19:32:59
## 97 1447 1415 28841 2017-04-22 06:00:08
## 98 7 1 183 2020-07-02 00:38:46
## 99 7 1 183 2020-07-02 00:38:46
## 100 204 49 1201 2021-02-05 16:27:08
## 101 204 49 1201 2021-02-05 16:27:08
## 102 204 49 1201 2021-02-05 16:27:08
## 103 204 49 1201 2021-02-05 16:27:08
## 104 1114 585 75122 2009-11-10 09:26:23
## 105 972 334 5538 2016-01-04 15:35:40
## 106 972 334 5538 2016-01-04 15:35:40
## 107 237 125 9381 2009-06-26 05:04:47
## 108 177 12 5855 2017-03-01 09:32:13
## 109 953 206 9470 2013-08-07 14:27:05
## 110 912 1243 7945 2010-06-14 09:29:20
## 111 1179 178 9339 2009-04-29 15:25:59
## 112 306 274 16804 2020-11-01 07:43:20
## 113 306 274 16804 2020-11-01 07:43:20
## 114 277 120 9984 2020-02-23 17:51:56
## 115 6403 6322 11650 2009-06-02 18:19:44
## 116 6403 6322 11650 2009-06-02 18:19:44
## 117 6403 6322 11650 2009-06-02 18:19:44
## 118 855 85 2542 2011-04-08 14:28:52
## 119 855 85 2542 2011-04-08 14:28:52
## 120 199 41 11221 2020-08-20 03:17:36
## 121 317 38687 46673 2011-05-14 20:24:50
## 122 544 52 1239 2014-10-20 19:23:15
## 123 194 119 4476 2019-03-02 22:35:13
## 124 194 119 4476 2019-03-02 22:35:13
## 125 194 119 4476 2019-03-02 22:35:13
## 126 1169 191723 33082 2010-05-25 15:26:33
## 127 276 217 6917 2015-06-22 19:48:56
## 128 276 217 6917 2015-06-22 19:48:56
## 129 276 217 6917 2015-06-22 19:48:56
## 130 803 228 8404 2010-04-26 19:07:40
## 131 2024 2004 5482 2012-03-15 18:45:05
## 132 2024 2004 5482 2012-03-15 18:45:05
## 133 2024 2004 5482 2012-03-15 18:45:05
## 134 2024 2004 5482 2012-03-15 18:45:05
## 135 770 152 3802 2009-05-16 20:03:47
## 136 770 152 3802 2009-05-16 20:03:47
## 137 596 155 27522 2013-10-02 04:05:35
## 138 133 2372 22020 2009-04-03 00:14:56
## 139 1541 765 13732 2009-04-05 20:03:08
## 140 1541 765 13732 2009-04-05 20:03:08
118
## 141 1541 765 13732 2009-04-05 20:03:08
## 142 2262 3621 206879 2015-04-04 16:59:54
## 143 555 221 3979 2009-01-29 19:32:33
## 144 466 462 10869 2017-05-02 09:41:21
## 145 466 462 10869 2017-05-02 09:41:21
## 146 94695 51876 219719 2008-08-20 10:57:27
## 147 94695 51876 219719 2008-08-20 10:57:27
## 148 596 155 27522 2013-10-02 04:05:35
## 149 1920 802 10747 2012-06-10 21:55:43
## 150 10392 12298 388469 2013-05-15 15:28:22
## 151 35 8 1301 2019-07-24 21:18:48
## 152 35 8 1301 2019-07-24 21:18:48
## 153 308 41 662 2019-06-06 01:39:02
## 154 52 0 103 2020-06-09 09:51:34
## 155 137 33 1308 2009-06-14 08:48:04
## 156 137 33 1308 2009-06-14 08:48:04
## 157 216 143 7954 2018-09-25 13:30:25
## 158 4984 4116 173601 2009-03-22 22:30:49
## 159 262 96 17961 2020-12-10 23:02:12
## 160 1907 8858 14460 2009-04-29 14:14:38
## 161 883 627 421 2008-03-08 22:53:41
## 162 4805 3189 514972 2015-05-18 19:26:30
## 163 240 33 3065 2020-03-25 09:27:55
## 164 1541 765 13732 2009-04-05 20:03:08
## 165 1541 765 13732 2009-04-05 20:03:08
## 166 4072 2733 219993 2014-05-10 04:49:26
## 167 4072 2733 219993 2014-05-10 04:49:26
## 168 2259 1168 17023 2011-09-29 19:20:54
## 169 1470 1334 19167 2015-08-20 09:50:46
## 170 0 0 49 2018-01-12 15:03:05
## 171 58 4 954 2011-07-08 16:55:53
## 172 1468 410 6541 2011-02-20 17:28:07
## 173 1468 410 6541 2011-02-20 17:28:07
## 174 0 3 491 2021-02-16 14:57:30
## 175 0 3 491 2021-02-16 14:57:30
## 176 0 3 491 2021-02-16 14:57:30
## 177 0 3 491 2021-02-16 14:57:30
## 178 0 3 491 2021-02-16 14:57:30
## 179 0 3 491 2021-02-16 14:57:30
## 180 0 3 491 2021-02-16 14:57:30
## 181 0 3 491 2021-02-16 14:57:30
## 182 12 1 390 2017-11-27 22:46:02
## 183 1288 982 35158 2012-04-04 13:42:29
## 184 29 25 331 2020-09-26 02:47:15
## 185 341 264 360 2021-02-11 14:41:01
## 186 498 81 6004 2009-09-05 17:22:22
## 187 3448 3573 6383 2020-07-01 19:11:42
## 188 1029 403 16873 2017-10-10 11:08:35
## 189 1747 1758 2969 2019-03-02 09:30:16
## 190 723 539 13250 2009-03-10 01:47:11
## 191 723 539 13250 2009-03-10 01:47:11
## 192 723 539 13250 2009-03-10 01:47:11
## 193 490 394 19973 2009-07-02 00:20:35
## 194 105 102 6465 2012-02-23 21:44:02
119
## 195 105 102 6465 2012-02-23 21:44:02
## 196 105 102 6465 2012-02-23 21:44:02
## 197 176 25 967 2011-05-03 23:52:57
## 198 385 26 3903 2017-05-25 16:02:35
## 199 4431 4507 62425 2010-11-30 18:28:51
## 200 1636 1528 9911 2011-02-17 16:13:50
## 201 851 666 33406 2012-02-28 16:02:22
## 202 151 51 1581 2019-07-11 05:48:11
## 203 151 51 1581 2019-07-11 05:48:11
## 204 98 580 881 2010-09-10 00:14:19
## 205 3606 2552 6420 2010-10-23 21:58:38
## 206 760 68 439 2020-04-30 02:04:01
## 207 276 217 6917 2015-06-22 19:48:56
## 208 276 217 6917 2015-06-22 19:48:56
## 209 164 119 578 2018-06-19 19:39:15
## 210 0 7 538 2019-12-23 16:53:13
## 211 930 5348 1043 2012-01-25 23:38:26
## 212 204 50 1201 2021-02-05 16:27:08
## 213 204 50 1201 2021-02-05 16:27:08
## 214 204 50 1201 2021-02-05 16:27:08
## 215 204 50 1201 2021-02-05 16:27:08
## 216 1554 973 3448 2009-09-22 00:09:42
## 217 105 102 6465 2012-02-23 21:44:02
## 218 404 245 5873 2020-08-11 06:20:35
## 219 2578 10010 96323 2010-12-08 22:14:00
## 220 30 23 1564 2020-10-28 09:06:05
## 221 30 23 1564 2020-10-28 09:06:05
## 222 636 279 2854 2008-12-16 13:05:29
## 223 1257 931 4923 2010-06-16 21:46:11
## 224 1257 931 4923 2010-06-16 21:46:11
## 225 1257 931 4923 2010-06-16 21:46:11
## 226 1257 931 4923 2010-06-16 21:46:11
## 227 316 59 3263 2009-03-12 20:15:37
## 228 316 59 3263 2009-03-12 20:15:37
## 229 3124 481607 186693 2009-03-08 14:47:33
## 230 114 125 5494 2020-07-21 21:19:16
## 231 114 125 5494 2020-07-21 21:19:16
## 232 2102 4447 63178 2012-10-05 16:17:07
## 233 2102 4447 63178 2012-10-05 16:17:07
## 234 3249 66265 24567 2009-01-19 18:32:10
## 235 1361 572 20974 2010-07-10 21:01:50
## 236 1361 572 20974 2010-07-10 21:01:50
## 237 458 35 7484 2017-12-02 01:35:21
## 238 769 399 8047 2009-03-15 17:53:41
## 239 305 14 3681 2020-12-08 14:03:21
## 240 54 41 2931 2013-08-10 14:33:11
## 241 54 41 2931 2013-08-10 14:33:11
## 242 306 118 2165 2009-05-19 21:46:17
## 243 306 118 2165 2009-05-19 21:46:17
## 244 141 75 5745 2016-01-21 21:25:01
## 245 141 75 5745 2016-01-21 21:25:01
## 246 141 75 5745 2016-01-21 21:25:01
## 247 2271 3199 97887 2016-07-21 19:53:08
## 248 1830 241 4689 2011-11-22 02:11:07
120
## 249 1830 241 4689 2011-11-22 02:11:07
## 250 1308 655 81511 2009-03-06 04:41:32
## 251 4468 2150 41730 2012-10-29 03:14:01
## 252 1811 726 2336 2015-05-14 18:09:16
## 253 1811 726 2336 2015-05-14 18:09:16
## 254 199 41 11221 2020-08-20 03:17:36
## 255 99 56 687 2011-04-17 13:06:43
## 256 183 25 13851 2020-10-20 02:01:02
## 257 311 42 366 2018-04-02 16:12:26
## 258 4935 2727 148067 2011-12-22 09:20:54
## 259 618 462 9363 2011-07-26 16:52:56
## 260 557 322 6636 2017-06-01 20:35:53
## 261 1447 1415 28839 2017-04-22 06:00:08
## 262 723 137 6487 2009-02-11 17:28:43
## 263 4976 1096 81020 2009-01-23 21:03:59
## 264 1675 626 25371 2018-12-11 01:30:39
## 265 66 35 191 2011-07-28 16:49:54
## 266 66 35 191 2011-07-28 16:49:54
## 267 81 7 203 2009-10-07 19:11:11
## 268 81 7 203 2009-10-07 19:11:11
## 269 436 873 75049 2012-07-07 10:46:50
## 270 419 63 193 2020-05-11 00:30:50
## 271 4 6 204 2021-02-06 12:38:19
## 272 44 2 1318 2020-08-22 14:19:47
## 273 167 75 2748 2013-12-29 02:08:48
## 274 691 193 3520 2010-10-03 12:08:03
## 275 691 193 3520 2010-10-03 12:08:03
## 276 131 17 493 2017-12-13 17:26:00
## 277 929 369 7143 2012-03-16 10:44:50
## 278 37 26 716 2020-04-25 15:43:02
## 279 946 589 1998 2009-03-30 00:47:47
## 280 1265 589 7017 2009-03-03 21:32:12
## 281 1812 191 8395 2020-07-08 12:01:36
## 282 5004 4545 56604 2009-04-20 15:17:10
## 283 91 84 5220 2018-08-17 02:14:38
## 284 103 45 231 2012-04-28 19:15:17
## 285 67 1 117 2010-01-18 17:29:36
## 286 67 1 117 2010-01-18 17:29:36
## 287 296 218 10603 2011-09-21 14:36:57
## 288 296 218 10603 2011-09-21 14:36:57
## 289 296 218 10603 2011-09-21 14:36:57
## 290 296 218 10603 2011-09-21 14:36:57
## 291 393 37 357 2012-02-02 18:11:54
## 292 2457 2013 18026 2020-05-21 10:06:32
## 293 1541 765 13732 2009-04-05 20:03:08
## 294 414 188 1506 2015-06-19 06:34:33
## 295 3961 3172 67841 2012-06-26 16:55:20
## 296 3961 3172 67841 2012-06-26 16:55:20
## 297 79 16 307 2020-06-09 21:33:56
## 298 1070 5480 6879 2019-08-26 19:27:10
## 299 2102 4447 63178 2012-10-05 16:17:07
## 300 2102 4447 63178 2012-10-05 16:17:07
## 301 2102 4447 63178 2012-10-05 16:17:07
## 302 2102 4447 63178 2012-10-05 16:17:07
121
## 303 2102 4447 63178 2012-10-05 16:17:07
## 304 0 4 1545 2020-10-08 12:10:03
## 305 0 4 1545 2020-10-08 12:10:03
## 306 0 4 1545 2020-10-08 12:10:03
## 307 0 4 1545 2020-10-08 12:10:03
## 308 2805 2676 68681 2014-05-04 17:37:50
## 309 199 80 2172 2016-08-05 18:26:55
## 310 199 80 2172 2016-08-05 18:26:55
## 311 251 56 3370 2014-10-05 22:49:29
## 312 251 56 3370 2014-10-05 22:49:29
## 313 251 56 3370 2014-10-05 22:49:29
## 314 7898 9643 70529 2009-05-01 00:29:10
## 315 79 16 307 2020-06-09 21:33:56
## 316 868 290 7267 2009-04-21 14:12:46
## 317 605 6372 81448 2018-12-16 21:24:32
## 318 605 6372 81448 2018-12-16 21:24:32
## 319 537 21296 228997 2011-05-09 14:15:05
## 320 537 21296 228997 2011-05-09 14:15:05
## 321 6510 6436 798 2013-10-06 14:31:41
## 322 227 44 2479 2018-06-05 11:09:54
## 323 4026 3538 105900 2009-03-05 22:02:18
## 324 1447 1415 28839 2017-04-22 06:00:08
## 325 1447 1415 28839 2017-04-22 06:00:08
## 326 1447 1415 28839 2017-04-22 06:00:08
## 327 137 480 6511 2011-09-05 17:21:10
## 328 283 118 6402 2020-04-18 18:51:20
## 329 283 118 6402 2020-04-18 18:51:20
## 330 283 118 6402 2020-04-18 18:51:20
## 331 14031 12806 505854 2014-05-17 10:14:01
## 332 14031 12806 505854 2014-05-17 10:14:01
## 333 469 10682 3919 2017-04-05 16:16:51
## 334 288 59 7035 2008-11-29 20:51:16
## 335 9052 11505 409673 2009-03-03 04:17:58
## 336 105 102 6460 2012-02-23 21:44:02
## 337 1039 256 28148 2016-02-02 16:24:40
## 338 60 0 73 2020-12-30 09:53:38
## 339 884 418 9588 2011-07-04 19:07:17
## 340 984 1959 68657 2011-11-15 10:30:32
## 341 151 76 1918 2017-05-09 15:07:50
## 342 727 537 37117 2012-02-01 02:33:09
## 343 432 778 10789 2019-08-12 19:05:21
## 344 95 14 7323 2019-07-15 23:04:34
## 345 730 318 17742 2012-03-07 01:57:48
## 346 1251 73975 351795 2008-10-30 00:42:47
## 347 51 36 1407 2020-09-30 10:31:14
## 348 321 524 105516 2009-04-10 22:55:37
## 349 4428 2282 83128 2014-10-08 21:59:16
## 350 4428 2282 83128 2014-10-08 21:59:16
## 351 10337 10519 89400 2011-09-13 13:10:27
## 352 81 116 7058 2013-02-11 18:22:53
## 353 648 118 3500 2010-05-25 23:22:15
## 354 161 305 11871 2016-03-18 20:56:45
## 355 262 96 17961 2020-12-10 23:02:12
## 356 262 96 17961 2020-12-10 23:02:12
122
## 357 262 96 17961 2020-12-10 23:02:12
## 358 262 96 17961 2020-12-10 23:02:12
## 359 2093 804 60438 2014-07-23 17:51:37
## 360 2093 804 60438 2014-07-23 17:51:37
## 361 668 15124 8307 2019-08-10 09:22:24
## 362 668 15124 8307 2019-08-10 09:22:24
## 363 668 15124 8307 2019-08-10 09:22:24
## 364 522 69 5066 2009-05-09 02:10:49
## 365 522 69 5066 2009-05-09 02:10:49
## 366 345 527 38639 2011-02-16 10:02:27
## 367 115 11 317 2020-09-20 12:21:58
## 368 115 11 317 2020-09-20 12:21:58
## 369 114 215 7561 2013-08-27 03:34:32
## 370 165 31 708 2014-12-11 19:32:36
## 371 2943 102 271 2021-02-05 01:25:29
## 372 751 185 6545 2014-08-01 02:16:46
## 373 3624 2289 33192 2012-09-10 19:19:40
## 374 3624 2289 33192 2012-09-10 19:19:40
## 375 2 2 203 2020-08-11 16:27:18
## 376 2 2 203 2020-08-11 16:27:18
## 377 2 2 203 2020-08-11 16:27:18
## 378 2 2 203 2020-08-11 16:27:18
## 379 4225 5750 23424 2008-12-07 04:28:09
## 380 269 28 439 2012-01-15 10:50:23
## 381 137 33 1308 2009-06-14 08:48:04
## 382 915 330 20023 2013-11-28 15:56:32
## 383 95 14 7323 2019-07-15 23:04:34
## 384 50 3 288 2020-11-06 14:31:12
## 385 880 371 29896 2020-07-15 23:16:45
## 386 880 371 29896 2020-07-15 23:16:45
## 387 429 438 507 2020-12-15 15:16:49
## 388 111 4 46 2017-06-22 22:30:23
## 389 111 4 46 2017-06-22 22:30:23
## 390 101 12 2801 2021-02-21 19:25:39
## 391 545 621 58003 2015-09-09 05:33:32
## 392 1954 383 38549 2013-02-12 00:46:23
## 393 851 666 33406 2012-02-28 16:02:22
## 394 851 666 33406 2012-02-28 16:02:22
## 395 672 30 308 2021-02-21 21:58:05
## 396 147 120 9184 2019-01-06 01:37:13
## 397 328 643 66665 2007-09-05 05:14:02
## 398 328 643 66665 2007-09-05 05:14:02
## 399 328 643 66665 2007-09-05 05:14:02
## 400 1323 37866 5687 2012-11-26 00:15:08
## 401 2861 1376 35166 2009-08-20 08:22:50
## 402 1131 216 5932 2015-05-21 08:02:57
## 403 1131 216 5932 2015-05-21 08:02:57
## 404 1131 216 5932 2015-05-21 08:02:57
## 405 6021 10116 14299 2018-10-22 14:48:46
## 406 81 116 7058 2013-02-11 18:22:53
## 407 254 742 34615 2017-06-09 20:03:53
## 408 11 2 248 2018-03-04 03:18:01
## 409 4567 3726 19292 2014-02-21 10:43:14
## 410 181 6 83 2019-03-03 12:31:43
123
## 411 181 6 83 2019-03-03 12:31:43
## 412 2182 727 4293 2018-09-19 05:20:33
## 413 94695 51876 219719 2008-08-20 10:57:27
## 414 2102 4447 63177 2012-10-05 16:17:07
## 415 590 1357 14592 2018-01-25 10:16:30
## 416 189 32 8048 2019-03-04 22:30:06
## 417 535 333 9857 2020-01-14 19:58:55
## 418 429 83 992 2013-11-15 17:28:56
## 419 584 96 867 2013-09-16 15:51:53
## 420 584 96 867 2013-09-16 15:51:53
## 421 3051 1686 35688 2011-04-16 10:28:16
## 422 54 41 2930 2013-08-10 14:33:11
## 423 348 500 23976 2011-12-16 13:44:53
## 424 4710 3588 132035 2013-01-14 22:03:22
## 425 4710 3588 132035 2013-01-14 22:03:22
## 426 1723 1723 16936 2018-08-27 18:53:18
## 427 1723 1723 16936 2018-08-27 18:53:18
## 428 1723 1723 16936 2018-08-27 18:53:18
## 429 1723 1723 16936 2018-08-27 18:53:18
## 430 1723 1723 16936 2018-08-27 18:53:18
## 431 147 5 75 2020-09-17 21:54:22
## 432 413 4117 12668 2009-12-17 12:51:24
## 433 595 65 3806 2020-03-17 02:10:07
## 434 595 65 3806 2020-03-17 02:10:07
## 435 5 226 7686 2013-01-10 01:25:04
## 436 73 1 762 2020-05-20 12:40:45
## 437 73 1 762 2020-05-20 12:40:45
## 438 185 29 1185 2015-04-29 21:13:15
## 439 2963 575 6407 2010-03-31 08:50:26
## 440 2963 575 6407 2010-03-31 08:50:26
## 441 2963 575 6407 2010-03-31 08:50:26
## 442 2963 575 6407 2010-03-31 08:50:26
## 443 68 62 1653 2011-04-19 09:02:05
## 444 68 62 1653 2011-04-19 09:02:05
## 445 68 62 1653 2011-04-19 09:02:05
## 446 303 1794 10052 2011-11-11 14:50:19
## 447 303 1794 10052 2011-11-11 14:50:19
## 448 714 1685 2222 2009-03-04 19:40:58
## 449 714 1685 2222 2009-03-04 19:40:58
## 450 785 203 14079 2011-07-25 21:07:03
## 451 785 203 14079 2011-07-25 21:07:03
## 452 555 182 21553 2019-06-30 02:23:18
## 453 33 341 8018 2018-02-21 02:46:50
## 454 174 77 1097 2016-01-15 13:55:09
## 455 174 77 1097 2016-01-15 13:55:09
## 456 174 77 1097 2016-01-15 13:55:09
## 457 174 77 1097 2016-01-15 13:55:09
## 458 385 387 26626 2016-01-09 00:03:17
## 459 1675 626 25372 2018-12-11 01:30:39
## 460 1675 626 25372 2018-12-11 01:30:39
## 461 1675 626 25372 2018-12-11 01:30:39
## 462 730 318 17742 2012-03-07 01:57:48
## 463 540 5209 36645 2012-09-28 19:08:40
## 464 188 173 2325 2019-10-06 18:42:41
124
## 465 188 173 2325 2019-10-06 18:42:41
## 466 954 193 1805 2012-08-28 11:14:06
## 467 156 125 6636 2011-01-04 21:09:52
## 468 1341 2739 12073 2009-03-16 12:21:49
## 469 2102 4447 63178 2012-10-05 16:17:07
## 470 2102 4447 63178 2012-10-05 16:17:07
## 471 707 401 7575 2010-10-11 15:35:21
## 472 4950 2026 7651 2008-09-03 04:26:05
## 473 125 552 62007 2018-06-04 21:54:11
## 474 125 552 62007 2018-06-04 21:54:11
## 475 125 552 62007 2018-06-04 21:54:11
## 476 103 11 1546 2017-08-14 21:48:03
## 477 199 80 2171 2016-08-05 18:26:55
## 478 199 80 2171 2016-08-05 18:26:55
## 479 41 36 1082 2014-01-20 03:35:44
## 480 1198 501 3481 2011-12-08 03:34:30
## 481 837 2617 118358 2014-09-04 04:07:18
## 482 837 2617 118358 2014-09-04 04:07:18
## 483 837 2617 118358 2014-09-04 04:07:18
## 484 4 6 204 2021-02-06 12:38:19
## 485 428 1189 31914 2009-05-04 20:39:09
## 486 428 1189 31914 2009-05-04 20:39:09
## 487 760 68 439 2020-04-30 02:04:01
## 488 953 900 18054 2011-09-22 02:10:05
## 489 213 88 11190 2013-09-06 01:48:18
## 490 457 36 298 2016-05-12 10:51:52
## 491 4339 1897 37349 2012-06-04 11:56:52
## 492 4339 1897 37349 2012-06-04 11:56:52
## 493 0 1504 76886 2016-05-14 16:28:29
## 494 2163 129020 9035 2011-01-28 00:47:44
## 495 2163 129020 9035 2011-01-28 00:47:44
## 496 5000 2390 174216 2013-02-01 01:37:38
## 497 5000 2390 174216 2013-02-01 01:37:38
## 498 5000 2390 174216 2013-02-01 01:37:38
## 499 5000 2390 174216 2013-02-01 01:37:38
## 500 5000 2390 174216 2013-02-01 01:37:38
## 501 5000 2390 174216 2013-02-01 01:37:38
## 502 5000 2390 174216 2013-02-01 01:37:38
## 503 5000 2390 174216 2013-02-01 01:37:38
## 504 5000 2390 174216 2013-02-01 01:37:38
## 505 470 1267 51134 2019-01-13 21:02:12
## 506 470 1267 51134 2019-01-13 21:02:12
## 507 1207 1244 41313 2017-09-29 05:27:08
## 508 210 304 8834 2014-12-23 07:13:45
## 509 210 304 8834 2014-12-23 07:13:45
## 510 306 322245 155016 2009-04-22 12:55:28
## 511 306 322245 155016 2009-04-22 12:55:28
## 512 1053 6974 91055 2017-03-26 07:47:40
## 513 1522 846 21376 2009-05-19 01:29:05
## 514 188 130 469 2019-07-13 15:06:34
## 515 20 8 253 2009-03-21 00:29:13
## 516 20 8 253 2009-03-21 00:29:13
## 517 575 17131 5292 2011-01-28 19:01:53
## 518 575 17131 5292 2011-01-28 19:01:53
125
## 519 2810 2150 304648 2009-01-20 22:52:50
## 520 2810 2150 304648 2009-01-20 22:52:50
## 521 828 12445 55596 2009-06-30 22:00:21
## 522 2263 2157 18810 2010-09-11 23:30:43
## 523 10418 9994 179636 2011-05-05 20:52:21
## 524 10418 9994 179636 2011-05-05 20:52:21
## 525 8 6 72 2020-01-26 20:40:18
## 526 8 6 72 2020-01-26 20:40:18
## 527 252 60 2660 2009-04-28 16:00:45
## 528 583 291 5886 2016-05-17 17:14:02
## 529 196 12 361 2021-01-17 03:22:59
## 530 2138 665 15069 2019-03-05 16:58:57
## 531 2138 665 15069 2019-03-05 16:58:57
## 532 115 0 111 2020-10-10 21:07:31
## 533 79 31 8118 2012-01-29 03:50:34
## 534 52 2 360 2021-03-06 21:58:09
## 535 52 2 360 2021-03-06 21:58:09
## 536 1192 341 55481 2015-08-01 20:18:58
## 537 1192 341 55481 2015-08-01 20:18:58
## 538 1192 341 55481 2015-08-01 20:18:58
## 539 401 76 497 2008-12-17 14:40:26
## 540 0 2 861 2020-03-22 14:58:15
## 541 0 2 861 2020-03-22 14:58:15
## 542 426 120 44938 2009-04-05 16:21:24
## 543 426 120 44938 2009-04-05 16:21:24
## 544 1821 3482 15593 2013-02-14 01:10:30
## 545 1144 846 63472 2010-09-11 17:20:52
## 546 1144 846 63472 2010-09-11 17:20:52
## 547 1144 846 63472 2010-09-11 17:20:52
## 548 1144 846 63472 2010-09-11 17:20:52
## 549 1144 846 63472 2010-09-11 17:20:52
## 550 1144 846 63472 2010-09-11 17:20:52
## 551 1144 846 63472 2010-09-11 17:20:52
## 552 1144 846 63472 2010-09-11 17:20:52
## 553 1144 846 63472 2010-09-11 17:20:52
## 554 1144 846 63472 2010-09-11 17:20:52
## 555 473 614 23543 2016-05-14 21:10:03
## 556 473 614 23543 2016-05-14 21:10:03
## 557 447 600 12777 2011-02-13 19:09:38
## 558 243 22 899 2014-05-26 12:03:09
## 559 1441 403 1412 2020-10-26 20:14:52
## 560 1441 403 1412 2020-10-26 20:14:52
## 561 1978 2943 170747 2009-08-11 09:08:50
## 562 73 12 569 2012-12-29 08:53:43
## 563 73 12 569 2012-12-29 08:53:43
## 564 73 12 569 2012-12-29 08:53:43
## 565 73 12 569 2012-12-29 08:53:43
## 566 3676 760 9113 2009-11-15 05:31:28
## 567 11366 305921 265479 2012-10-14 12:29:54
## 568 1131 216 5938 2015-05-21 08:02:57
## 569 1340 532 7085 2013-12-30 05:36:31
## 570 745 1417 27440 2013-10-09 12:40:24
## 571 67 150 472 2009-12-12 08:28:47
## 572 204 50 1201 2021-02-05 16:27:08
126
## 573 204 50 1201 2021-02-05 16:27:08
## 574 7 1 14 2021-03-10 09:43:48
## 575 112 61 949 2012-06-25 15:05:00
## 576 306 274 16804 2020-11-01 07:43:20
## 577 306 274 16804 2020-11-01 07:43:20
## 578 71 35 951 2012-11-22 15:25:54
## 579 42 1 3 2013-05-13 18:26:03
## 580 56 41 236 2020-05-14 19:14:30
## 581 56 41 236 2020-05-14 19:14:30
## 582 56 41 236 2020-05-14 19:14:30
## 583 56 41 236 2020-05-14 19:14:30
## 584 573 1015 6758 2018-10-23 17:49:38
## 585 573 1015 6758 2018-10-23 17:49:38
## 586 1450 708 14837 2011-03-10 03:23:58
## 587 50 3 85 2010-10-09 12:42:43
## 588 411 546 19804 2018-07-30 16:07:44
## 589 411 546 19804 2018-07-30 16:07:44
## 590 411 546 19804 2018-07-30 16:07:44
## 591 247 32 199 2011-05-18 19:09:15
## 592 77 58 552 2016-11-23 18:47:51
## 593 112 647 8084 2018-04-28 17:50:52
## 594 568 459 9583 2009-02-20 23:36:20
## 595 568 459 9583 2009-02-20 23:36:20
## 596 568 459 9583 2009-02-20 23:36:20
## 597 568 459 9583 2009-02-20 23:36:20
## 598 568 459 9583 2009-02-20 23:36:20
## 599 967 148 7898 2015-06-15 21:33:45
## 600 967 148 7898 2015-06-15 21:33:45
## 601 69 13 128 2021-02-14 04:59:38
## 602 27 0 88 2019-02-18 23:46:49
## 603 100 4619 16148 2011-06-20 02:31:47
## 604 100 4619 16148 2011-06-20 02:31:47
## 605 4616 3685 8499 2015-09-21 03:13:30
## 606 61 69 3003 2019-03-19 20:01:27
## 607 61 69 3003 2019-03-19 20:01:27
## 608 750 238 10939 2009-07-27 01:08:25
## 609 750 238 10939 2009-07-27 01:08:25
## 610 1800 1912 71083 2016-06-08 12:29:08
## 611 2487 901 26857 2012-03-20 17:45:46
## 612 2487 901 26857 2012-03-20 17:45:46
## 613 62 19 1561 2020-11-16 13:02:28
## 614 62 19 1561 2020-11-16 13:02:28
## 615 1131 216 5932 2015-05-21 08:02:57
## 616 1131 216 5932 2015-05-21 08:02:57
## 617 45 5 105 2021-02-13 21:05:55
## 618 225 46 2723 2020-05-30 12:56:47
## 619 225 46 2723 2020-05-30 12:56:47
## 620 225 46 2723 2020-05-30 12:56:47
## 621 225 46 2723 2020-05-30 12:56:47
## 622 54 1 268 2021-03-07 22:21:13
## 623 54 1 268 2021-03-07 22:21:13
## 624 482 324 5141 2018-08-12 20:09:36
## 625 2654 1133 10130 2019-08-21 10:25:38
## 626 2654 1133 10130 2019-08-21 10:25:38
127
## 627 2654 1133 10130 2019-08-21 10:25:38
## 628 2654 1133 10130 2019-08-21 10:25:38
## 629 54 28 68 2021-02-02 19:57:27
## 630 383 138 5290 2020-11-05 09:29:39
## 631 819 372 3772 2009-09-14 03:27:01
## 632 1067 526 7736 2015-05-05 20:40:51
## 633 1070 5481 6879 2019-08-26 19:27:10
## 634 345 13 1932 2021-02-18 21:27:14
## 635 84 6 396 2018-04-15 18:06:47
## 636 262 96 17961 2020-12-10 23:02:12
## 637 81 116 7058 2013-02-11 18:22:53
## 638 9052 11505 409673 2009-03-03 04:17:58
## 639 168 30 1966 2012-01-12 12:25:20
## 640 5001 1255 30457 2012-04-30 23:02:19
## 641 5001 1255 30457 2012-04-30 23:02:19
## 642 1171 778 19139 2019-04-09 21:11:38
## 643 1171 778 19139 2019-04-09 21:11:38
## 644 2971 3170 65572 2015-09-24 18:08:08
## 645 1963 294 1489 2009-03-29 07:40:16
## 646 39 25 958 2019-11-02 17:13:41
## 647 1384 212 3019 2012-04-24 16:07:58
## 648 1090 131 2062 2020-12-26 15:13:53
## 649 1090 131 2062 2020-12-26 15:13:53
## 650 115 25 4641 2019-01-07 19:08:14
## 651 1636 1528 9911 2011-02-17 16:13:50
## 652 1636 1528 9911 2011-02-17 16:13:50
## 653 1636 1528 9911 2011-02-17 16:13:50
## 654 1303 1830 42477 2013-10-01 01:45:49
## 655 2733 897 6629 2010-01-07 21:36:33
## 656 2733 897 6629 2010-01-07 21:36:33
## 657 828 28 5179 2018-09-02 13:08:48
## 658 1738 1495 7943 2011-12-13 13:01:39
## 659 1738 1495 7943 2011-12-13 13:01:39
## 660 517 151 1457 2021-01-14 06:11:21
## 661 517 151 1457 2021-01-14 06:11:21
## 662 517 151 1457 2021-01-14 06:11:21
## 663 2242 346 14570 2009-04-10 13:54:47
## 664 7593 6955 19773 2015-02-06 18:50:54
## 665 341 349 15844 2010-02-22 16:31:27
## 666 73 83 4158 2012-11-09 18:11:51
## 667 45 10 1656 2019-08-15 21:50:20
## 668 81 116 7058 2013-02-11 18:22:53
## 669 1832 38485 56707 2010-12-04 07:35:16
## 670 1832 38485 56707 2010-12-04 07:35:16
## 671 397 60 2906 2020-01-15 06:13:13
## 672 2025 1594 113603 2014-06-18 11:31:34
## 673 4314 4319 3789 2020-06-19 22:59:51
## 674 34 0 10 2021-01-26 18:33:16
## 675 34 0 10 2021-01-26 18:33:16
## 676 34 0 10 2021-01-26 18:33:16
## 677 180 504 7864 2019-02-24 04:39:08
## 678 180 504 7864 2019-02-24 04:39:08
## 679 180 504 7864 2019-02-24 04:39:08
## 680 180 504 7864 2019-02-24 04:39:08
128
## 681 180 504 7864 2019-02-24 04:39:08
## 682 413 4117 12669 2009-12-17 12:51:24
## 683 1382 2118 26324 2010-10-03 18:35:32
## 684 188 139 9823 2017-03-22 01:18:53
## 685 606 203 85299 2017-11-13 19:21:03
## 686 1891 1512 13961 2014-03-12 11:03:16
## 687 1007 340 50126 2015-01-13 16:03:16
## 688 1770 1799 11854 2009-08-13 10:30:32
## 689 1770 1799 11854 2009-08-13 10:30:32
## 690 1016 6205 28336 2014-04-10 14:29:32
## 691 252 41 1908 2016-11-18 22:06:41
## 692 274 119 761 2019-07-25 23:27:00
## 693 2785 5170 88382 2016-12-23 13:55:00
## 694 17 4 54 2021-03-08 03:35:48
## 695 17 4 54 2021-03-08 03:35:48
## 696 825 131 31246 2012-03-16 16:31:14
## 697 17 12 1987 2019-04-05 18:31:15
## 698 17 12 1987 2019-04-05 18:31:15
## 699 17 12 1987 2019-04-05 18:31:15
## 700 674 39 976 2012-10-07 22:13:17
## 701 674 39 976 2012-10-07 22:13:17
## 702 674 39 976 2012-10-07 22:13:17
## 703 765 1036 4526 2009-02-20 20:49:55
## 704 409 531 26115 2008-12-31 04:06:12
## 705 409 531 26115 2008-12-31 04:06:12
## 706 149 484 18737 2011-02-07 07:06:16
## 707 561 624 19081 2020-02-11 14:47:27
## 708 561 624 19081 2020-02-11 14:47:27
## 709 91 84 5220 2018-08-17 02:14:38
## 710 648 195 49409 2011-04-02 23:05:07
## 711 176 7 213 2020-10-13 21:12:28
## 712 4478 1499 3632 2013-05-19 14:13:48
## 713 4478 1499 3632 2013-05-19 14:13:48
## 714 49 28 5206 2020-10-02 19:40:15
## 715 553 121 1338 2020-12-12 12:16:45
## 716 3325 2595 7104 2020-08-27 13:48:53
## 717 190 395 54855 2015-12-13 04:59:28
## 718 190 395 54855 2015-12-13 04:59:28
## 719 190 395 54855 2015-12-13 04:59:28
## 720 190 395 54855 2015-12-13 04:59:28
## 721 242 60 2654 2013-08-27 20:55:59
## 722 3117 472 73895 2009-04-18 18:02:43
## 723 3117 472 73895 2009-04-18 18:02:43
## 724 283 420 2241 2013-09-08 17:11:27
## 725 1627 1550 29881 2017-06-21 00:17:08
## 726 1627 1550 29881 2017-06-21 00:17:08
## 727 1627 1550 29881 2017-06-21 00:17:08
## 728 1627 1550 29881 2017-06-21 00:17:08
## 729 1627 1550 29881 2017-06-21 00:17:08
## 730 1627 1550 29881 2017-06-21 00:17:08
## 731 1627 1550 29881 2017-06-21 00:17:08
## 732 1627 1550 29881 2017-06-21 00:17:08
## 733 631 539 70937 2012-09-04 12:30:44
## 734 631 539 70937 2012-09-04 12:30:44
129
## 735 631 539 70937 2012-09-04 12:30:44
## 736 1527 1127 25762 2009-05-13 14:16:02
## 737 1527 1127 25762 2009-05-13 14:16:02
## 738 446 131 3651 2020-08-31 18:05:52
## 739 446 131 3651 2020-08-31 18:05:52
## 740 446 131 3651 2020-08-31 18:05:52
## 741 446 131 3651 2020-08-31 18:05:52
## 742 446 131 3651 2020-08-31 18:05:52
## 743 446 131 3651 2020-08-31 18:05:52
## 744 55 248 688 2016-10-07 11:07:25
## 745 328 389 98615 2013-07-09 00:27:39
## 746 0 0 98 2020-12-19 21:49:30
## 747 0 0 98 2020-12-19 21:49:30
## 748 50 1 71 2020-12-24 12:41:52
## 749 833 733 3447 2009-03-24 23:07:00
## 750 63 107 431 2021-01-29 12:22:21
## 751 63 107 431 2021-01-29 12:22:21
## 752 63 107 431 2021-01-29 12:22:21
## 753 63 107 431 2021-01-29 12:22:21
## 754 63 107 431 2021-01-29 12:22:21
## 755 63 107 431 2021-01-29 12:22:21
## 756 63 107 431 2021-01-29 12:22:21
## 757 63 107 431 2021-01-29 12:22:21
## 758 63 107 431 2021-01-29 12:22:21
## 759 1435 1805 139972 2011-01-18 18:30:30
## 760 1435 1805 139972 2011-01-18 18:30:30
## 761 1435 1805 139972 2011-01-18 18:30:30
## 762 1435 1805 139972 2011-01-18 18:30:30
## 763 64 39 2346 2020-09-17 16:04:19
## 764 64 39 2346 2020-09-17 16:04:19
## 765 496 87 4144 2014-06-25 03:26:49
## 766 496 87 4144 2014-06-25 03:26:49
## 767 81 116 7058 2013-02-11 18:22:53
## 768 58 4 954 2011-07-08 16:55:53
## 769 58 4 954 2011-07-08 16:55:53
## 770 515 428 4396 2020-10-25 10:09:47
## 771 405 212 3224 2013-10-16 08:29:35
## 772 342 68636 174243 2017-02-07 05:41:28
## 773 928 147 439 2015-10-05 12:36:50
## 774 1070 5480 6879 2019-08-26 19:27:10
## 775 5001 3905 632658 2010-10-05 22:50:20
## 776 5001 3905 632658 2010-10-05 22:50:20
## 777 5001 3905 632658 2010-10-05 22:50:20
## 778 539 1028 7831 2010-10-04 01:28:39
## 779 5000 483 79503 2011-05-08 18:19:20
## 780 58 4 954 2011-07-08 16:55:53
## 781 595 141 4602 2009-12-10 22:51:58
## 782 595 141 4602 2009-12-10 22:51:58
## 783 595 141 4602 2009-12-10 22:51:58
## 784 82 81 3334 2016-10-20 16:52:05
## 785 68 1059 14060 2009-05-14 19:26:28
## 786 7 5 776 2011-03-29 08:37:19
## 787 318 135 1658 2013-03-18 10:30:53
## 788 173 75 8046 2015-04-18 12:56:59
130
## 789 173 75 8046 2015-04-18 12:56:59
## 790 1197 599 903 2019-10-28 15:01:03
## 791 377 226 3441 2010-03-07 17:19:51
## 792 377 226 3441 2010-03-07 17:19:51
## 793 18581 18267 556096 2011-06-18 12:47:49
## 794 204 49 1201 2021-02-05 16:27:08
## 795 204 49 1201 2021-02-05 16:27:08
## 796 493 532 1568 2020-10-21 18:01:04
## 797 1778 13983 9148 2010-06-18 04:20:55
## 798 1190 1760 2635 2011-11-19 08:04:03
## 799 353 52 8315 2011-02-14 02:42:33
## 800 418 160 7020 2009-05-09 02:30:08
## 801 1070 5480 6879 2019-08-26 19:27:10
## 802 1070 5480 6879 2019-08-26 19:27:10
## 803 1067 526 7736 2015-05-05 20:40:51
## 804 1067 526 7736 2015-05-05 20:40:51
## 805 1067 526 7736 2015-05-05 20:40:51
## 806 27 14 633 2020-11-19 23:20:48
## 807 1177 470 10511 2019-02-06 12:44:53
## 808 1177 470 10511 2019-02-06 12:44:53
## 809 165 649 40778 2009-09-02 18:41:46
## 810 27 29 1061 2020-03-16 13:04:38
## 811 27 29 1061 2020-03-16 13:04:38
## 812 27 29 1061 2020-03-16 13:04:38
## 813 704 1129 14813 2007-07-31 05:59:59
## 814 413 630 25578 2014-08-30 09:21:53
## 815 413 630 25578 2014-08-30 09:21:53
## 816 997 1359 74835 2009-04-23 18:14:01
## 817 52 39 7502 2013-01-31 15:50:12
## 818 3795 1893 8753 2015-02-21 18:47:02
## 819 82 81 3334 2016-10-20 16:52:05
## 820 708 210 7178 2009-03-11 03:15:33
## 821 51 36 1408 2020-09-30 10:31:14
## 822 51 36 1408 2020-09-30 10:31:14
## 823 51 36 1408 2020-09-30 10:31:14
## 824 0 4 1545 2020-10-08 12:10:03
## 825 667 953 47810 2012-12-13 02:25:38
## 826 661 668 41165 2009-04-20 18:23:50
## 827 325 283 7712 2009-09-29 21:06:48
## 828 21 19 986 2019-12-26 22:27:22
## 829 21 19 986 2019-12-26 22:27:22
## 830 283 656 7524 2018-08-26 00:55:12
## 831 0 0 41 2021-03-08 17:38:37
## 832 0 0 41 2021-03-08 17:38:37
## 833 2715 911 102330 2019-09-14 03:01:27
## 834 2715 911 102330 2019-09-14 03:01:27
## 835 2715 911 102330 2019-09-14 03:01:27
## 836 2715 911 102330 2019-09-14 03:01:27
## 837 158 24 940 2020-06-02 21:03:16
## 838 353 52 8315 2011-02-14 02:42:33
## 839 1561 256 12098 2013-09-14 01:53:50
## 840 199 158 9093 2012-09-03 16:23:06
## 841 76 6 362 2018-05-15 22:44:09
## 842 1139 963 13498 2011-01-11 18:39:17
131
## 843 1059 186 21574 2020-02-18 20:11:52
## 844 2918 1250 22697 2012-10-16 05:49:34
## 845 36 9 200 2020-04-20 23:21:17
## 846 36 9 200 2020-04-20 23:21:17
## 847 36 9 200 2020-04-20 23:21:17
## 848 555 182 21553 2019-06-30 02:23:18
## 849 555 182 21553 2019-06-30 02:23:18
## 850 555 182 21553 2019-06-30 02:23:18
## 851 1278 38041 93777 2017-03-23 08:59:08
## 852 1278 38041 93777 2017-03-23 08:59:08
## 853 1755 2349 102731 2009-06-19 21:17:02
## 854 934 47 8027 2019-09-20 23:32:05
## 855 934 47 8027 2019-09-20 23:32:05
## 856 253 150 3222 2018-10-11 15:22:10
## 857 253 150 3222 2018-10-11 15:22:10
## 858 760 1293 1137 2017-02-22 16:53:04
## 859 760 1293 1137 2017-02-22 16:53:04
## 860 760 1293 1137 2017-02-22 16:53:04
## 861 204 49 1201 2021-02-05 16:27:08
## 862 204 49 1201 2021-02-05 16:27:08
## 863 1255 2330 144477 2009-02-24 00:06:36
## 864 1255 2330 144477 2009-02-24 00:06:36
## 865 1255 2330 144477 2009-02-24 00:06:36
## 866 1255 2330 144477 2009-02-24 00:06:36
## 867 1255 2330 144477 2009-02-24 00:06:36
## 868 313 178 1635 2011-05-17 14:12:29
## 869 266 69 4310 2015-07-14 18:48:31
## 870 81 116 7058 2013-02-11 18:22:53
## 871 81 116 7058 2013-02-11 18:22:53
## 872 81 116 7058 2013-02-11 18:22:53
## 873 2654 1133 10130 2019-08-21 10:25:38
## 874 2654 1133 10130 2019-08-21 10:25:38
## 875 2654 1133 10130 2019-08-21 10:25:38
## 876 2654 1133 10130 2019-08-21 10:25:38
## 877 81 116 7058 2013-02-11 18:22:53
## 878 40 19 569 2017-10-11 05:17:58
## 879 1554 973 3448 2009-09-22 00:09:42
## 880 12 203 2907 2014-09-01 22:39:26
## 881 215 40 404 2011-10-21 23:52:15
## 882 330 51 58 2011-10-21 01:28:34
## 883 81 116 7058 2013-02-11 18:22:53
## 884 568 459 9593 2009-02-20 23:36:20
## 885 568 459 9593 2009-02-20 23:36:20
## 886 1294 582 6279 2019-10-15 11:09:22
## 887 1294 582 6279 2019-10-15 11:09:22
## 888 937 52370 4612 2011-03-06 02:35:10
## 889 284 62 1415 2018-02-21 03:42:35
## 890 216 88 1667 2014-01-29 23:59:25
## 891 605 6370 81435 2018-12-16 21:24:32
## 892 605 6370 81435 2018-12-16 21:24:32
## 893 605 6370 81435 2018-12-16 21:24:32
## 894 605 6370 81435 2018-12-16 21:24:32
## 895 605 6370 81435 2018-12-16 21:24:32
## 896 605 6370 81435 2018-12-16 21:24:32
132
## 897 469 563 71587 2015-07-24 13:53:58
## 898 970 4726 20822 2012-03-09 20:53:39
## 899 156 49 206 2013-06-27 19:59:50
## 900 156 49 206 2013-06-27 19:59:50
## 901 603 169 4019 2009-04-25 23:39:11
## 902 26 110 9089 2019-06-08 02:48:37
## 903 210 298 167 2016-03-28 22:22:10
## 904 4928 1341 29865 2008-01-07 15:56:09
## 905 3643 1455 46552 2009-04-16 17:44:37
## 906 357 156 970 2020-02-29 13:58:37
## 907 357 156 970 2020-02-29 13:58:37
## 908 2828 2892 36280 2009-06-03 14:17:15
## 909 2828 2892 36280 2009-06-03 14:17:15
## 910 426 120 44938 2009-04-05 16:21:24
## 911 426 120 44938 2009-04-05 16:21:24
## 912 2439 1822 22065 2009-04-20 17:09:00
## 913 2439 1822 22065 2009-04-20 17:09:00
## 914 316 81 35901 2020-01-29 19:39:00
## 915 448 215 7222 2009-04-24 11:36:02
## 916 712 205 24935 2009-05-14 06:15:06
## 917 712 205 24935 2009-05-14 06:15:06
## 918 1327 4670 15178 2009-08-06 12:13:28
## 919 1327 4670 15178 2009-08-06 12:13:28
## 920 1327 4670 15178 2009-08-06 12:13:28
## 921 55 13 100 2019-12-06 03:26:39
## 922 52 0 103 2020-06-09 09:51:34
## 923 0 0 14 2021-02-28 04:18:39
## 924 14 17 58 2020-11-10 17:30:11
## 925 5030 5254 74846 2015-08-28 12:51:05
## 926 5030 5254 74846 2015-08-28 12:51:05
## 927 52 2 360 2021-03-06 21:58:09
## 928 1807 690 32230 2009-01-21 05:19:09
## 929 1807 690 32230 2009-01-21 05:19:09
## 930 2113 4554 79814 2013-08-07 20:45:04
## 931 280 215 13858 2020-08-12 18:44:49
## 932 3789 5573 20265 2008-03-26 14:36:25
## 933 253 25 100 2018-04-27 13:40:51
## 934 4980 2958 55846 2012-09-08 11:23:56
## 935 268 275 7604 2019-05-17 20:06:28
## 936 3676 760 9113 2009-11-15 05:31:28
## 937 3676 760 9113 2009-11-15 05:31:28
## 938 44 3 476 2020-08-14 03:13:00
## 939 44 3 476 2020-08-14 03:13:00
## 940 297 28595 84422 2009-09-15 22:09:46
## 941 2889 1160 24824 2014-10-07 17:31:35
## 942 2889 1160 24824 2014-10-07 17:31:35
## 943 3240 1313 14078 2011-08-20 17:40:09
## 944 5001 3905 632658 2010-10-05 22:50:20
## 945 5001 3905 632658 2010-10-05 22:50:20
## 946 3995 1171 20461 2020-05-16 13:10:42
## 947 114 4 262 2020-08-11 02:27:37
## 948 5000 3683 202017 2010-11-28 03:00:56
## 949 5000 3683 202017 2010-11-28 03:00:56
## 950 1458 755996 38157 2009-03-03 20:46:34
133
## 951 1432 139 703 2019-02-24 23:11:23
## 952 143 6 278 2013-06-26 22:27:52
## 953 14 294 24 2020-10-08 16:36:29
## 954 2024 490 14338 2013-07-01 06:01:43
## 955 1131 216 5932 2015-05-21 08:02:57
## 956 170 144 227 2020-05-27 01:18:29
## 957 35 18 81 2021-01-22 17:14:25
## 958 753 585 15193 2019-05-23 16:03:38
## 959 753 585 15193 2019-05-23 16:03:38
## 960 3 5 333 2021-02-26 22:20:43
## 961 207 2 437 2021-01-27 09:17:31
## 962 17975 19562 554481 2009-01-28 09:58:52
## 963 1590 1792 44478 2011-10-17 15:04:07
## 964 212 9 46 2017-11-20 13:32:55
## 965 249 41 1894 2016-11-18 22:06:41
## 966 1699 1257 69267 2009-03-02 14:06:37
## 967 297 75 156 2021-01-31 11:53:46
## 968 1743 1673 14313 2009-10-03 17:13:03
## 969 3403 1506 70439 2007-03-27 08:48:20
## 970 207 327 27817 2015-10-11 00:06:56
## 971 207 327 27817 2015-10-11 00:06:56
## 972 97 7 46 2021-02-28 17:30:22
## 973 341 220 5462 2019-04-16 12:24:41
## 974 341 220 5462 2019-04-16 12:24:41
## 975 44 2363 7591 2019-07-02 12:35:10
## 976 44 2363 7591 2019-07-02 12:35:10
## 977 372 164 1214 2020-07-20 09:41:44
## 978 578 92 7545 2010-04-19 01:56:35
## 979 578 92 7545 2010-04-19 01:56:35
## 980 1038 209 10260 2011-06-23 11:58:09
## 981 205 68 1460 2020-09-11 17:55:21
## 982 121 41 1045 2008-06-28 23:54:03
## 983 204 50 1201 2021-02-05 16:27:08
## 984 204 50 1201 2021-02-05 16:27:08
## 985 2079 213146 255111 2008-05-19 14:48:59
## 986 5011 10634 92797 2008-03-11 03:47:38
## 987 646 642 14171 2009-12-13 18:27:16
## 988 2154 695 3326 2009-06-30 20:44:07
## 989 2154 695 3326 2009-06-30 20:44:07
## 990 2154 695 3326 2009-06-30 20:44:07
## 991 352 82 10464 2009-02-05 23:12:35
## 992 352 82 10464 2009-02-05 23:12:35
## 993 352 82 10464 2009-02-05 23:12:35
## 994 57 759 10049 2017-04-10 07:54:53
## 995 667 474 6960 2015-09-02 22:17:57
## 996 667 474 6960 2015-09-02 22:17:57
## 997 667 474 6960 2015-09-02 22:17:57
## 998 409 9505 7417 2008-10-04 15:16:21
## 999 2285 818 11142 2009-01-03 12:14:16
## 1000 0 4 1548 2020-10-08 12:10:03
## 1001 4794 3958 40141 2009-06-17 14:25:15
## 1002 567 459 50937 2011-10-17 11:01:07
## 1003 234 49 8008 2016-11-15 00:24:11
## 1004 547 121 2002 2020-01-23 14:12:52
134
## 1005 419 373 3503 2015-06-08 18:55:07
## 1006 419 373 3503 2015-06-08 18:55:07
## 1007 1349 1093 33532 2011-02-08 08:47:48
## 1008 1349 1093 33532 2011-02-08 08:47:48
## 1009 1349 1093 33532 2011-02-08 08:47:48
## 1010 1349 1093 33532 2011-02-08 08:47:48
## 1011 448 215 7222 2009-04-24 11:36:02
## 1012 448 215 7222 2009-04-24 11:36:02
## 1013 297 28595 84422 2009-09-15 22:09:46
## 1014 297 28595 84422 2009-09-15 22:09:46
## 1015 297 28595 84422 2009-09-15 22:09:46
## 1016 297 28595 84422 2009-09-15 22:09:46
## 1017 297 28595 84422 2009-09-15 22:09:46
## 1018 297 28595 84422 2009-09-15 22:09:46
## 1019 1078 184 11587 2009-04-23 23:41:43
## 1020 1078 184 11587 2009-04-23 23:41:43
## 1021 1078 184 11587 2009-04-23 23:41:43
## 1022 173 43 982 2016-07-29 10:15:07
## 1023 173 43 982 2016-07-29 10:15:07
## 1024 173 43 982 2016-07-29 10:15:07
## 1025 173 43 982 2016-07-29 10:15:07
## 1026 121 55 2076 2020-12-20 20:34:56
## 1027 740 232 2879 2011-06-02 20:13:38
## 1028 740 232 2879 2011-06-02 20:13:38
## 1029 740 232 2879 2011-06-02 20:13:38
## 1030 740 232 2879 2011-06-02 20:13:38
## 1031 858 592 11004 2018-12-09 17:41:10
## 1032 1352 1295 33314 2009-03-31 03:07:28
## 1033 169 490 28402 2020-02-14 07:07:18
## 1034 169 490 28402 2020-02-14 07:07:18
## 1035 169 490 28402 2020-02-14 07:07:18
## 1036 169 490 28402 2020-02-14 07:07:18
## 1037 169 490 28402 2020-02-14 07:07:18
## 1038 3199 1589 7389 2010-01-09 18:01:03
## 1039 3199 1589 7389 2010-01-09 18:01:03
## 1040 73 83 4158 2012-11-09 18:11:51
## 1041 73 83 4158 2012-11-09 18:11:51
## 1042 5508 20597 18610 2011-03-31 16:49:56
## 1043 68 1058 14062 2009-05-14 19:26:28
## 1044 68 1058 14062 2009-05-14 19:26:28
## 1045 68 1058 14062 2009-05-14 19:26:28
## 1046 68 1058 14062 2009-05-14 19:26:28
## 1047 68 1058 14062 2009-05-14 19:26:28
## 1048 141 427 8039 2013-03-19 12:00:20
## 1049 268 275 7604 2019-05-17 20:06:28
## 1050 81 116 7058 2013-02-11 18:22:53
## 1051 4988 1510 70802 2009-02-24 10:37:32
## 1052 48 50 1436 2012-02-05 16:50:01
## 1053 3581 3721 6371 2013-10-27 17:04:50
## 1054 134 971 517 2010-09-07 18:25:47
## 1055 1070 668 13586 2009-06-18 14:36:24
## 1056 551 166 5796 2011-10-01 18:43:41
## 1057 551 166 5796 2011-10-01 18:43:41
## 1058 43 1 159 2021-02-22 09:15:39
135
## 1059 2733 897 6629 2010-01-07 21:36:33
## 1060 112 16 298 2020-06-15 19:34:06
## 1061 1877 2134 41214 2009-04-05 02:24:58
## 1062 137 95 2861 2020-05-05 13:34:28
## 1063 137 95 2861 2020-05-05 13:34:28
## 1064 2426 1017 3074 2009-06-18 13:06:33
## 1065 2426 1017 3074 2009-06-18 13:06:33
## 1066 11 0 9 2018-10-10 02:44:59
## 1067 552 77 2780 2012-05-12 04:21:31
## 1068 2010 2217 210279 2009-06-11 15:25:50
## 1069 2010 2217 210279 2009-06-11 15:25:50
## 1070 3652 835 10772 2009-05-18 17:36:46
## 1071 3652 835 10772 2009-05-18 17:36:46
## 1072 2925 2421 94710 2009-09-02 15:23:29
## 1073 2439 1822 22065 2009-04-20 17:09:00
## 1074 45 5 105 2021-02-13 21:05:55
## 1075 2749 7161 8313 2012-05-09 19:43:38
## 1076 5001 345 55902 2017-09-22 03:46:46
## 1077 872 356 359 2021-01-09 17:17:22
## 1078 2654 1133 10131 2019-08-21 10:25:38
## 1079 473 614 23541 2016-05-14 21:10:03
## 1080 1401 450 10284 2011-01-02 00:36:17
## 1081 1401 450 10284 2011-01-02 00:36:17
## 1082 1401 450 10284 2011-01-02 00:36:17
## 1083 1401 450 10284 2011-01-02 00:36:17
## 1084 1401 450 10284 2011-01-02 00:36:17
## 1085 1401 450 10284 2011-01-02 00:36:17
## 1086 1401 450 10284 2011-01-02 00:36:17
## 1087 1401 450 10284 2011-01-02 00:36:17
## 1088 297 28595 84422 2009-09-15 22:09:46
## 1089 297 28595 84422 2009-09-15 22:09:46
## 1090 297 28595 84422 2009-09-15 22:09:46
## 1091 297 28595 84422 2009-09-15 22:09:46
## 1092 297 28595 84422 2009-09-15 22:09:46
## 1093 123 7 1556 2010-01-07 17:37:54
## 1094 123 7 1556 2010-01-07 17:37:54
## 1095 304 93 561 2019-12-08 22:53:30
## 1096 304 93 561 2019-12-08 22:53:30
## 1097 205 68 1463 2020-09-11 17:55:21
## 1098 413 9730 50464 2018-04-08 17:21:42
## 1099 2417 1248 1826 2018-06-22 00:22:20
## 1100 176 7 213 2020-10-13 21:12:28
## 1101 286 57 1758 2011-02-25 22:01:46
## 1102 0 2 586 2020-10-18 19:38:05
## 1103 572 328 13593 2019-09-22 16:46:07
## 1104 2349 1371 14630 2010-09-16 09:23:57
## 1105 1657 484 6154 2014-10-03 08:17:50
## 1106 1657 484 6154 2014-10-03 08:17:50
## 1107 998 2930 26662 2010-10-29 08:44:53
## 1108 381 168 1949 2009-03-25 03:17:39
## 1109 441 68 1615 2010-12-27 14:38:24
## 1110 2795 431 13536 2010-08-27 16:48:47
## 1111 14713 15714 293428 2009-08-25 16:49:15
## 1112 542 97 753 2010-07-30 17:33:36
136
## 1113 218 142 1228 2011-02-15 12:51:54
## 1114 12 2 292 2014-05-20 04:59:40
## 1115 2251 485 5030 2011-09-15 02:43:59
## 1116 949 487 29223 2008-09-11 13:42:52
## 1117 949 487 29223 2008-09-11 13:42:52
## 1118 153 24 41 2009-06-23 00:13:38
## 1119 7790 10344 66317 2012-08-15 19:53:52
## 1120 585 202 6643 2010-02-28 17:36:29
## 1121 1001 1348 58843 2009-03-19 16:14:01
## 1122 83 265 24130 2011-04-13 21:50:56
## 1123 299 45 669 2015-11-28 19:00:25
## 1124 299 45 669 2015-11-28 19:00:25
## 1125 299 45 669 2015-11-28 19:00:25
## 1126 299 45 669 2015-11-28 19:00:25
## 1127 299 45 669 2015-11-28 19:00:25
## 1128 299 45 669 2015-11-28 19:00:25
## 1129 299 45 669 2015-11-28 19:00:25
## 1130 1759 1866 15609 2011-08-06 16:36:19
## 1131 1759 1866 15609 2011-08-06 16:36:19
## 1132 1252 816 51210 2012-04-10 14:23:48
## 1133 1252 816 51210 2012-04-10 14:23:48
## 1134 4988 443 22505 2016-04-19 18:44:04
## 1135 2395 621 3976 2009-07-22 03:03:13
## 1136 88 180 2647 2018-02-02 05:47:59
## 1137 419 492 3952 2010-06-15 19:10:22
## 1138 2998 806 71426 2009-06-08 03:48:48
## 1139 1417 325 602 2011-05-02 08:55:11
## 1140 1417 325 602 2011-05-02 08:55:11
## 1141 702 471 26020 2010-10-07 22:30:24
## 1142 384 366 136 2020-07-02 07:59:44
## 1143 141 1503 8402 2019-04-01 23:34:55
## 1144 1008 209 14029 2009-08-13 00:27:16
## 1145 136 43 495 2015-07-19 10:40:14
## 1146 136 43 495 2015-07-19 10:40:14
## 1147 0 117 11417 2011-08-21 21:15:56
## 1148 3 58 4190 2020-03-20 19:00:59
## 1149 88 49 7922 2020-11-11 20:41:35
## 1150 4946 607 4990 2013-10-11 14:40:39
## 1151 4946 607 4990 2013-10-11 14:40:39
## 1152 695 160 3701 2010-08-16 18:00:10
## 1153 1186 210 7867 2009-08-27 00:14:54
## 1154 605 6372 81439 2018-12-16 21:24:32
## 1155 605 6372 81448 2018-12-16 21:24:32
## 1156 605 6372 81448 2018-12-16 21:24:32
## 1157 605 6372 81448 2018-12-16 21:24:32
## 1158 173 99 2668 2020-07-03 12:31:14
## 1159 270 94 13029 2012-12-12 20:40:01
## 1160 270 94 13029 2012-12-12 20:40:01
## 1161 54 41 2930 2013-08-10 14:33:11
## 1162 50 706 21642 2014-03-26 11:32:25
## 1163 141 89 957 2017-03-10 22:15:04
## 1164 137 33 1308 2009-06-14 08:48:04
## 1165 137 33 1308 2009-06-14 08:48:04
## 1166 5352 122174 31700 2010-01-20 22:40:26
137
## 1167 665 3100 242464 2010-08-06 09:49:26
## 1168 369 30 1428 2020-06-26 06:01:01
## 1169 631 539 70925 2012-09-04 12:30:44
## 1170 2161 350 4206 2020-10-24 21:25:37
## 1171 96 21 299 2020-02-15 05:27:04
## 1172 96 21 299 2020-02-15 05:27:04
## 1173 1327 4670 15178 2009-08-06 12:13:28
## 1174 1327 4670 15178 2009-08-06 12:13:28
## 1175 551 543 4076 2018-11-27 17:33:55
## 1176 596 155 27522 2013-10-02 04:05:35
## 1177 596 155 27522 2013-10-02 04:05:35
## 1178 51 8 1364 2020-11-15 14:00:59
## 1179 27 1 172 2021-01-21 13:26:46
## 1180 188 24 381 2011-02-12 08:57:54
## 1181 828 12445 55596 2009-06-30 22:00:21
## 1182 426 342 3123 2013-07-11 18:36:29
## 1183 426 342 3123 2013-07-11 18:36:29
## 1184 4992 4378 85032 2009-07-21 15:26:27
## 1185 837 233 3033 2010-02-09 17:38:26
## 1186 928 147 439 2015-10-05 12:36:50
## 1187 928 147 439 2015-10-05 12:36:50
## 1188 928 147 439 2015-10-05 12:36:50
## 1189 2004 1384 22901 2008-03-16 18:34:32
## 1190 175 277 257 2009-07-19 16:56:45
## 1191 175 277 257 2009-07-19 16:56:45
## 1192 1292 657 18495 2009-03-25 16:12:35
## 1193 61 38 690 2012-07-12 18:55:28
## 1194 61 38 690 2012-07-12 18:55:28
## 1195 61 38 690 2012-07-12 18:55:28
## 1196 61 38 690 2012-07-12 18:55:28
## 1197 1393 52 7621 2020-11-26 15:17:50
## 1198 1393 52 7621 2020-11-26 15:17:50
## 1199 1393 52 7621 2020-11-26 15:17:50
## 1200 1393 52 7621 2020-11-26 15:17:50
## 1201 33 1338 10207 2015-01-02 02:08:36
## 1202 33 1338 10207 2015-01-02 02:08:36
## 1203 33 1338 10207 2015-01-02 02:08:36
## 1204 141 1504 8402 2019-04-01 23:34:55
## 1205 141 1504 8402 2019-04-01 23:34:55
## 1206 2772 12758 83964 2012-01-03 06:00:20
## 1207 2772 12758 83964 2012-01-03 06:00:20
## 1208 2772 12758 83964 2012-01-03 06:00:20
## 1209 2772 12758 83964 2012-01-03 06:00:20
## 1210 172 171 2301 2014-06-04 14:37:32
## 1211 172 171 2301 2014-06-04 14:37:32
## 1212 760 68 439 2020-04-30 02:04:01
## 1213 2760 3162 54972 2009-11-13 07:53:02
## 1214 353 654 9046 2009-07-16 00:50:43
## 1215 1192 341 55481 2015-08-01 20:18:58
## 1216 1192 341 55481 2015-08-01 20:18:58
## 1217 1192 341 55481 2015-08-01 20:18:58
## 1218 180 537 86321 2015-07-01 18:41:41
## 1219 593 466 63366 2010-10-01 02:54:10
## 1220 68 6 246 2019-02-12 13:37:21
138
## 1221 68 6 246 2019-02-12 13:37:21
## 1222 628 1476 74023 2011-09-30 16:00:06
## 1223 38 21 2037 2014-06-13 20:03:27
## 1224 72 45 2739 2020-08-09 02:12:48
## 1225 335 71 4077 2009-06-15 04:00:44
## 1226 335 71 4077 2009-06-15 04:00:44
## 1227 668 487 10090 2009-10-22 18:42:19
## 1228 668 487 10090 2009-10-22 18:42:19
## 1229 3222 3210 124101 2011-04-27 22:41:36
## 1230 3222 3210 124101 2011-04-27 22:41:36
## 1231 3222 3210 124101 2011-04-27 22:41:36
## 1232 3222 3210 124101 2011-04-27 22:41:36
## 1233 3222 3210 124101 2011-04-27 22:41:36
## 1234 1223 195 9012 2020-06-09 22:07:47
## 1235 113 21 252 2016-06-12 18:18:45
## 1236 4917 1825 935 2019-04-12 10:10:19
## 1237 4917 1825 935 2019-04-12 10:10:19
## 1238 284 42 10163 2019-03-18 14:21:47
## 1239 5000 1255 30456 2012-04-30 23:02:19
## 1240 5000 1255 30456 2012-04-30 23:02:19
## 1241 1133 122 1026 2019-12-24 21:04:16
## 1242 1133 122 1026 2019-12-24 21:04:16
## 1243 1499 1382 43147 2009-04-27 20:54:52
## 1244 1499 1382 43147 2009-04-27 20:54:52
## 1245 201 169 2468 2018-08-04 21:57:38
## 1246 559 79 7443 2009-01-24 06:21:53
## 1247 2497 1139 37748 2010-09-05 16:46:09
## 1248 774 116 1471 2019-03-31 13:35:44
## 1249 1984 1967 73397 2010-01-26 22:55:45
## 1250 440 772 6847 2010-06-03 02:12:46
## 1251 8612 9219 158081 2012-05-11 18:14:40
## 1252 8612 9219 158081 2012-05-11 18:14:40
## 1253 8612 9219 158081 2012-05-11 18:14:40
## 1254 8612 9219 158081 2012-05-11 18:14:40
## 1255 2597 4620 40361 2010-08-07 03:51:04
## 1256 1387 551 6113 2009-07-02 13:05:42
## 1257 425 119 577 2010-10-09 21:03:07
## 1258 266 92 2194 2010-03-10 17:17:55
## 1259 41 40 2935 2019-09-27 19:21:43
## 1260 41 40 2935 2019-09-27 19:21:43
## 1261 41 40 2935 2019-09-27 19:21:43
## 1262 5000 3720 246751 2011-11-28 00:57:22
## 1263 5000 3720 246751 2011-11-28 00:57:22
## 1264 5000 3720 246751 2011-11-28 00:57:22
## 1265 4794 3958 40139 2009-06-17 14:25:15
## 1266 2309 702 11722 2010-10-24 17:19:45
## 1267 35 17 714 2021-02-16 00:06:36
## 1268 3199 2074 52477 2011-12-28 02:52:44
## 1269 836 467 12165 2010-11-10 09:08:44
## 1270 1414 11145 29133 2016-08-05 06:55:55
## 1271 1302 1978 33633 2010-08-20 00:17:20
## 1272 1355 383 3644 2010-06-24 01:25:39
## 1273 1355 383 3644 2010-06-24 01:25:39
## 1274 1355 383 3644 2010-06-24 01:25:39
139
## 1275 18 4 844 2021-02-07 12:33:55
## 1276 4663 3681 3058 2010-01-19 21:43:15
## 1277 339 526 49265 2013-09-19 03:50:45
## 1278 95 14 7323 2019-07-15 23:04:34
## 1279 95 14 7323 2019-07-15 23:04:34
## 1280 95 14 7323 2019-07-15 23:04:34
## 1281 3 0 7 2016-11-21 10:25:05
## 1282 267 245 519 2020-05-30 20:27:28
## 1283 805 359 6422 2019-04-12 00:00:14
## 1284 805 359 6422 2019-04-12 00:00:14
## 1285 805 359 6422 2019-04-12 00:00:14
## 1286 1281 353 1752 2019-12-05 02:57:03
## 1287 3189 55794 74844 2009-11-02 21:15:43
## 1288 473 614 23543 2016-05-14 21:10:03
## 1289 473 614 23543 2016-05-14 21:10:03
## 1290 4450 2574 87249 2008-09-08 19:57:52
## 1291 3001 2450 79410 2014-01-01 00:21:00
## 1292 117 51 1540 2010-10-17 09:26:27
## 1293 1255 2330 144477 2009-02-24 00:06:36
## 1294 1255 2330 144477 2009-02-24 00:06:36
## 1295 1255 2330 144477 2009-02-24 00:06:36
## 1296 1255 2330 144477 2009-02-24 00:06:36
## 1297 1255 2330 144477 2009-02-24 00:06:36
## 1298 1255 2330 144477 2009-02-24 00:06:36
## 1299 1554 973 3447 2009-09-22 00:09:42
## 1300 1554 973 3447 2009-09-22 00:09:42
## 1301 368 167 9314 2016-12-29 15:26:52
## 1302 55 9 919 2019-08-07 10:07:59
## 1303 61 6 516 2020-07-13 08:24:56
## 1304 1343 10443 84504 2017-02-26 05:27:22
## 1305 62 1 31 2021-03-05 09:54:51
## 1306 62 1 31 2021-03-05 09:54:51
## 1307 801 793 18285 2012-02-23 21:56:03
## 1308 2141 155 6000 2012-03-18 18:20:55
## 1309 79 0 346 2020-01-18 01:15:47
## 1310 933 788 202051 2010-06-11 06:05:44
## 1311 4090 3296 176643 2008-09-22 19:27:10
## 1312 1159 227 1975 2014-08-15 23:30:36
## 1313 2028 3242 27002 2010-10-09 16:00:40
## 1314 2028 3242 27002 2010-10-09 16:00:40
## 1315 48 79 2308 2019-08-13 16:17:51
## 1316 5432 5214 4132 2014-09-02 13:37:13
## 1317 2465 545 9629 2018-01-13 15:51:48
## 1318 2465 545 9629 2018-01-13 15:51:48
## 1319 2465 545 9629 2018-01-13 15:51:48
## 1320 2654 1133 10130 2019-08-21 10:25:38
## 1321 2654 1133 10130 2019-08-21 10:25:38
## 1322 2654 1133 10130 2019-08-21 10:25:38
## 1323 1895 17306 49287 2009-07-01 15:19:53
## 1324 750 808 21676 2020-09-01 15:13:07
## 1325 599 1012 72955 2009-03-20 20:38:54
## 1326 194 32 785 2017-09-03 19:02:45
## 1327 374 124 3021 2011-09-17 16:58:42
## 1328 665 294 7653 2012-01-04 03:26:11
140
## 1329 2036 1017 15916 2017-11-10 17:26:14
## 1330 2036 1017 15916 2017-11-10 17:26:14
## 1331 3025 4795 150618 2010-12-17 15:21:45
## 1332 108 50 372 2020-12-03 17:53:31
## 1333 38 21 2037 2014-06-13 20:03:27
## 1334 2242 594 3087 2009-09-14 01:23:52
## 1335 2242 594 3087 2009-09-14 01:23:52
## 1336 521 6799 2426 2012-10-12 20:13:51
## 1337 1283 211 2006 2008-04-02 07:46:25
## 1338 1283 211 2006 2008-04-02 07:46:25
## 1339 131 100 3033 2015-07-22 20:33:04
## 1340 325 38 3258 2012-09-12 21:46:45
## 1341 675 29 862 2016-08-14 16:19:04
## 1342 710 197 7214 2009-03-05 23:52:26
## 1343 42 516 628 2011-08-11 17:41:26
## 1344 494 1419 52593 2019-05-01 07:12:22
## 1345 494 1419 52593 2019-05-01 07:12:22
## 1346 516 359 4805 2020-11-24 17:35:09
## 1347 2784 5172 88374 2016-12-23 13:55:00
## 1348 2784 5172 88374 2016-12-23 13:55:00
## 1349 2784 5172 88374 2016-12-23 13:55:00
## 1350 2784 5172 88374 2016-12-23 13:55:00
## 1351 2784 5172 88374 2016-12-23 13:55:00
## 1352 2784 5172 88374 2016-12-23 13:55:00
## 1353 66 412 14226 2010-05-20 11:30:42
## 1354 66 412 14226 2010-05-20 11:30:42
## 1355 383 233 44287 2015-08-15 10:45:02
## 1356 377 299 4773 2012-01-30 16:03:50
## 1357 227 17 12 2021-02-17 08:12:00
## 1358 429 438 507 2020-12-15 15:16:49
## 1359 933 788 202065 2010-06-11 06:05:44
## 1360 141 1503 8402 2019-04-01 23:34:55
## 1361 0 7 538 2019-12-23 16:53:13
## 1362 138 187 14322 2009-05-10 04:00:31
## 1363 4684 6347 273067 2008-03-26 20:53:12
## 1364 650 4787 14508 2012-05-18 18:16:25
## 1365 268 275 7604 2019-05-17 20:06:28
## 1366 268 275 7604 2019-05-17 20:06:28
## 1367 36 9 200 2020-04-20 23:21:17
## 1368 36 9 200 2020-04-20 23:21:17
## 1369 36 9 200 2020-04-20 23:21:17
## 1370 440 1041 4113 2018-05-31 17:55:52
## 1371 5001 3906 632662 2010-10-05 22:50:20
## 1372 1232 124 12830 2011-05-31 14:21:46
## 1373 469 563 71587 2015-07-24 13:53:58
## 1374 469 563 71587 2015-07-24 13:53:58
## 1375 469 563 71587 2015-07-24 13:53:58
## 1376 469 563 71587 2015-07-24 13:53:58
## 1377 469 563 71587 2015-07-24 13:53:58
## 1378 469 563 71587 2015-07-24 13:53:58
## 1379 469 563 71587 2015-07-24 13:53:58
## 1380 94695 51876 219719 2008-08-20 10:57:27
## 1381 1131 216 5939 2015-05-21 08:02:57
## 1382 1131 216 5939 2015-05-21 08:02:57
141
## 1383 1066 1206 175 2015-12-13 15:04:24
## 1384 1450 1026 17167 2009-02-13 18:39:59
## 1385 1450 1026 17167 2009-02-13 18:39:59
## 1386 75 1163 1840 2018-06-09 08:05:12
## 1387 1291 654 22632 2011-08-19 06:45:42
## 1388 1291 654 22632 2011-08-19 06:45:42
## 1389 529 168 5855 2015-01-27 09:49:56
## 1390 29 30 5696 2021-01-01 16:50:24
## 1391 29 30 5696 2021-01-01 16:50:24
## 1392 42 21 819 2012-07-23 20:38:48
## 1393 42 21 819 2012-07-23 20:38:48
## 1394 42 21 819 2012-07-23 20:38:48
## 1395 736 1651 10515 2009-03-11 03:50:59
## 1396 3 0 280 2020-10-16 23:48:54
## 1397 3 0 280 2020-10-16 23:48:54
## 1398 2933 2228 23061 2011-01-12 23:47:38
## 1399 391 87 4677 2015-07-02 19:11:13
## 1400 391 87 4677 2015-07-02 19:11:13
## 1401 391 87 4677 2015-07-02 19:11:13
## 1402 391 87 4677 2015-07-02 19:11:13
## 1403 391 87 4677 2015-07-02 19:11:13
## 1404 391 87 4677 2015-07-02 19:11:13
## 1405 5 226 7686 2013-01-10 01:25:04
## 1406 5 226 7686 2013-01-10 01:25:04
## 1407 388 42 1139 2009-06-02 23:49:58
## 1408 210 1239 1360 2013-06-28 23:52:37
## 1409 283 272 3421 2014-12-30 10:45:13
## 1410 1192 341 55481 2015-08-01 20:18:58
## 1411 1192 341 55481 2015-08-01 20:18:58
## 1412 137 33 1308 2009-06-14 08:48:04
## 1413 269 24 4284 2018-08-05 11:05:45
## 1414 269 24 4284 2018-08-05 11:05:45
## 1415 269 24 4284 2018-08-05 11:05:45
## 1416 1385 810 7247 2009-05-28 02:00:51
## 1417 2590 185 4112 2018-11-25 05:28:34
## 1418 11 19 555 2020-12-09 04:50:40
## 1419 11 19 555 2020-12-09 04:50:40
## 1420 11 19 555 2020-12-09 04:50:40
## 1421 11 19 555 2020-12-09 04:50:40
## 1422 11 19 555 2020-12-09 04:50:40
## 1423 176 49 3457 2013-04-19 10:52:39
## 1424 1196 1396 4686 2011-02-10 02:07:22
## 1425 297 28595 84422 2009-09-15 22:09:46
## 1426 481 63 596 2021-02-07 14:19:58
## 1427 1224 8090 23793 2019-02-05 16:45:23
## 1428 158 200 6902 2014-08-24 16:00:06
## 1429 158 200 6902 2014-08-24 16:00:06
## 1430 158 200 6902 2014-08-24 16:00:06
## 1431 158 200 6902 2014-08-24 16:00:06
## 1432 491 126 2667 2013-10-11 06:00:04
## 1433 1536 1439 67995 2009-03-14 00:26:23
## 1434 18 4 844 2021-02-07 12:33:55
## 1435 741 743 4891 2013-06-01 07:48:32
## 1436 2319 1630 56170 2009-02-10 21:58:25
142
## 1437 2263 2157 18810 2010-09-11 23:30:43
## 1438 2263 2157 18810 2010-09-11 23:30:43
## 1439 0 2 224 2020-09-13 04:39:30
## 1440 0 2 224 2020-09-13 04:39:30
## 1441 0 2 224 2020-09-13 04:39:30
## 1442 185 95 4677 2009-07-14 02:47:20
## 1443 1131 216 5938 2015-05-21 08:02:57
## 1444 32 0 56 2021-01-27 12:52:03
## 1445 32 0 56 2021-01-27 12:52:03
## 1446 45 3 45 2021-02-08 11:30:04
## 1447 26 133 28013 2010-07-18 16:13:19
## 1448 4301 1437 27022 2013-07-31 21:37:52
## 1449 66 412 14226 2010-05-20 11:30:42
## 1450 66 412 14226 2010-05-20 11:30:42
## 1451 26 110 9089 2019-06-08 02:48:37
## 1452 0 0 41 2021-03-08 17:38:37
## 1453 1990 4395 26134 2009-04-13 22:45:28
## 1454 602 421 3162 2020-01-14 20:09:01
## 1455 314 26 3665 2011-03-18 23:58:58
## 1456 2828 2892 36280 2009-06-03 14:17:15
## 1457 2111 2410 61692 2009-04-19 07:18:01
## 1458 2111 2410 61692 2009-04-19 07:18:01
## 1459 1 0 155 2020-07-20 13:49:51
## 1460 1 0 155 2020-07-20 13:49:51
## 1461 1 0 155 2020-07-20 13:49:51
## 1462 3067 1147 117153 2010-04-01 02:49:34
## 1463 233 44 4842 2015-02-14 22:31:18
## 1464 176 146 7230 2009-05-19 05:14:01
## 1465 68 1057 14059 2009-05-14 19:26:28
## 1466 68 1057 14059 2009-05-14 19:26:28
## 1467 68 1057 14059 2009-05-14 19:26:28
## 1468 70 34 1715 2018-11-13 21:15:14
## 1469 70 34 1715 2018-11-13 21:15:14
## 1470 1118 1815 175121 2017-10-27 18:32:51
## 1471 1118 1815 175121 2017-10-27 18:32:51
## 1472 498 29 6384 2014-10-30 01:16:29
## 1473 498 29 6384 2014-10-30 01:16:29
## 1474 498 29 6384 2014-10-30 01:16:29
## 1475 371 409 17683 2012-07-20 04:06:49
## 1476 2137 1121 29107 2017-11-21 05:53:13
## 1477 2137 1121 29107 2017-11-21 05:53:13
## 1478 2137 1121 29107 2017-11-21 05:53:13
## 1479 31 55 2376 2017-10-10 03:52:25
## 1480 31 55 2376 2017-10-10 03:52:25
## 1481 279 594 415 2016-10-04 17:09:10
## 1482 0 0 11 2019-10-12 16:54:38
## 1483 1973 360 4350 2019-12-10 16:54:29
## 1484 676 543 1348 2012-04-13 08:38:11
## 1485 457 36 298 2016-05-12 10:51:52
## 1486 17975 19562 554484 2009-01-28 09:58:52
## 1487 851 666 33406 2012-02-28 16:02:22
## 1488 851 666 33406 2012-02-28 16:02:22
## 1489 851 666 33406 2012-02-28 16:02:22
## 1490 810 1215 48180 2012-03-21 20:59:25
143
## 1491 2413 2201 8125 2012-08-04 05:11:56
## 1492 5001 1255 30457 2012-04-30 23:02:19
## 1493 471 303 3940 2016-06-25 17:10:09
## 1494 1131 216 5939 2015-05-21 08:02:57
## 1495 1148 1733 7505 2009-04-23 17:05:33
## 1496 1148 1733 7505 2009-04-23 17:05:33
## 1497 2267 1731 6633 2014-10-09 18:45:18
## 1498 2139 665 15078 2019-03-05 16:58:57
## 1499 11366 305923 265481 2012-10-14 12:29:54
## 1500 11366 305923 265481 2012-10-14 12:29:54
## 1501 11366 305923 265481 2012-10-14 12:29:54
## 1502 91 84 5220 2018-08-17 02:14:38
## 1503 91 84 5220 2018-08-17 02:14:38
## 1504 1266 944 59646 2017-09-13 17:52:10
## 1505 1266 944 59646 2017-09-13 17:52:10
## 1506 6 2 81 2020-10-21 11:02:02
## 1507 362 420 30059 2012-10-28 13:41:08
## 1508 180 187 4534 2012-05-14 10:09:28
## 1509 180 187 4534 2012-05-14 10:09:28
## 1510 130 37 13667 2018-01-07 08:12:24
## 1511 62 143 10937 2011-10-06 16:40:35
## 1512 1778 802 37539 2017-05-23 02:13:20
## 1513 259 1570 1373 2019-11-11 04:47:35
## 1514 5027 4717 24795 2009-02-06 00:31:44
## 1515 4687 4955 5006 2019-05-23 01:23:08
## 1516 25 15 400 2020-12-09 18:23:28
## 1517 25 15 400 2020-12-09 18:23:28
## 1518 25 15 400 2020-12-09 18:23:28
## 1519 165 75 1893 2021-02-04 17:56:14
## 1520 2784 898 3952 2011-05-28 23:16:08
## 1521 2784 898 3952 2011-05-28 23:16:08
## 1522 109 16 2369 2021-02-23 12:36:58
## 1523 686 25471 41580 2018-08-04 00:24:48
## 1524 2538 1957 52597 2011-10-07 15:13:17
## 1525 596 155 27522 2013-10-02 04:05:35
## 1526 596 155 27522 2013-10-02 04:05:35
## 1527 95 14 7323 2019-07-15 23:04:34
## 1528 1070 5480 6879 2019-08-26 19:27:10
## 1529 169 490 28397 2020-02-14 07:07:18
## 1530 73 4 472 2021-02-13 01:55:26
## 1531 129 12 307 2009-11-26 20:59:24
## 1532 498 29 6384 2014-10-30 01:16:29
## 1533 498 29 6384 2014-10-30 01:16:29
## 1534 498 29 6384 2014-10-30 01:16:29
## 1535 35 36 4292 2012-02-05 03:59:17
## 1536 35 36 4292 2012-02-05 03:59:17
## 1537 35 36 4292 2012-02-05 03:59:17
## 1538 2521 358 29460 2009-02-06 00:53:02
## 1539 483 396 1335 2009-06-21 19:13:21
## 1540 6480 6303 16637 2019-05-30 18:51:52
## 1541 3896 4330 54428 2012-02-04 03:13:50
## 1542 2122 4392 1450659 2012-05-12 20:03:03
## 1543 4998 3253 14748 2009-01-09 18:29:38
## 1544 288 111 12864 2013-01-11 20:35:16
144
## 1545 168 22 2929 2016-03-30 19:23:17
## 1546 4990 2023 182852 2008-11-29 11:08:22
## 1547 1525 1420 18901 2008-10-03 15:55:39
## 1548 1087 5040 27655 2011-09-14 13:48:21
## 1549 1087 5040 27655 2011-09-14 13:48:21
## 1550 2 1 65 2020-07-23 22:46:42
## 1551 7898 9643 70529 2009-05-01 00:29:10
## 1552 1731 2349 53930 2008-11-16 14:45:40
## 1553 11 7 138 2020-12-10 20:51:36
## 1554 11 7 138 2020-12-10 20:51:36
## 1555 93 14 7285 2019-07-15 23:04:34
## 1556 93 14 7285 2019-07-15 23:04:34
## 1557 93 14 7285 2019-07-15 23:04:34
## 1558 93 14 7285 2019-07-15 23:04:34
## 1559 608 223 2684 2010-01-16 23:43:15
## 1560 89 52 2074 2016-12-04 18:02:37
## 1561 89 52 2074 2016-12-04 18:02:37
## 1562 89 52 2074 2016-12-04 18:02:37
## 1563 89 52 2074 2016-12-04 18:02:37
## 1564 291 145 9658 2011-06-30 03:36:01
## 1565 1857 1647 82056 2012-03-17 18:29:04
## 1566 1005 423 1806 2015-02-28 05:15:53
## 1567 84 1129 37422 2009-03-29 23:57:07
## 1568 7 0 32 2021-02-15 04:38:00
## 1569 7 0 32 2021-02-15 04:38:00
## 1570 132 3232 11980 2009-08-23 20:24:47
## 1571 27 14 633 2020-11-19 23:20:48
## 1572 115 16 246 2016-03-06 22:07:18
## 1573 4805 3189 514973 2015-05-18 19:26:30
## 1574 133 399 31525 2010-06-19 20:46:52
## 1575 3588 3841 78563 2012-01-19 16:00:21
## 1576 2469 977 9730 2010-04-15 20:57:36
## 1577 18588 18271 556147 2011-06-18 12:47:49
## 1578 18588 18271 556147 2011-06-18 12:47:49
## 1579 347 9 723 2020-07-09 03:59:55
## 1580 347 9 723 2020-07-09 03:59:55
## 1581 347 9 723 2020-07-09 03:59:55
## 1582 347 9 723 2020-07-09 03:59:55
## 1583 2784 5171 88374 2016-12-23 13:55:00
## 1584 2784 5171 88374 2016-12-23 13:55:00
## 1585 341 350 15851 2010-02-22 16:31:27
## 1586 341 350 15851 2010-02-22 16:31:27
## 1587 341 350 15851 2010-02-22 16:31:27
## 1588 341 350 15851 2010-02-22 16:31:27
## 1589 85 8 359 2020-02-15 21:18:23
## 1590 85 8 359 2020-02-15 21:18:23
## 1591 646 558 4254 2019-11-09 19:58:10
## 1592 4522 2123 26408 2012-07-05 12:04:09
## 1593 3 58 4193 2020-03-20 19:00:59
## 1594 32 1 135 2020-12-24 15:38:27
## 1595 1070 5480 6879 2019-08-26 19:27:10
## 1596 245 86 2989 2020-12-23 10:54:00
## 1597 86 15 142 2020-06-02 21:21:20
## 1598 86 15 142 2020-06-02 21:21:20
145
## 1599 2777 382 6733 2011-03-07 22:41:04
## 1600 2777 382 6733 2011-03-07 22:41:04
## 1601 116 22 3063 2017-07-27 01:42:43
## 1602 687 130 1620 2017-04-21 04:19:55
## 1603 204 49 1201 2021-02-05 16:27:08
## 1604 413 4117 12668 2009-12-17 12:51:24
## 1605 183 25 13851 2020-10-20 02:01:02
## 1606 2219 821 32792 2016-12-03 11:08:27
## 1607 2219 821 32792 2016-12-03 11:08:27
## 1608 979 167 5766 2018-05-17 05:13:56
## 1609 979 167 5766 2018-05-17 05:13:56
## 1610 60 0 132 2020-12-20 18:51:14
## 1611 1251 73975 351797 2008-10-30 00:42:47
## 1612 2102 4447 63178 2012-10-05 16:17:07
## 1613 214 20 1366 2010-01-06 14:50:38
## 1614 234 49 8008 2016-11-15 00:24:11
## 1615 2916 1022 40058 2017-10-01 20:01:16
## 1616 2916 1022 40058 2017-10-01 20:01:16
## 1617 2916 1022 40058 2017-10-01 20:01:16
## 1618 39 39 999 2014-03-05 21:00:05
## 1619 548 36 2826 2020-01-11 22:07:12
## 1620 548 36 2826 2020-01-11 22:07:12
## 1621 745 1417 27441 2013-10-09 12:40:24
## 1622 367 229 12782 2013-05-01 20:54:34
## 1623 389 177 6565 2011-08-09 11:10:08
## 1624 64 44 1393 2008-11-27 22:10:17
## 1625 245 295 2511 2011-08-14 12:08:43
## 1626 571 38 697 2021-01-18 01:06:01
## 1627 2796 833 34715 2013-06-16 03:01:14
## 1628 3498 1568 5781 2014-04-06 21:50:55
## 1629 1460 1319 5505 2021-02-01 14:30:16
## 1630 1460 1319 5505 2021-02-01 14:30:16
## 1631 857 164 5651 2009-08-02 16:13:29
## 1632 54 41 2930 2013-08-10 14:33:11
## 1633 54 41 2930 2013-08-10 14:33:11
## 1634 14 0 41 2021-02-18 03:55:56
## 1635 19 1 48 2013-12-18 16:42:24
## 1636 121 44 2438 2009-04-18 18:33:57
## 1637 121 44 2438 2009-04-18 18:33:57
## 1638 3025 4795 150650 2010-12-17 15:21:45
## 1639 1829 612 259187 2010-06-26 00:49:30
## 1640 11 90 10379 2013-10-02 10:31:05
## 1641 11 90 10379 2013-10-02 10:31:05
## 1642 11 90 10379 2013-10-02 10:31:05
## 1643 11 90 10379 2013-10-02 10:31:05
## 1644 123 7 1558 2010-01-07 17:37:54
## 1645 2245 1304 20570 2015-01-28 12:10:27
## 1646 1643 8111 30042 2013-03-15 10:54:22
## 1647 1808 353 8919 2014-03-08 23:27:01
## 1648 420 77 1028 2021-01-13 23:40:22
## 1649 742 39 4006 2019-12-19 09:58:11
## 1650 4744 2853 79644 2019-02-17 02:23:21
## 1651 139 13 1126 2020-12-12 01:11:36
## 1652 246 260 78992 2019-10-31 12:38:15
146
## 1653 246 260 78992 2019-10-31 12:38:15
## 1654 246 260 78992 2019-10-31 12:38:15
## 1655 246 260 78992 2019-10-31 12:38:15
## 1656 4118 1368 28214 2009-04-11 18:16:15
## 1657 4118 1368 28214 2009-04-11 18:16:15
## 1658 108 83 2365 2011-02-24 20:25:12
## 1659 5001 3905 632658 2010-10-05 22:50:20
## 1660 4428 2282 83128 2014-10-08 21:59:16
## 1661 4428 2282 83128 2014-10-08 21:59:16
## 1662 4428 2282 83128 2014-10-08 21:59:16
## 1663 4428 2282 83128 2014-10-08 21:59:16
## 1664 4428 2282 83128 2014-10-08 21:59:16
## 1665 353 52 8316 2011-02-14 02:42:33
## 1666 2739 843 80711 2017-03-21 15:58:22
## 1667 1230 765 29306 2011-12-23 01:26:53
## 1668 291 630 33384 2009-02-25 17:49:13
## 1669 28242 27211 285173 2013-03-05 01:57:41
## 1670 28242 27211 285173 2013-03-05 01:57:41
## 1671 1844 2004 14635 2013-06-01 22:26:13
## 1672 1844 2004 14635 2013-06-01 22:26:13
## 1673 1844 2004 14635 2013-06-01 22:26:13
## 1674 1844 2004 14635 2013-06-01 22:26:13
## 1675 39 25 958 2019-11-02 17:13:41
## 1676 39 25 958 2019-11-02 17:13:41
## 1677 39 25 958 2019-11-02 17:13:41
## 1678 194 75 2893 2019-09-09 00:42:28
## 1679 194 75 2893 2019-09-09 00:42:28
## 1680 560 126 8502 2021-01-21 10:10:58
## 1681 1251 73975 351797 2008-10-30 00:42:47
## 1682 0 4 1548 2020-10-08 12:10:03
## 1683 0 4 1548 2020-10-08 12:10:03
## 1684 458 271 129010 2010-12-26 19:49:54
## 1685 1006 1192 30784 2014-06-06 05:01:34
## 1686 1 0 7 2021-01-19 23:10:15
## 1687 308 6011 7869 2011-05-18 20:21:29
## 1688 308 6011 7869 2011-05-18 20:21:29
## 1689 1786 60310 3612 2011-10-18 14:24:40
## 1690 2104 386 1087 2021-02-17 04:19:37
## 1691 81 116 7058 2013-02-11 18:22:53
## 1692 1179 2344 2594 2013-10-24 16:27:53
## 1693 4090 3296 176643 2008-09-22 19:27:10
## 1694 577 45 839 2020-12-01 07:54:03
## 1695 596 155 27522 2013-10-02 04:05:35
## 1696 3350 1285 5087 2010-03-15 09:30:50
## 1697 1358 794 330 2011-05-26 22:07:57
## 1698 41 132 2192 2020-01-25 12:05:25
## 1699 41 132 2192 2020-01-25 12:05:25
## 1700 293 142 898 2013-11-19 11:16:06
## 1701 4433 4584 53595 2010-01-07 19:25:57
## 1702 1699 1257 69267 2009-03-02 14:06:37
## 1703 1122 266 7186 2016-11-06 14:02:03
## 1704 81 116 7058 2013-02-11 18:22:53
## 1705 2006 2247 29513 2014-11-29 16:39:14
## 1706 121 55 2076 2020-12-20 20:34:56
147
## 1707 1223 195 9012 2020-06-09 22:07:47
## 1708 32 7 63 2021-02-03 15:11:51
## 1709 25 12 241 2020-06-28 16:57:30
## 1710 481 63 596 2021-02-07 14:19:58
## 1711 0 2 861 2020-03-22 14:58:15
## 1712 0 2 861 2020-03-22 14:58:15
## 1713 610 676 3226 2012-12-11 06:19:02
## 1714 610 676 3226 2012-12-11 06:19:02
## 1715 610 676 3226 2012-12-11 06:19:02
## 1716 610 676 3226 2012-12-11 06:19:02
## 1717 92 109 5613 2013-09-07 13:55:00
## 1718 2775 822 4647 2012-01-11 01:38:56
## 1719 151 76 1917 2017-05-09 15:07:50
## 1720 234 49 8008 2016-11-15 00:24:11
## 1721 778 301 24264 2009-03-31 12:12:50
## 1722 24891 25987 17447 2009-02-03 20:50:21
## 1723 24891 25987 17447 2009-02-03 20:50:21
## 1724 390 32 308 2020-03-28 05:18:43
## 1725 390 32 308 2020-03-28 05:18:43
## 1726 0 7 540 2019-12-23 16:53:13
## 1727 9 3 146 2012-12-14 05:08:19
## 1728 9 3 146 2012-12-14 05:08:19
## 1729 4944 1958 43609 2009-09-26 03:34:41
## 1730 49 4 125 2020-11-08 06:33:59
## 1731 155 659 2081 2020-07-14 17:15:06
## 1732 155 659 2081 2020-07-14 17:15:06
## 1733 155 659 2081 2020-07-14 17:15:06
## 1734 155 659 2081 2020-07-14 17:15:06
## 1735 4721 1566 9719 2017-01-27 06:16:46
## 1736 1166 791 4970 2016-10-17 09:56:30
## 1737 2006 2247 29513 2014-11-29 16:39:14
## 1738 30 5 185 2014-06-16 18:08:49
## 1739 30 5 185 2014-06-16 18:08:49
## 1740 283 317 10156 2018-10-05 19:50:26
## 1741 568 459 9584 2009-02-20 23:36:20
## 1742 568 459 9584 2009-02-20 23:36:20
## 1743 2271 3198 97892 2016-07-21 19:53:08
## 1744 549 442 9649 2009-09-09 03:57:13
## 1745 549 442 9649 2009-09-09 03:57:13
## 1746 549 442 9649 2009-09-09 03:57:13
## 1747 549 442 9649 2009-09-09 03:57:13
## 1748 549 442 9649 2009-09-09 03:57:13
## 1749 549 442 9649 2009-09-09 03:57:13
## 1750 549 442 9649 2009-09-09 03:57:13
## 1751 549 442 9649 2009-09-09 03:57:13
## 1752 514 159 4184 2019-11-23 02:43:50
## 1753 3173 3172 89153 2010-02-25 06:45:20
## 1754 3173 3172 89153 2010-02-25 06:45:20
## 1755 3173 3172 89153 2010-02-25 06:45:20
## 1756 3173 3172 89153 2010-02-25 06:45:20
## 1757 6621 6145 212944 2009-05-25 10:46:09
## 1758 6621 6145 212944 2009-05-25 10:46:09
## 1759 1521 303 16045 2011-09-14 01:01:40
## 1760 1521 303 16045 2011-09-14 01:01:40
148
## 1761 359 253 5310 2009-02-08 23:05:10
## 1762 1910 593 8022 2016-01-05 19:22:53
## 1763 1279 292 6296 2012-11-15 01:31:28
## 1764 349 165 5156 2009-10-04 20:45:21
## 1765 349 165 5156 2009-10-04 20:45:21
## 1766 212 51 2354 2010-03-12 18:46:11
## 1767 212 51 2354 2010-03-12 18:46:11
## 1768 453 484 13342 2011-08-08 22:09:37
## 1769 453 484 13342 2011-08-08 22:09:37
## 1770 0 4 1545 2020-10-08 12:10:03
## 1771 411 546 19804 2018-07-30 16:07:44
## 1772 2059 5889 4342 2009-01-04 23:13:45
## 1773 508 510 10765 2011-07-24 13:37:46
## 1774 508 510 10765 2011-07-24 13:37:46
## 1775 118 35 7930 2017-12-12 10:37:00
## 1776 118 35 7930 2017-12-12 10:37:00
## 1777 118 35 7930 2017-12-12 10:37:00
## 1778 118 35 7930 2017-12-12 10:37:00
## 1779 329 212 3225 2020-05-12 20:32:02
## 1780 329 212 3225 2020-05-12 20:32:02
## 1781 3924 3639 3759 2009-03-04 17:59:09
## 1782 9 5 151 2019-10-02 17:30:01
## 1783 322 105 1351 2009-02-13 22:29:31
## 1784 389 546 40273 2009-06-19 01:41:45
## 1785 267 1708 4664 2015-08-02 09:36:47
## 1786 389 41 2736 2016-11-29 00:44:45
## 1787 0 7 538 2019-12-23 16:53:13
## 1788 0 7 538 2019-12-23 16:53:13
## 1789 0 7 538 2019-12-23 16:53:13
## 1790 0 7 538 2019-12-23 16:53:13
## 1791 194 119 4476 2019-03-02 22:35:13
## 1792 194 119 4476 2019-03-02 22:35:13
## 1793 933 788 202077 2010-06-11 06:05:44
## 1794 933 788 202077 2010-06-11 06:05:44
## 1795 322 60 2129 2011-02-24 01:55:18
## 1796 311 418 3383 2009-04-17 12:54:23
## 1797 311 418 3383 2009-04-17 12:54:23
## 1798 199 41 11221 2020-08-20 03:17:36
## 1799 4927 6643 349972 2009-04-18 19:20:12
## 1800 4927 6643 349972 2009-04-18 19:20:12
## 1801 319 45 1039 2019-09-29 15:40:05
## 1802 94 147 6017 2010-03-01 12:18:54
## 1803 31 41 7270 2012-04-05 18:42:30
## 1804 31 41 7270 2012-04-05 18:42:30
## 1805 544 169 6510 2011-07-24 06:39:25
## 1806 246 260 78996 2019-10-31 12:38:15
## 1807 3421 3448 2832 2015-12-21 07:53:17
## 1808 107 12 610 2020-04-27 10:40:53
## 1809 12405 14257 446639 2010-09-05 11:56:31
## 1810 12405 14257 446639 2010-09-05 11:56:31
## 1811 190 50 3604 2009-04-18 00:50:17
## 1812 190 50 3604 2009-04-18 00:50:17
## 1813 464 501 10432 2018-09-16 16:08:59
## 1814 273 26 628 2012-06-16 17:56:14
149
## 1815 728 1249 97582 2010-05-02 16:20:25
## 1816 767 213 2627 2013-06-05 13:56:46
## 1817 1685 26203 13159 2012-08-24 19:09:14
## 1818 1778 802 37539 2017-05-23 02:13:20
## 1819 1778 802 37539 2017-05-23 02:13:20
## 1820 1778 802 37539 2017-05-23 02:13:20
## 1821 1778 802 37539 2017-05-23 02:13:20
## 1822 1399 1411 7485 2020-10-16 16:05:27
## 1823 1399 1411 7485 2020-10-16 16:05:27
## 1824 1399 1411 7485 2020-10-16 16:05:27
## 1825 1399 1411 7485 2020-10-16 16:05:27
## 1826 2356 3436 92017 2016-10-14 16:16:08
## 1827 330 129 6373 2011-07-03 22:53:11
## 1828 5000 3037 87355 2008-11-03 21:31:44
## 1829 5000 3037 87355 2008-11-03 21:31:44
## 1830 157 197 4688 2012-09-14 21:09:21
## 1831 157 197 4688 2012-09-14 21:09:21
## 1832 2214 1989 19709 2009-07-31 04:17:39
## 1833 1131 216 5939 2015-05-21 08:02:57
## 1834 1131 216 5939 2015-05-21 08:02:57
## 1835 1131 216 5939 2015-05-21 08:02:57
## 1836 1131 216 5939 2015-05-21 08:02:57
## 1837 422 58 4171 2015-04-03 19:24:03
## 1838 422 58 4171 2015-04-03 19:24:03
## 1839 153 67 448 2014-05-10 09:59:42
## 1840 3620 1586 136961 2010-12-12 00:14:08
## 1841 1527 1127 25762 2009-05-13 14:16:02
## 1842 1527 1127 25762 2009-05-13 14:16:02
## 1843 518 74 1569 2021-02-07 10:26:25
## 1844 62 19 1561 2020-11-16 13:02:28
## 1845 279 295 8640 2009-06-27 21:07:20
## 1846 279 295 8640 2009-06-27 21:07:20
## 1847 885 237 27211 2011-03-08 18:39:27
## 1848 544 571 27012 2019-01-18 16:08:18
## 1849 544 571 27012 2019-01-18 16:08:18
## 1850 544 571 27012 2019-01-18 16:08:18
## 1851 544 571 27012 2019-01-18 16:08:18
## 1852 544 571 27012 2019-01-18 16:08:18
## 1853 544 571 27012 2019-01-18 16:08:18
## 1854 544 571 27012 2019-01-18 16:08:18
## 1855 544 571 27012 2019-01-18 16:08:18
## 1856 387 178 27281 2009-07-24 15:41:01
## 1857 387 178 27281 2009-07-24 15:41:01
## 1858 4768 4402 120249 2012-04-22 04:20:50
## 1859 33 341 8018 2018-02-21 02:46:50
## 1860 33 341 8018 2018-02-21 02:46:50
## 1861 455 112 2874 2019-01-10 15:56:52
## 1862 19601 19594 22481 2018-02-15 23:19:09
## 1863 413 9722 50464 2018-04-08 17:21:42
## 1864 413 9722 50464 2018-04-08 17:21:42
## 1865 322 436 2752 2017-12-09 04:48:27
## 1866 315 14 431 2020-09-04 04:39:07
## 1867 95 14 7323 2019-07-15 23:04:34
## 1868 95 14 7323 2019-07-15 23:04:34
150
## 1869 81 116 7058 2013-02-11 18:22:53
## 1870 81 116 7058 2013-02-11 18:22:53
## 1871 1128 240 1358 2008-12-12 17:51:39
## 1872 861 526 5245 2011-02-09 21:44:44
## 1873 473 614 23543 2016-05-14 21:10:03
## 1874 473 614 23543 2016-05-14 21:10:03
## 1875 473 614 23543 2016-05-14 21:10:03
## 1876 473 614 23543 2016-05-14 21:10:03
## 1877 33 2226 803 2017-07-06 13:12:49
## 1878 237 28 1127 2021-02-05 19:03:00
## 1879 349 165 5156 2009-10-04 20:45:21
## 1880 280 271 4665 2011-03-13 16:43:28
## 1881 473 614 23541 2016-05-14 21:10:03
## 1882 2971 3170 65572 2015-09-24 18:08:08
## 1883 7 0 12 2021-03-08 16:12:50
## 1884 5508 20597 18610 2011-03-31 16:49:56
## 1885 5508 20597 18610 2011-03-31 16:49:56
## 1886 1293 1294 25243 2015-03-26 09:11:02
## 1887 385 236 2980 2011-07-01 16:00:29
## 1888 886 257 11559 2011-10-26 03:18:37
## 1889 41 7 47 2016-06-26 15:04:08
## 1890 33 5 37 2021-02-15 18:36:32
## 1891 321 132 6482 2014-01-07 02:12:21
## 1892 846 227 5877 2012-11-24 06:22:25
## 1893 4114 4428 104504 2009-03-23 14:34:59
## 1894 28 78 6107 2011-09-07 15:57:37
## 1895 1852 1989 2142 2012-10-25 15:27:43
## 1896 1852 1989 2142 2012-10-25 15:27:43
## 1897 5006 988 22105 2010-05-09 12:01:09
## 1898 348 469 2802 2017-02-18 09:54:22
## 1899 18 17 2231 2012-04-26 01:28:06
## 1900 397 342 9245 2009-04-28 21:24:48
## 1901 596 155 27522 2013-10-02 04:05:35
## 1902 596 155 27522 2013-10-02 04:05:35
## 1903 2945 628 22045 2009-06-07 12:56:21
## 1904 51 36 1408 2020-09-30 10:31:14
## 1905 51 36 1408 2020-09-30 10:31:14
## 1906 1223 195 9012 2020-06-09 22:07:47
## 1907 1177 470 10498 2019-02-06 12:44:53
## 1908 1447 1415 28839 2017-04-22 06:00:08
## 1909 226 31577 249844 2010-03-01 10:59:14
## 1910 226 31577 249844 2010-03-01 10:59:14
## 1911 38 9 75 2020-11-23 01:32:42
## 1912 544 19932 1451 2018-01-20 08:30:15
## 1913 544 19932 1451 2018-01-20 08:30:15
## 1914 500 552 8009 2009-04-19 04:24:46
## 1915 500 552 8009 2009-04-19 04:24:46
## 1916 2319 1630 56170 2009-02-10 21:58:25
## 1917 2319 1630 56170 2009-02-10 21:58:25
## 1918 674 1165 31769 2014-06-28 01:50:21
## 1919 674 1165 31769 2014-06-28 01:50:21
## 1920 4601 2318 20836 2016-05-15 14:33:17
## 1921 0 7 1804 2020-08-20 09:39:04
## 1922 1070 5479 6879 2019-08-26 19:27:10
151
## 1923 2135 645 19015 2017-03-17 23:44:10
## 1924 1498 2064 12012 2011-12-08 12:33:11
## 1925 1783 408 4756 2010-03-19 02:57:43
## 1926 0 0 49 2018-01-12 15:03:05
## 1927 0 0 49 2018-01-12 15:03:05
## 1928 1192 341 55481 2015-08-01 20:18:58
## 1929 1019 633 21907 2012-08-24 18:08:20
## 1930 1019 633 21907 2012-08-24 18:08:20
## 1931 10392 12298 388469 2013-05-15 15:28:22
## 1932 299 492 924 2019-03-26 00:26:52
## 1933 222 26 62 2011-02-27 22:40:48
## 1934 222 26 62 2011-02-27 22:40:48
## 1935 4256 3795 66094 2017-07-26 15:16:23
## 1936 457 36 298 2016-05-12 10:51:52
## 1937 1145 870 640 2014-09-19 22:48:32
## 1938 1145 870 640 2014-09-19 22:48:32
## 1939 3034 3311 25060 2015-12-01 00:36:48
## 1940 3034 3311 25060 2015-12-01 00:36:48
## 1941 473 614 23543 2016-05-14 21:10:03
## 1942 95 14 7323 2019-07-15 23:04:34
## 1943 95 14 7323 2019-07-15 23:04:34
## 1944 95 14 7323 2019-07-15 23:04:34
## 1945 137 33 1308 2009-06-14 08:48:04
## 1946 352 82 10464 2009-02-05 23:12:35
## 1947 1347 501 7516 2014-06-02 16:29:13
## 1948 1329 430 20289 2015-08-18 03:13:03
## 1949 113 62 912 2012-02-18 16:12:11
## 1950 113 62 912 2012-02-18 16:12:11
## 1951 113 62 912 2012-02-18 16:12:11
## 1952 113 62 912 2012-02-18 16:12:11
## 1953 64 51 2268 2010-12-07 12:35:26
## 1954 64 51 2268 2010-12-07 12:35:26
## 1955 5 1 154 2018-10-12 13:02:59
## 1956 707 276 3148 2014-02-07 13:50:39
## 1957 707 276 3148 2014-02-07 13:50:39
## 1958 153 84 474 2019-10-30 12:47:41
## 1959 153 84 474 2019-10-30 12:47:41
## 1960 269 29 4445 2016-08-26 19:31:15
## 1961 297 28595 84422 2009-09-15 22:09:46
## 1962 155 659 2081 2020-07-14 17:15:06
## 1963 11 13 107 2020-11-12 21:19:42
## 1964 117 15 2607 2020-10-26 19:20:48
## 1965 7016 6407 133492 2013-01-08 03:23:54
## 1966 7016 6407 133492 2013-01-08 03:23:54
## 1967 779 403 11220 2012-06-10 17:23:04
## 1968 779 403 11220 2012-06-10 17:23:04
## 1969 141 16 1087 2013-01-24 15:26:14
## 1970 141 16 1087 2013-01-24 15:26:14
## 1971 144 3 147 2019-03-25 14:21:02
## 1972 144 3 147 2019-03-25 14:21:02
## 1973 17975 19562 554474 2009-01-28 09:58:52
## 1974 17975 19562 554474 2009-01-28 09:58:52
## 1975 17975 19562 554474 2009-01-28 09:58:52
## 1976 17975 19562 554474 2009-01-28 09:58:52
152
## 1977 17975 19562 554474 2009-01-28 09:58:52
## 1978 1734 387 10232 2009-06-13 14:52:31
## 1979 178 80 104 2008-03-19 03:11:16
## 1980 2 2 203 2020-08-11 16:27:18
## 1981 2 2 203 2020-08-11 16:27:18
## 1982 2 2 203 2020-08-11 16:27:18
## 1983 270 184 10109 2012-01-21 16:14:34
## 1984 1326 719 28844 2011-12-05 19:15:16
## 1985 137 33 1308 2009-06-14 08:48:04
## 1986 419 56 2872 2017-05-16 21:29:31
## 1987 4805 3189 514973 2015-05-18 19:26:30
## 1988 67 1 117 2010-01-18 17:29:36
## 1989 141 16 1087 2013-01-24 15:26:14
## 1990 141 16 1087 2013-01-24 15:26:14
## 1991 3930 633 65278 2009-08-25 00:59:12
## 1992 1388 1288 36123 2015-04-21 04:42:57
## 1993 277 120 9984 2020-02-23 17:51:56
## 1994 277 120 9984 2020-02-23 17:51:56
## 1995 2172 1533 3652 2009-09-16 23:48:13
## 1996 730 318 1151 2007-06-09 22:06:57
## 1997 189 4 658 2020-11-13 01:15:15
## 1998 189 4 658 2020-11-13 01:15:15
## 1999 0 3 491 2021-02-16 14:57:30
## 2000 0 3 491 2021-02-16 14:57:30
## 2001 0 3 491 2021-02-16 14:57:30
## 2002 0 3 491 2021-02-16 14:57:30
## 2003 0 3 491 2021-02-16 14:57:30
## 2004 191 7 17 2021-01-01 23:19:44
## 2005 466 464 1746 2020-05-05 12:54:18
## 2006 466 464 1746 2020-05-05 12:54:18
## 2007 1070 5480 6879 2019-08-26 19:27:10
## 2008 1622 13 328 2017-01-04 01:24:02
## 2009 2916 1022 40058 2017-10-01 20:01:16
## 2010 1127 270 9997 2009-03-24 22:05:16
## 2011 1127 270 9997 2009-03-24 22:05:16
## 2012 110 9 75 2016-06-21 01:06:54
## 2013 4166 6022 89620 2010-06-07 15:50:06
## 2014 4166 6022 89620 2010-06-07 15:50:06
## 2015 4166 6022 89620 2010-06-07 15:50:06
## 2016 12 2 82 2011-10-26 00:22:06
## 2017 62 19 1561 2020-11-16 13:02:28
## 2018 710 197 7211 2009-03-05 23:52:26
## 2019 2884 16977 37616 2011-09-20 19:33:21
## 2020 693 59 2859 2020-04-25 15:40:17
## 2021 188 24 381 2011-02-12 08:57:54
## 2022 1 1 165 2018-10-22 10:50:29
## 2023 361 37 1970 2021-01-23 22:03:56
## 2024 3099 6246 23749 2011-12-26 21:20:42
## 2025 79 16 307 2020-06-09 21:33:56
## 2026 234 184 183 2021-03-02 16:53:45
## 2027 303 1794 10052 2011-11-11 14:50:19
## 2028 303 1794 10052 2011-11-11 14:50:19
## 2029 199 41 11221 2020-08-20 03:17:36
## 2030 194 62 2598 2015-02-18 07:23:52
153
## 2031 833 733 3447 2009-03-24 23:07:00
## 2032 15996 40072 32604 2014-01-31 12:24:47
## 2033 15996 40072 32604 2014-01-31 12:24:47
## 2034 3025 4795 150650 2010-12-17 15:21:45
## 2035 48 509 7540 2015-04-12 20:57:06
## 2036 561 624 19081 2020-02-11 14:47:27
## 2037 561 624 19081 2020-02-11 14:47:27
## 2038 70 34 1715 2018-11-13 21:15:14
## 2039 70 34 1715 2018-11-13 21:15:14
## 2040 392 56 5061 2010-09-29 04:37:02
## 2041 392 56 5061 2010-09-29 04:37:02
## 2042 392 56 5061 2010-09-29 04:37:02
## 2043 254 122 5825 2011-10-19 14:06:48
## 2044 254 122 5825 2011-10-19 14:06:48
## 2045 2381 973 67570 2018-02-23 15:56:03
## 2046 2381 973 67570 2018-02-23 15:56:03
## 2047 2381 973 67570 2018-02-23 15:56:03
## 2048 19 5 290 2021-02-13 00:56:45
## 2049 1192 341 55481 2015-08-01 20:18:58
## 2050 931 1276 5015 2010-02-15 09:50:32
## 2051 931 1276 5015 2010-02-15 09:50:32
## 2052 22 2 88 2020-07-03 10:06:25
## 2053 2370 195 19605 2011-01-28 07:31:56
## 2054 166 278 6872 2012-10-20 11:49:49
## 2055 854 164 786 2012-06-06 16:00:24
## 2056 144 67 6818 2020-09-10 17:43:54
## 2057 144 67 6818 2020-09-10 17:43:54
## 2058 144 67 6818 2020-09-10 17:43:54
## 2059 144 67 6818 2020-09-10 17:43:54
## 2060 2130 786 5532 2011-12-29 07:24:10
## 2061 2 5 448 2020-07-13 13:53:46
## 2062 2461 1909 5302 2019-11-23 09:11:42
## 2063 14714 15717 293428 2009-08-25 16:49:15
## 2064 38 387 107248 2013-07-06 19:54:34
## 2065 50 3 35 2020-11-05 18:56:10
## 2066 2236 1415 175089 2010-12-28 19:17:39
## 2067 2236 1415 175089 2010-12-28 19:17:39
## 2068 799 1016 36715 2009-06-16 15:54:49
## 2069 2065 13975 5971 2015-08-29 09:33:16
## 2070 553 636 39646 2009-03-16 13:46:20
## 2071 553 636 39646 2009-03-16 13:46:20
## 2072 553 636 39646 2009-03-16 13:46:20
## 2073 553 636 39646 2009-03-16 13:46:20
## 2074 553 636 39646 2009-03-16 13:46:20
## 2075 316 82 35901 2020-01-29 19:39:00
## 2076 300 60 2595 2011-04-12 04:06:06
## 2077 300 60 2595 2011-04-12 04:06:06
## 2078 1255 2330 144477 2009-02-24 00:06:36
## 2079 1255 2330 144477 2009-02-24 00:06:36
## 2080 1255 2330 144477 2009-02-24 00:06:36
## 2081 1255 2330 144477 2009-02-24 00:06:36
## 2082 1255 2330 144477 2009-02-24 00:06:36
## 2083 327 6010 4594 2020-10-18 06:13:22
## 2084 327 6010 4594 2020-10-18 06:13:22
154
## 2085 1391 800 33441 2009-10-11 22:33:59
## 2086 2378 1615 6967 2020-05-13 12:03:19
## 2087 195 34 137 2016-03-07 00:13:38
## 2088 2271 3198 97892 2016-07-21 19:53:08
## 2089 143 4086 1169 2009-11-05 02:57:05
## 2090 441 137 3266 2012-10-12 17:21:32
## 2091 441 137 3266 2012-10-12 17:21:32
## 2092 441 137 3266 2012-10-12 17:21:32
## 2093 1323 37866 5687 2012-11-26 00:15:08
## 2094 161 305 11871 2016-03-18 20:56:45
## 2095 1223 196 8974 2020-06-09 22:07:47
## 2096 448 215 7222 2009-04-24 11:36:02
## 2097 448 215 7222 2009-04-24 11:36:02
## 2098 406 8 623 2020-06-05 15:19:49
## 2099 435 32 1038 2012-05-08 00:44:24
## 2100 435 32 1038 2012-05-08 00:44:24
## 2101 570 359 8217 2018-04-17 17:49:04
## 2102 570 359 8217 2018-04-17 17:49:04
## 2103 102 189 307 2019-03-19 13:59:45
## 2104 544 1066 19531 2014-07-31 01:14:54
## 2105 4143 2996 6119 2009-04-03 15:16:08
## 2106 0 15 229 2019-09-23 13:25:18
## 2107 1944 2289 207151 2012-08-19 12:45:42
## 2108 1944 2289 207151 2012-08-19 12:45:42
## 2109 3026 346 17469 2009-06-10 08:35:32
## 2110 3026 346 17469 2009-06-10 08:35:32
## 2111 11 2 47 2020-11-28 12:27:17
## 2112 11 2 47 2020-11-28 12:27:17
## 2113 2391 907 23123 2011-05-20 20:35:34
## 2114 549 442 9649 2009-09-09 03:57:13
## 2115 549 442 9649 2009-09-09 03:57:13
## 2116 549 442 9649 2009-09-09 03:57:13
## 2117 549 442 9649 2009-09-09 03:57:13
## 2118 549 442 9649 2009-09-09 03:57:13
## 2119 549 442 9649 2009-09-09 03:57:13
## 2120 549 442 9649 2009-09-09 03:57:13
## 2121 549 442 9649 2009-09-09 03:57:13
## 2122 5001 2763 127862 2008-08-07 22:46:55
## 2123 270 329 6039 2013-06-29 10:48:02
## 2124 2104 385 1085 2021-02-17 04:19:37
## 2125 2104 385 1085 2021-02-17 04:19:37
## 2126 2104 385 1085 2021-02-17 04:19:37
## 2127 1442 402 1422 2020-10-26 20:14:52
## 2128 596 155 27522 2013-10-02 04:05:35
## 2129 333 205 3128 2009-05-21 22:01:28
## 2130 67 45 20 2019-05-13 03:32:17
## 2131 26120 27033 31718 2017-03-30 16:53:32
## 2132 1070 5480 6879 2019-08-26 19:27:10
## 2133 2139 665 15089 2019-03-05 16:58:57
## 2134 2139 665 15089 2019-03-05 16:58:57
## 2135 5001 2854 783971 2009-08-14 06:48:30
## 2136 5001 2854 783971 2009-08-14 06:48:30
## 2137 5001 2854 783971 2009-08-14 06:48:30
## 2138 98 14 349 2017-05-04 03:31:47
155
## 2139 98 14 349 2017-05-04 03:31:47
## 2140 828 54 1794 2020-05-22 16:38:16
## 2141 5000 2070 156820 2009-05-26 22:24:28
## 2142 526 2034 16111 2013-07-19 10:17:45
## 2143 526 2034 16111 2013-07-19 10:17:45
## 2144 526 2034 16111 2013-07-19 10:17:45
## 2145 526 2034 16111 2013-07-19 10:17:45
## 2146 23 130 1790 2014-09-26 15:53:18
## 2147 32 1 387 2020-05-23 08:29:54
## 2148 270 94 13028 2012-12-12 20:40:01
## 2149 270 94 13028 2012-12-12 20:40:01
## 2150 17975 19563 554488 2009-01-28 09:58:52
## 2151 180 504 7863 2019-02-24 04:39:08
## 2152 384 1372 92136 2011-07-26 11:39:20
## 2153 2932 1285 85691 2009-03-19 02:03:28
## 2154 81 116 7058 2013-02-11 18:22:53
## 2155 413 9722 50464 2018-04-08 17:21:42
## 2156 486 103 2072 2013-07-18 06:01:30
## 2157 2252 76 3479 2012-12-10 08:10:02
## 2158 2252 76 3479 2012-12-10 08:10:02
## 2159 4591 1740 32452 2008-11-01 00:05:37
## 2160 4591 1740 32452 2008-11-01 00:05:37
## 2161 341 85 324 2015-02-01 17:36:10
## 2162 197 106 1429 2009-01-28 00:42:45
## 2163 197 106 1429 2009-01-28 00:42:45
## 2164 621 4699 6915 2014-01-14 09:56:04
## 2165 401 138 324 2020-10-07 23:47:31
## 2166 289 202 7040 2019-02-27 15:42:00
## 2167 1874 6164 27416 2014-05-22 17:54:27
## 2168 886 257 11559 2011-10-26 03:18:37
## 2169 983 1059 923 2020-04-14 13:02:02
## 2170 3 5 333 2021-02-26 22:20:43
## 2171 3 5 333 2021-02-26 22:20:43
## 2172 584 46 4076 2017-05-27 13:49:48
## 2173 584 46 4076 2017-05-27 13:49:48
## 2174 584 46 4076 2017-05-27 13:49:48
## 2175 2293 1895 255740 2013-02-09 20:33:26
## 2176 2293 1895 255740 2013-02-09 20:33:26
## 2177 2293 1895 255740 2013-02-09 20:33:26
## 2178 27 745 7051 2020-06-25 01:24:54
## 2179 383 183 19751 2018-04-27 18:28:56
## 2180 353 98 4345 2011-07-22 20:02:52
## 2181 353 98 4345 2011-07-22 20:02:52
## 2182 2521 358 29460 2009-02-06 00:53:02
## 2183 3899 3250 148800 2016-09-07 02:03:23
## 2184 1527 1127 25762 2009-05-13 14:16:02
## 2185 3973 105 1282 2020-10-25 22:13:40
## 2186 3973 105 1282 2020-10-25 22:13:40
## 2187 3973 105 1282 2020-10-25 22:13:40
## 2188 3973 105 1282 2020-10-25 22:13:40
## 2189 116 1323 8951 2018-04-03 01:38:49
## 2190 11152 15712 17974 2012-10-30 08:48:20
## 2191 11152 15712 17974 2012-10-30 08:48:20
## 2192 1070 5481 6879 2019-08-26 19:27:10
156
## 2193 721 669 10414 2017-02-19 16:18:53
## 2194 140 21 550 2010-05-07 19:04:45
## 2195 2139 665 15078 2019-03-05 16:58:57
## 2196 2139 665 15078 2019-03-05 16:58:57
## 2197 2139 665 15078 2019-03-05 16:58:57
## 2198 1160 241 1855 2009-03-24 18:37:39
## 2199 266 157 19148 2009-03-02 01:21:45
## 2200 266 157 19148 2009-03-02 01:21:45
## 2201 921 3795 17868 2011-03-02 23:05:54
## 2202 921 3795 17868 2011-03-02 23:05:54
## 2203 3633 2133 5922 2011-04-18 08:06:30
## 2204 1258 35 3740 2009-06-08 04:52:50
## 2205 217 96 11791 2010-03-13 21:42:15
## 2206 0 7 1804 2020-08-20 09:39:04
## 2207 4478 1499 3632 2013-05-19 14:13:48
## 2208 4478 1499 3632 2013-05-19 14:13:48
## 2209 199 41 11221 2020-08-20 03:17:36
## 2210 58 1 144 2021-03-04 13:09:29
## 2211 27 8 2452 2020-11-12 02:16:42
## 2212 728 1249 97578 2010-05-02 16:20:25
## 2213 225 86 4240 2017-09-22 15:04:15
## 2214 297 28595 84422 2009-09-15 22:09:46
## 2215 297 28595 84422 2009-09-15 22:09:46
## 2216 297 28595 84422 2009-09-15 22:09:46
## 2217 297 28595 84422 2009-09-15 22:09:46
## 2218 3799 3339 178218 2013-06-27 03:54:25
## 2219 138 56 568 2011-06-09 21:29:54
## 2220 4357 13512 70997 2013-06-06 00:29:28
## 2221 2 2 203 2020-08-11 16:27:18
## 2222 2 2 203 2020-08-11 16:27:18
## 2223 12 29 4241 2020-12-30 10:31:20
## 2224 12 29 4241 2020-12-30 10:31:20
## 2225 12 29 4241 2020-12-30 10:31:20
## 2226 2828 2892 36280 2009-06-03 14:17:15
## 2227 954 232469 101195 2009-12-28 11:35:59
## 2228 685 300 2662 2009-06-09 20:19:35
## 2229 235 140 11937 2020-02-05 06:13:14
## 2230 1527 1127 25762 2009-05-13 14:16:02
## 2231 1527 1127 25762 2009-05-13 14:16:02
## 2232 179 8 15 2021-01-07 15:23:12
## 2233 738 461 140 2020-03-30 06:39:32
## 2234 738 461 140 2020-03-30 06:39:32
## 2235 738 461 140 2020-03-30 06:39:32
## 2236 738 461 140 2020-03-30 06:39:32
## 2237 91 84 5220 2018-08-17 02:14:38
## 2238 70 17 514 2021-02-28 07:37:00
## 2239 70 17 514 2021-02-28 07:37:00
## 2240 277 120 9953 2020-02-23 17:51:56
## 2241 316 123 3176 2020-01-20 19:45:20
## 2242 316 123 3176 2020-01-20 19:45:20
## 2243 750 341 18643 2015-08-25 23:32:46
## 2244 750 341 18643 2015-08-25 23:32:46
## 2245 2287 2050 38659 2009-04-19 02:36:03
## 2246 204 49 1201 2021-02-05 16:27:08
157
## 2247 862 382 12746 2009-07-20 06:38:22
## 2248 7039 7133 40170 2013-01-30 23:07:12
## 2249 1229 483 10807 2011-04-17 02:53:50
## 2250 1229 483 10807 2011-04-17 02:53:50
## 2251 1229 483 10807 2011-04-17 02:53:50
## 2252 381 783 89551 2011-10-14 19:18:54
## 2253 386 233 10771 2021-01-12 16:57:28
## 2254 386 233 10771 2021-01-12 16:57:28
## 2255 751 654 12595 2012-02-03 12:02:06
## 2256 751 654 12595 2012-02-03 12:02:06
## 2257 1475 452 30531 2009-10-24 19:59:54
## 2258 789 1075 9749 2011-03-09 14:45:42
## 2259 528 148 2926 2020-03-23 03:59:34
## 2260 528 148 2926 2020-03-23 03:59:34
## 2261 176 49 3457 2013-04-19 10:52:39
## 2262 4805 3189 514972 2015-05-18 19:26:30
## 2263 121 76 10648 2017-08-13 20:48:25
## 2264 121 76 10648 2017-08-13 20:48:25
## 2265 654 276 3901 2010-04-30 21:55:10
## 2266 246 267 6919 2020-07-22 23:26:02
## 2267 704 804 4860 2009-08-06 07:55:30
## 2268 450 732 41334 2016-12-18 18:57:27
## 2269 450 732 41334 2016-12-18 18:57:27
## 2270 760 68 439 2020-04-30 02:04:01
## 2271 109 210 4174 2020-03-29 15:50:39
## 2272 109 210 4174 2020-03-29 15:50:39
## 2273 109 210 4174 2020-03-29 15:50:39
## 2274 380 561 75639 2011-04-08 19:32:05
## 2275 345 527 38639 2011-02-16 10:02:27
## 2276 635 564 1537 2019-03-23 08:24:42
## 2277 530 411 183522 2012-07-03 18:57:13
## 2278 209 28 749 2019-10-14 05:17:27
## 2279 209 28 749 2019-10-14 05:17:27
## 2280 127 54 2907 2009-10-13 15:59:13
## 2281 469 352 39900 2009-03-14 01:10:58
## 2282 469 352 39900 2009-03-14 01:10:58
## 2283 469 352 39900 2009-03-14 01:10:58
## 2284 469 352 39900 2009-03-14 01:10:58
## 2285 469 352 39900 2009-03-14 01:10:58
## 2286 469 352 39900 2009-03-14 01:10:58
## 2287 173 25 711 2016-10-14 16:30:32
## 2288 2782 322 3064 2011-05-30 01:03:19
## 2289 656 1857 6414 2010-08-10 20:26:06
## 2290 280 84 3454 2016-10-03 18:05:38
## 2291 698 202 3178 2014-05-19 17:29:09
## 2292 2382 329 562 2020-11-04 02:22:44
## 2293 314 383 1424 2018-02-27 20:32:21
## 2294 314 383 1424 2018-02-27 20:32:21
## 2295 1813 46 29591 2019-04-21 14:27:12
## 2296 1813 46 29591 2019-04-21 14:27:12
## 2297 1059 549 12325 2009-07-27 21:33:24
## 2298 774 291 2613 2017-03-13 22:21:29
## 2299 774 291 2613 2017-03-13 22:21:29
## 2300 595 65 3806 2020-03-17 02:10:07
158
## 2301 288 111 12864 2013-01-11 20:35:16
## 2302 25 0 1719 2015-09-09 14:13:55
## 2303 1926 1790 6748 2009-04-17 03:55:19
## 2304 388 189 4447 2008-05-03 08:42:17
## 2305 150 85 233 2020-01-31 11:07:56
## 2306 437 68 2476 2020-03-05 08:22:26
## 2307 437 68 2476 2020-03-05 08:22:26
## 2308 43 76 701 2009-11-30 04:30:32
## 2309 521 687 8268 2013-01-30 13:03:59
## 2310 521 687 8268 2013-01-30 13:03:59
## 2311 1863 350 33778 2013-07-04 22:04:24
## 2312 1730 86 1659 2011-07-17 02:35:22
## 2313 1730 86 1659 2011-07-17 02:35:22
## 2314 784 145 13365 2010-07-17 23:36:39
## 2315 125 122 4826 2020-06-22 20:11:14
## 2316 381 783 89551 2011-10-14 19:18:54
## 2317 17975 18057 132667 2015-08-26 21:35:11
## 2318 261 61 884 2017-08-24 01:15:38
## 2319 901 863 112070 2009-07-17 05:58:25
## 2320 901 863 112070 2009-07-17 05:58:25
## 2321 35 9 659 2010-10-09 20:48:19
## 2322 581 8576 4182 2010-06-04 19:36:49
## 2323 1388 1288 36123 2015-04-21 04:42:57
## 2324 1388 1288 36123 2015-04-21 04:42:57
## 2325 25 15 400 2020-12-09 18:23:28
## 2326 383 138 5294 2020-11-05 09:29:39
## 2327 277 120 9953 2020-02-23 17:51:56
## 2328 881 482 17997 2012-11-04 21:39:07
## 2329 881 482 17997 2012-11-04 21:39:07
## 2330 881 482 17997 2012-11-04 21:39:07
## 2331 881 482 17997 2012-11-04 21:39:07
## 2332 1054 46 2422 2016-12-09 11:51:35
## 2333 224 121 1154 2010-05-16 09:10:16
## 2334 809 748 1991 2009-03-30 00:33:45
## 2335 1675 626 25372 2018-12-11 01:30:39
## 2336 1675 626 25372 2018-12-11 01:30:39
## 2337 138 45 3447 2011-11-17 18:02:02
## 2338 568 459 9593 2009-02-20 23:36:20
## 2339 568 459 9593 2009-02-20 23:36:20
## 2340 568 459 9593 2009-02-20 23:36:20
## 2341 568 459 9593 2009-02-20 23:36:20
## 2342 568 459 9593 2009-02-20 23:36:20
## 2343 568 459 9593 2009-02-20 23:36:20
## 2344 568 459 9593 2009-02-20 23:36:20
## 2345 568 459 9593 2009-02-20 23:36:20
## 2346 39 34 519 2009-12-07 21:13:23
## 2347 39 34 519 2009-12-07 21:13:23
## 2348 235 140 11937 2020-02-05 06:13:14
## 2349 480 418 45082 2019-01-21 00:34:17
## 2350 658 1211 1533 2018-09-11 15:31:30
## 2351 928 147 439 2015-10-05 12:36:50
## 2352 2300 7524 26961 2011-04-27 21:14:24
## 2353 2300 7524 26961 2011-04-27 21:14:24
## 2354 660 66 2138 2014-04-16 18:06:54
159
## 2355 45 6 705 2019-02-24 20:11:13
## 2356 2969 3327 9887 2009-06-15 17:50:04
## 2357 3448 3573 6383 2020-07-01 19:11:42
## 2358 3448 3573 6383 2020-07-01 19:11:42
## 2359 3 5 333 2021-02-26 22:20:43
## 2360 3 5 333 2021-02-26 22:20:43
## 2361 3 5 333 2021-02-26 22:20:43
## 2362 3 5 333 2021-02-26 22:20:43
## 2363 1341 1526 30048 2009-06-20 13:03:37
## 2364 325 62 4232 2020-02-17 12:53:04
## 2365 325 62 4232 2020-02-17 12:53:04
## 2366 655 543 1716 2011-06-29 22:52:56
## 2367 655 543 1716 2011-06-29 22:52:56
## 2368 957 972 10784 2020-05-15 12:49:26
## 2369 726 111 15311 2013-08-26 15:21:59
## 2370 1944 2290 207151 2012-08-19 12:45:42
## 2371 29 79 3810 2016-05-28 13:10:59
## 2372 2727 2647 24687 2013-03-14 01:26:39
## 2373 2727 2647 24687 2013-03-14 01:26:39
## 2374 1234 1187 500 2016-05-03 15:50:43
## 2375 3079 1379 41655 2010-12-01 07:48:25
## 2376 305 14 418 2010-09-29 01:06:38
## 2377 3 7 893 2016-06-08 17:07:27
## 2378 3 7 893 2016-06-08 17:07:27
## 2379 11 19 555 2020-12-09 04:50:40
## 2380 2106 1242 28316 2015-08-14 11:01:10
## 2381 2106 1242 28316 2015-08-14 11:01:10
## 2382 2370 195 19602 2011-01-28 07:31:56
## 2383 1653 631132 354389 2008-12-03 14:09:12
## 2384 568 459 9584 2009-02-20 23:36:20
## 2385 568 459 9584 2009-02-20 23:36:20
## 2386 568 459 9584 2009-02-20 23:36:20
## 2387 4946 4447 42216 2018-02-08 16:06:07
## 2388 14 1 38 2021-01-26 14:55:25
## 2389 42 371 15727 2009-03-29 04:25:31
## 2390 1471 617 5188 2010-09-20 14:02:54
## 2391 1471 617 5188 2010-09-20 14:02:54
## 2392 40 2 355 2018-04-25 16:12:30
## 2393 325 178 6131 2019-07-26 03:11:13
## 2394 325 178 6131 2019-07-26 03:11:13
## 2395 325 178 6131 2019-07-26 03:11:13
## 2396 64 71 279 2011-09-16 00:09:35
## 2397 392 543 10162 2012-02-09 08:04:43
## 2398 392 543 10162 2012-02-09 08:04:43
## 2399 5283 4802 164252 2013-04-01 07:41:55
## 2400 5283 4802 164252 2013-04-01 07:41:55
## 2401 1255 2330 144477 2009-02-24 00:06:36
## 2402 1255 2330 144477 2009-02-24 00:06:36
## 2403 1255 2330 144477 2009-02-24 00:06:36
## 2404 1255 2330 144477 2009-02-24 00:06:36
## 2405 1255 2330 144477 2009-02-24 00:06:36
## 2406 1255 2330 144477 2009-02-24 00:06:36
## 2407 1255 2330 144477 2009-02-24 00:06:36
## 2408 1255 2330 144477 2009-02-24 00:06:36
160
## 2409 426 120 44938 2009-04-05 16:21:24
## 2410 426 120 44938 2009-04-05 16:21:24
## 2411 473 614 23543 2016-05-14 21:10:03
## 2412 473 614 23543 2016-05-14 21:10:03
## 2413 228 74 3262 2021-01-12 02:03:30
## 2414 228 74 3262 2021-01-12 02:03:30
## 2415 228 74 3262 2021-01-12 02:03:30
## 2416 228 74 3262 2021-01-12 02:03:30
## 2417 228 74 3262 2021-01-12 02:03:30
## 2418 4935 2726 148025 2011-12-22 09:20:54
## 2419 1167 242 9189 2015-02-14 23:22:13
## 2420 422 309 13414 2014-01-04 16:01:12
## 2421 770 152 3802 2009-05-16 20:03:47
## 2422 770 152 3802 2009-05-16 20:03:47
## 2423 49 6 53 2019-12-10 18:43:23
## 2424 1250 434 12070 2020-01-14 18:12:04
## 2425 80 779 67788 2011-09-19 06:54:38
## 2426 80 779 67788 2011-09-19 06:54:38
## 2427 80 779 67788 2011-09-19 06:54:38
## 2428 80 779 67788 2011-09-19 06:54:38
## 2429 80 779 67788 2011-09-19 06:54:38
## 2430 537 21298 229010 2011-05-09 14:15:05
## 2431 137 33 1308 2009-06-14 08:48:04
## 2432 183 28 12321 2016-07-29 06:05:08
## 2433 553 636 39646 2009-03-16 13:46:20
## 2434 553 636 39646 2009-03-16 13:46:20
## 2435 553 636 39646 2009-03-16 13:46:20
## 2436 553 636 39646 2009-03-16 13:46:20
## 2437 553 636 39646 2009-03-16 13:46:20
## 2438 553 636 39646 2009-03-16 13:46:20
## 2439 553 636 39646 2009-03-16 13:46:20
## 2440 553 636 39646 2009-03-16 13:46:20
## 2441 553 636 39646 2009-03-16 13:46:20
## 2442 79 16 307 2020-06-09 21:33:56
## 2443 450 54 2867 2017-04-16 21:59:05
## 2444 450 54 2867 2017-04-16 21:59:05
## 2445 450 54 2867 2017-04-16 21:59:05
## 2446 4428 2282 83128 2014-10-08 21:59:16
## 2447 4428 2282 83128 2014-10-08 21:59:16
## 2448 1543 2658 33862 2011-07-16 11:43:23
## 2449 221 15 391 2015-06-03 07:04:43
## 2450 1388 1288 36123 2015-04-21 04:42:57
## 2451 3601 1984 16581 2009-02-01 15:25:00
## 2452 1070 5481 6879 2019-08-26 19:27:10
## 2453 1766 2298 15530 2012-08-02 20:37:16
## 2454 363 220 20032 2013-09-19 01:16:06
## 2455 150 89 1949 2015-09-17 07:28:45
## 2456 12713 27921 196578 2011-11-08 03:54:43
## 2457 796 872 6981 2009-04-17 12:40:55
## 2458 297 28595 84422 2009-09-15 22:09:46
## 2459 297 28595 84422 2009-09-15 22:09:46
## 2460 37 16 338 2011-09-29 14:31:14
## 2461 163 83 203 2021-01-18 04:26:15
## 2462 81 116 7058 2013-02-11 18:22:53
161
## 2463 81 116 7058 2013-02-11 18:22:53
## 2464 252 16 122 2020-07-22 07:22:25
## 2465 79 31 779 2019-12-24 15:47:53
## 2466 4166 6022 89620 2010-06-07 15:50:06
## 2467 4166 6022 89620 2010-06-07 15:50:06
## 2468 4805 3189 514972 2015-05-18 19:26:30
## 2469 382 12270 54988 2009-05-02 18:43:10
## 2470 1069 128 13498 2016-07-10 15:48:59
## 2471 1069 128 13498 2016-07-10 15:48:59
## 2472 158 200 6902 2014-08-24 16:00:06
## 2473 2561 343 16837 2009-01-23 11:04:28
## 2474 204 49 1201 2021-02-05 16:27:08
## 2475 204 49 1201 2021-02-05 16:27:08
## 2476 809 748 1991 2009-03-30 00:33:45
## 2477 809 748 1991 2009-03-30 00:33:45
## 2478 521 687 8268 2013-01-30 13:03:59
## 2479 521 687 8268 2013-01-30 13:03:59
## 2480 3237 29260 8148 2008-08-08 20:30:14
## 2481 3 58 4190 2020-03-20 19:00:59
## 2482 3 58 4190 2020-03-20 19:00:59
## 2483 277 37 427 2013-07-21 15:46:02
## 2484 277 37 427 2013-07-21 15:46:02
## 2485 3704 2175 4511 2021-01-12 23:10:54
## 2486 1660 5626 34085 2009-03-30 03:01:23
## 2487 340 193 20076 2009-08-06 09:46:56
## 2488 15 14 195 2021-02-18 19:14:31
## 2489 2095 793 28261 2011-10-11 17:07:06
## 2490 35 8 1301 2019-07-24 21:18:48
## 2491 1554 973 3448 2009-09-22 00:09:42
## 2492 1554 973 3448 2009-09-22 00:09:42
## 2493 1554 973 3448 2009-09-22 00:09:42
## 2494 1995 619 6948 2009-04-22 12:33:43
## 2495 383 138 5290 2020-11-05 09:29:39
## 2496 542 64 4766 2011-05-22 05:25:00
## 2497 4992 1520 5283 2012-03-22 15:41:55
## 2498 1575 440 9763 2019-10-02 21:29:43
## 2499 130 103 22462 2014-02-14 00:08:53
## 2500 1091 291 3952 2009-05-18 20:17:12
## 2501 120 92 2171 2021-01-16 15:27:28
## 2502 1192 341 55481 2015-08-01 20:18:58
## 2503 1192 341 55481 2015-08-01 20:18:58
## 2504 327 6010 4594 2020-10-18 06:13:22
## 2505 327 6010 4594 2020-10-18 06:13:22
## 2506 327 6010 4594 2020-10-18 06:13:22
## 2507 4841 2528 11185 2017-07-19 23:21:59
## 2508 12414 383944 336308 2009-03-23 15:22:25
## 2509 369 105 919 2009-07-24 14:20:13
## 2510 369 105 919 2009-07-24 14:20:13
## 2511 369 105 919 2009-07-24 14:20:13
## 2512 369 105 919 2009-07-24 14:20:13
## 2513 372 604 48004 2014-08-24 19:16:46
## 2514 372 604 48004 2014-08-24 19:16:46
## 2515 1971 2021 121562 2009-01-28 21:34:30
## 2516 1971 2021 121562 2009-01-28 21:34:30
162
## 2517 1727 264 7337 2012-12-20 10:59:44
## 2518 668 670 43274 2011-04-15 16:45:34
## 2519 840 2272 3039 2020-06-23 15:08:04
## 2520 890 350 31711 2013-01-31 19:14:22
## 2521 890 350 31711 2013-01-31 19:14:22
## 2522 890 350 31711 2013-01-31 19:14:22
## 2523 2847 5146 67 2011-06-15 13:26:47
## 2524 1385 797 7935 2016-10-07 05:32:54
## 2525 7 1 183 2020-07-02 00:38:46
## 2526 7 1 183 2020-07-02 00:38:46
## 2527 408 1176 9144 2020-10-23 17:41:15
## 2528 99 83 2008 2019-07-22 15:45:04
## 2529 949 220 32562 2012-03-10 13:47:24
## 2530 949 220 32562 2012-03-10 13:47:24
## 2531 41 84 2243 2012-09-16 01:48:06
## 2532 645 126 5600 2020-07-06 17:05:30
## 2533 1554 973 3447 2009-09-22 00:09:42
## 2534 1554 973 3447 2009-09-22 00:09:42
## 2535 268 77 3456 2018-11-30 21:49:26
## 2536 268 77 3456 2018-11-30 21:49:26
## 2537 268 77 3456 2018-11-30 21:49:26
## 2538 268 77 3456 2018-11-30 21:49:26
## 2539 558 282 632 2008-10-13 10:07:49
## 2540 558 282 632 2008-10-13 10:07:49
## 2541 1844 774 45958 2010-01-17 07:54:55
## 2542 1844 774 45958 2010-01-17 07:54:55
## 2543 429 438 507 2020-12-15 15:16:49
## 2544 1255 2330 144477 2009-02-24 00:06:36
## 2545 1255 2330 144477 2009-02-24 00:06:36
## 2546 1255 2330 144477 2009-02-24 00:06:36
## 2547 1255 2330 144477 2009-02-24 00:06:36
## 2548 1255 2330 144477 2009-02-24 00:06:36
## 2549 724 259 103 2020-09-18 13:38:46
## 2550 724 259 103 2020-09-18 13:38:46
## 2551 3447 3571 6379 2020-07-01 19:11:42
## 2552 3447 3571 6379 2020-07-01 19:11:42
## 2553 279 16406 12956 2009-05-15 02:21:24
## 2554 491 219 8202 2014-11-13 10:00:58
## 2555 491 219 8202 2014-11-13 10:00:58
## 2556 595 65 3806 2020-03-17 02:10:07
## 2557 890 350 31711 2013-01-31 19:14:22
## 2558 890 350 31711 2013-01-31 19:14:22
## 2559 890 350 31711 2013-01-31 19:14:22
## 2560 483 203 4134 2012-09-17 18:54:57
## 2561 1223 195 9012 2020-06-09 22:07:47
## 2562 1223 195 9012 2020-06-09 22:07:47
## 2563 892 305 1571 2010-06-23 14:27:21
## 2564 353 824 1972 2012-02-29 06:58:46
## 2565 114 30 1540 2020-08-09 17:04:13
## 2566 114 30 1540 2020-08-09 17:04:13
## 2567 254 13 902 2020-12-20 10:28:53
## 2568 648 135 11693 2010-04-20 04:24:59
## 2569 648 135 11693 2010-04-20 04:24:59
## 2570 648 135 11693 2010-04-20 04:24:59
163
## 2571 173 31 1658 2009-03-07 01:45:28
## 2572 173 31 1658 2009-03-07 01:45:28
## 2573 172 130 800 2016-01-01 17:51:36
## 2574 971 266 7454 2019-08-03 21:01:56
## 2575 31 2 25 2020-07-22 21:01:18
## 2576 31 2 25 2020-07-22 21:01:18
## 2577 3290 2508 15324 2012-01-04 20:46:23
## 2578 408 305 178 2019-10-18 02:02:55
## 2579 74 79 6475 2012-11-26 00:14:58
## 2580 270 184 10109 2012-01-21 16:14:34
## 2581 270 184 10109 2012-01-21 16:14:34
## 2582 270 184 10109 2012-01-21 16:14:34
## 2583 270 184 10109 2012-01-21 16:14:34
## 2584 270 184 10109 2012-01-21 16:14:34
## 2585 270 184 10109 2012-01-21 16:14:34
## 2586 270 184 10109 2012-01-21 16:14:34
## 2587 270 184 10109 2012-01-21 16:14:34
## 2588 242 53 250 2020-10-05 20:44:26
## 2589 161 6 431 2017-04-07 17:05:43
## 2590 3025 4794 150607 2010-12-17 15:21:45
## 2591 15 2 886 2020-06-15 18:15:20
## 2592 102 61 995 2009-04-08 12:10:37
## 2593 3 7 893 2016-06-08 17:07:27
## 2594 3 7 893 2016-06-08 17:07:27
## 2595 3 7 893 2016-06-08 17:07:27
## 2596 3 7 893 2016-06-08 17:07:27
## 2597 225 674 20275 2011-07-30 21:41:16
## 2598 225 674 20275 2011-07-30 21:41:16
## 2599 1624 1613 9520 2013-09-27 08:47:53
## 2600 1624 1613 9520 2013-09-27 08:47:53
## 2601 1624 1613 9520 2013-09-27 08:47:53
## 2602 1223 195 9012 2020-06-09 22:07:47
## 2603 1223 195 9012 2020-06-09 22:07:47
## 2604 385 2819 5056 2020-02-05 22:57:26
## 2605 648 135 11693 2010-04-20 04:24:59
## 2606 749 3726 1408 2012-07-13 10:46:37
## 2607 749 3726 1408 2012-07-13 10:46:37
## 2608 4373 9502 34523 2010-05-07 04:33:48
## 2609 1117 1788 1798 2015-06-24 14:40:55
## 2610 8759 8095 33618 2009-03-25 01:04:17
## 2611 347 384 16744 2018-04-17 06:26:51
## 2612 347 384 16744 2018-04-17 06:26:51
## 2613 2 2 203 2020-08-11 16:27:18
## 2614 2 2 203 2020-08-11 16:27:18
## 2615 2 2 203 2020-08-11 16:27:18
## 2616 2 2 203 2020-08-11 16:27:18
## 2617 2 2 203 2020-08-11 16:27:18
## 2618 748 350 4508 2009-11-15 02:35:53
## 2619 748 350 4508 2009-11-15 02:35:53
## 2620 1065 198 10947 2019-10-10 03:04:47
## 2621 661 2815 39137 2010-07-05 13:38:23
## 2622 661 2815 39137 2010-07-05 13:38:23
## 2623 27 5 347 2021-02-11 15:48:09
## 2624 59 62 7078 2011-05-03 02:19:57
164
## 2625 98 116941 7701 2013-11-09 16:50:58
## 2626 994 206 6594 2020-02-02 05:54:04
## 2627 994 206 6594 2020-02-02 05:54:04
## 2628 174 64 2460 2020-09-01 21:58:10
## 2629 221 43 604 2019-09-25 23:22:02
## 2630 221 43 604 2019-09-25 23:22:02
## 2631 221 43 604 2019-09-25 23:22:02
## 2632 1223 195 9012 2020-06-09 22:07:47
## 2633 946 6362 8219 2011-11-30 00:32:04
## 2634 29 79 3813 2016-05-28 13:10:59
## 2635 29 79 3813 2016-05-28 13:10:59
## 2636 29 79 3813 2016-05-28 13:10:59
## 2637 553 636 39646 2009-03-16 13:46:20
## 2638 553 636 39646 2009-03-16 13:46:20
## 2639 553 636 39646 2009-03-16 13:46:20
## 2640 553 636 39646 2009-03-16 13:46:20
## 2641 553 636 39646 2009-03-16 13:46:20
## 2642 188 354 25997 2015-08-10 03:33:06
## 2643 178 201 4041 2016-07-24 06:05:28
## 2644 4997 649 148939 2015-11-04 17:01:19
## 2645 4997 649 148939 2015-11-04 17:01:19
## 2646 4997 649 148939 2015-11-04 17:01:19
## 2647 137 33 1308 2009-06-14 08:48:04
## 2648 935 749 6183 2020-03-29 15:16:28
## 2649 138 45 3449 2011-11-17 18:02:02
## 2650 559 62 3510 2009-08-17 02:36:40
## 2651 96 9 963 2020-01-05 20:24:15
## 2652 96 9 963 2020-01-05 20:24:15
## 2653 96 9 963 2020-01-05 20:24:15
## 2654 797 1038 14660 2020-06-20 06:06:52
## 2655 2194 635 14923 2014-01-31 04:17:48
## 2656 73 4 472 2021-02-13 01:55:26
## 2657 73 4 472 2021-02-13 01:55:26
## 2658 377 243 8725 2009-05-20 01:47:20
## 2659 210 129 4705 2015-10-30 18:27:13
## 2660 25 28 1915 2020-05-06 02:30:57
## 2661 222 118 1012 2021-02-18 01:51:43
## 2662 222 118 1012 2021-02-18 01:51:43
## 2663 266 34 4349 2020-03-08 01:08:34
## 2664 625 1001 28109 2009-04-30 14:06:32
## 2665 421 249 8343 2016-06-02 19:17:47
## 2666 69 10 464 2019-08-15 17:17:28
## 2667 765 1036 4526 2009-02-20 20:49:55
## 2668 765 1036 4526 2009-02-20 20:49:55
## 2669 1 175 179 2020-11-23 17:17:45
## 2670 1 175 179 2020-11-23 17:17:45
## 2671 62 34 176 2020-04-08 21:21:30
## 2672 89 206 35871 2009-04-16 04:15:31
## 2673 886 257 11559 2011-10-26 03:18:37
## 2674 886 257 11559 2011-10-26 03:18:37
## 2675 886 257 11559 2011-10-26 03:18:37
## 2676 886 257 11559 2011-10-26 03:18:37
## 2677 1501 138 4742 2009-03-09 17:54:48
## 2678 1501 138 4742 2009-03-09 17:54:48
165
## 2679 1501 138 4742 2009-03-09 17:54:48
## 2680 311 46 5875 2020-12-22 01:23:10
## 2681 311 46 5875 2020-12-22 01:23:10
## 2682 1267 263 4461 2017-03-02 08:14:16
## 2683 938 40 990 2017-10-04 10:59:00
## 2684 938 40 990 2017-10-04 10:59:00
## 2685 2439 2422 140171 2011-02-13 04:10:30
## 2686 2439 2422 140171 2011-02-13 04:10:30
## 2687 2439 2422 140171 2011-02-13 04:10:30
## 2688 651 930 501 2014-02-19 02:03:14
## 2689 1252 816 51210 2012-04-10 14:23:48
## 2690 1252 816 51210 2012-04-10 14:23:48
## 2691 17 4 54 2021-03-08 03:35:48
## 2692 200 224 743 2013-08-14 03:52:21
## 2693 200 224 743 2013-08-14 03:52:21
## 2694 781 196 4466 2012-01-16 23:38:15
## 2695 1629 1835 16324 2012-11-02 14:14:29
## 2696 381 328 2096 2009-03-22 04:47:35
## 2697 411 251 8621 2020-05-02 00:39:39
## 2698 411 251 8621 2020-05-02 00:39:39
## 2699 81 116 7058 2013-02-11 18:22:53
## 2700 5002 2763 178323 2010-07-07 20:06:17
## 2701 0 7 540 2019-12-23 16:53:13
## 2702 568 459 9593 2009-02-20 23:36:20
## 2703 723 331 8432 2014-02-02 21:49:51
## 2704 33 3 125 2021-03-08 16:56:16
## 2705 33 3 125 2021-03-08 16:56:16
## 2706 728 690 9611 2009-03-23 23:05:02
## 2707 184 134 3529 2011-11-15 03:57:56
## 2708 4 65280 39585 2011-02-28 14:11:51
## 2709 712 661 9330 2017-09-30 14:06:14
## 2710 4714 4518 10067 2018-03-02 16:51:47
## 2711 786 638 22459 2011-08-22 23:46:23
## 2712 786 638 22459 2011-08-22 23:46:23
## 2713 867 5029 215699 2015-05-09 12:09:55
## 2714 867 5029 215699 2015-05-09 12:09:55
## 2715 297 28595 84422 2009-09-15 22:09:46
## 2716 297 28595 84422 2009-09-15 22:09:46
## 2717 0 7 1804 2020-08-20 09:39:04
## 2718 4794 3958 40141 2009-06-17 14:25:15
## 2719 93 34 495 2016-10-24 17:05:53
## 2720 63 23 1382 2020-08-04 21:28:43
## 2721 63 23 1382 2020-08-04 21:28:43
## 2722 4655 3584 14613 2013-04-12 17:59:16
## 2723 427 134 2447 2016-03-20 08:06:07
## 2724 277 120 9984 2020-02-23 17:51:56
## 2725 1170 414 23562 2010-01-26 13:59:50
## 2726 409 531 26115 2008-12-31 04:06:12
## 2727 1612 3075 20840 2009-01-20 06:32:24
## 2728 1612 3075 20840 2009-01-20 06:32:24
## 2729 35 8 1301 2019-07-24 21:18:48
## 2730 3158 1134 55071 2009-07-25 08:16:43
## 2731 81 116 7058 2013-02-11 18:22:53
## 2732 413 9730 50464 2018-04-08 17:21:42
166
## 2733 413 9730 50464 2018-04-08 17:21:42
## 2734 413 9730 50464 2018-04-08 17:21:42
## 2735 208 74 16579 2011-08-26 23:23:36
## 2736 454 644 71801 2009-02-20 12:47:58
## 2737 4214 3602 18264 2009-11-15 16:42:43
## 2738 64 12 1150 2020-06-14 15:27:18
## 2739 562 544 35824 2017-01-15 14:28:21
## 2740 429 438 507 2020-12-15 15:16:49
## 2741 411 250 8621 2020-05-02 00:39:39
## 2742 266 3 54643 2010-10-05 23:49:36
## 2743 10 14 1117 2021-02-09 22:36:12
## 2744 1038 902 8289 2019-11-15 04:13:44
## 2745 2265 2151 11155 2020-01-03 21:44:19
## 2746 215 14 35 2020-07-30 16:48:13
## 2747 254 13 902 2020-12-20 10:28:53
## 2748 245 86 2989 2020-12-23 10:54:00
## 2749 710 197 7214 2009-03-05 23:52:26
## 2750 13 22 717 2015-07-09 15:50:42
## 2751 13 22 717 2015-07-09 15:50:42
## 2752 276 75 2271 2019-10-08 12:57:01
## 2753 2263 2157 18810 2010-09-11 23:30:43
## 2754 1264 1297 6351 2009-10-22 01:36:38
## 2755 54 41 2930 2013-08-10 14:33:11
## 2756 1190 457 3063 2009-04-10 22:49:51
## 2757 1190 457 3063 2009-04-10 22:49:51
## 2758 1190 457 3063 2009-04-10 22:49:51
## 2759 517 80 2648 2009-05-14 19:09:02
## 2760 246 260 78992 2019-10-31 12:38:15
## 2761 246 260 78992 2019-10-31 12:38:15
## 2762 246 260 78992 2019-10-31 12:38:15
## 2763 246 260 78992 2019-10-31 12:38:15
## 2764 901 217 1692 2020-12-18 09:21:13
## 2765 1223 195 9012 2020-06-09 22:07:47
## 2766 1223 195 9012 2020-06-09 22:07:47
## 2767 3633 996 48736 2012-04-01 02:32:49
## 2768 11147 12169 984270 2010-09-12 08:06:07
## 2769 11147 12169 984270 2010-09-12 08:06:07
## 2770 11147 12169 984270 2010-09-12 08:06:07
## 2771 3794 2546 46943 2009-06-15 13:12:52
## 2772 308 145 4349 2020-04-04 23:54:48
## 2773 308 145 4349 2020-04-04 23:54:48
## 2774 1363 601 54052 2013-03-21 00:51:18
## 2775 1363 601 54052 2013-03-21 00:51:18
## 2776 1363 601 54052 2013-03-21 00:51:18
## 2777 1131 216 5932 2015-05-21 08:02:57
## 2778 1131 216 5932 2015-05-21 08:02:57
## 2779 543 19927 1450 2018-01-20 08:30:15
## 2780 543 19927 1450 2018-01-20 08:30:15
## 2781 95 14 7310 2019-07-15 23:04:34
## 2782 44 3 664 2020-08-01 17:44:22
## 2783 680 146 850 2008-08-09 21:29:52
## 2784 598 224 1466 2012-11-27 20:04:13
## 2785 1628 1620 2886 2009-07-01 20:44:17
## 2786 1628 1620 2886 2009-07-01 20:44:17
167
## 2787 1238 6459 9835 2014-04-23 18:28:32
## 2788 7 0 120 2021-03-08 06:49:01
## 2789 52 0 103 2020-06-09 09:51:34
## 2790 52 0 103 2020-06-09 09:51:34
## 2791 636 554 26864 2016-03-18 17:29:17
## 2792 268 275 7604 2019-05-17 20:06:28
## 2793 268 275 7604 2019-05-17 20:06:28
## 2794 268 275 7604 2019-05-17 20:06:28
## 2795 1852 1989 2139 2012-10-25 15:27:43
## 2796 1852 1989 2139 2012-10-25 15:27:43
## 2797 1460 1319 5505 2021-02-01 14:30:16
## 2798 1460 1319 5505 2021-02-01 14:30:16
## 2799 1460 1319 5505 2021-02-01 14:30:16
## 2800 2073 1097 68043 2013-05-11 15:56:32
## 2801 2073 1097 68043 2013-05-11 15:56:32
## 2802 367 78 2889 2016-04-07 21:09:42
## 2803 4999 2303 35825 2009-03-18 20:13:22
## 2804 582 275 10901 2009-05-09 09:03:34
## 2805 8 0 7 2021-01-14 16:02:47
## 2806 605 6372 81439 2018-12-16 21:24:32
## 2807 2263 2157 18810 2010-09-11 23:30:43
## 2808 260 72 1353 2014-02-15 20:33:58
## 2809 108 7 118 2016-09-09 05:19:34
## 2810 17975 19562 554470 2009-01-28 09:58:52
## 2811 169 19 427 2021-01-25 19:22:30
## 2812 480 13436257 641297 2010-04-19 10:50:15
## 2813 842 367 1064 2009-07-29 15:02:04
## 2814 112 9 13 2021-02-16 19:39:52
## 2815 112 9 13 2021-02-16 19:39:52
## 2816 80 36 752 2009-11-09 08:40:45
## 2817 80 36 752 2009-11-09 08:40:45
## 2818 70 5 213 2019-09-05 18:13:28
## 2819 1541 765 13732 2009-04-05 20:03:08
## 2820 1541 765 13732 2009-04-05 20:03:08
## 2821 1541 765 13732 2009-04-05 20:03:08
## 2822 1541 765 13732 2009-04-05 20:03:08
## 2823 1541 765 13732 2009-04-05 20:03:08
## 2824 27 5 347 2021-02-11 15:48:09
## 2825 939 360 264 2012-06-01 09:24:18
## 2826 939 360 264 2012-06-01 09:24:18
## 2827 1320 1614 59607 2009-12-23 18:28:58
## 2828 510 795 5772 2008-04-22 20:48:12
## 2829 392 86 1134 2018-09-07 10:59:40
## 2830 854 164 786 2012-06-06 16:00:24
## 2831 1122 226 16647 2008-08-30 21:41:37
## 2832 28 7 619 2015-01-08 01:48:41
## 2833 839 1322 13431 2018-07-08 21:27:56
## 2834 419 56 2872 2017-05-16 21:29:31
## 2835 5283 4803 164252 2013-04-01 07:41:55
## 2836 204 50 1201 2021-02-05 16:27:08
## 2837 204 50 1201 2021-02-05 16:27:08
## 2838 1363 324 14926 2011-12-18 16:48:49
## 2839 1363 324 14926 2011-12-18 16:48:49
## 2840 2140 665 15102 2019-03-05 16:58:57
168
## 2841 2140 665 15102 2019-03-05 16:58:57
## 2842 6252 8472 111874 2013-08-28 12:31:39
## 2843 246 112 3735 2020-09-02 10:23:28
## 2844 1252 816 51210 2012-04-10 14:23:48
## 2845 81 116 7058 2013-02-11 18:22:53
## 2846 631 539 70937 2012-09-04 12:30:44
## 2847 298 383 16133 2019-09-27 10:51:34
## 2848 1084 980 37507 2016-10-25 15:58:03
## 2849 1084 980 37507 2016-10-25 15:58:03
## 2850 24 1 33 2012-05-05 02:24:44
## 2851 24 1 33 2012-05-05 02:24:44
## 2852 24 1 33 2012-05-05 02:24:44
## 2853 24 1 33 2012-05-05 02:24:44
## 2854 471 549 12046 2009-04-02 19:47:44
## 2855 2425 2387 7691 2009-06-18 16:14:32
## 2856 2425 2387 7691 2009-06-18 16:14:32
## 2857 313 290 7367 2015-10-07 21:39:29
## 2858 263 84 39 2020-09-25 15:40:10
## 2859 263 84 39 2020-09-25 15:40:10
## 2860 80 779 67788 2011-09-19 06:54:38
## 2861 80 779 67788 2011-09-19 06:54:38
## 2862 297 28595 84422 2009-09-15 22:09:46
## 2863 297 28595 84422 2009-09-15 22:09:46
## 2864 297 28595 84422 2009-09-15 22:09:46
## 2865 210 76 1946 2020-11-27 21:41:39
## 2866 38 3 72 2019-03-02 15:28:56
## 2867 70 34 1715 2018-11-13 21:15:14
## 2868 634 812 6087 2010-05-23 04:18:18
## 2869 54 41 2930 2013-08-10 14:33:11
## 2870 54 41 2930 2013-08-10 14:33:11
## 2871 1336 184 15950 2010-09-17 18:17:50
## 2872 1336 184 15950 2010-09-17 18:17:50
## 2873 1336 184 15950 2010-09-17 18:17:50
## 2874 268 275 7604 2019-05-17 20:06:28
## 2875 427 522 6395 2015-02-21 15:12:08
## 2876 427 522 6395 2015-02-21 15:12:08
## 2877 427 522 6395 2015-02-21 15:12:08
## 2878 81 116 7058 2013-02-11 18:22:53
## 2879 97 7 46 2021-02-28 17:30:22
## 2880 537 245 9031 2011-07-18 14:49:49
## 2881 204 50 1201 2021-02-05 16:27:08
## 2882 204 50 1201 2021-02-05 16:27:08
## 2883 204 50 1201 2021-02-05 16:27:08
## 2884 204 50 1201 2021-02-05 16:27:08
## 2885 1094 760 15417 2014-08-13 03:26:20
## 2886 616 407 15797 2010-08-16 11:27:35
## 2887 616 407 15797 2010-08-16 11:27:35
## 2888 616 407 15797 2010-08-16 11:27:35
## 2889 27 5 347 2021-02-11 15:48:09
## 2890 587 682 616 2009-09-14 00:41:19
## 2891 572 328 13593 2019-09-22 16:46:07
## 2892 0 4 1548 2020-10-08 12:10:03
## 2893 0 4 1548 2020-10-08 12:10:03
## 2894 0 4 1548 2020-10-08 12:10:03
169
## 2895 2784 5171 88374 2016-12-23 13:55:00
## 2896 2784 5171 88374 2016-12-23 13:55:00
## 2897 515 429 4444 2020-10-25 10:09:47
## 2898 1076 1302 252495 2009-03-17 06:10:31
## 2899 1352 1295 33314 2009-03-31 03:07:28
## 2900 4805 3189 514973 2015-05-18 19:26:30
## 2901 1131 216 5938 2015-05-21 08:02:57
## 2902 938 228 6019 2017-06-14 20:00:24
## 2903 938 228 6019 2017-06-14 20:00:24
## 2904 938 228 6019 2017-06-14 20:00:24
## 2905 91 84 5220 2018-08-17 02:14:38
## 2906 1455 1639 24749 2011-04-15 00:07:53
## 2907 119 28 10549 2020-03-20 00:27:26
## 2908 119 28 10549 2020-03-20 00:27:26
## 2909 330 13 1048 2020-12-23 07:54:33
## 2910 1029 1085 84724 2009-09-16 13:15:38
## 2911 568 459 9584 2009-02-20 23:36:20
## 2912 568 459 9584 2009-02-20 23:36:20
## 2913 106 52 483 2009-04-10 22:42:42
## 2914 873 265 14382 2013-01-06 22:13:20
## 2915 1524 297 5194 2012-04-10 18:24:04
## 2916 1524 297 5194 2012-04-10 18:24:04
## 2917 0 7 539 2019-12-23 16:53:13
## 2918 81 116 7058 2013-02-11 18:22:53
## 2919 1832 483 12946 2013-09-22 20:25:15
## 2920 860 515 65725 2019-01-09 21:19:14
## 2921 860 515 65725 2019-01-09 21:19:14
## 2922 860 515 65725 2019-01-09 21:19:14
## 2923 860 515 65725 2019-01-09 21:19:14
## 2924 860 515 65725 2019-01-09 21:19:14
## 2925 202 6 735 2020-11-02 02:36:15
## 2926 1070 5480 6879 2019-08-26 19:27:10
## 2927 37 26 716 2020-04-25 15:43:02
## 2928 37 26 716 2020-04-25 15:43:02
## 2929 1685 1794 172004 2012-05-08 16:22:55
## 2930 1685 1794 172004 2012-05-08 16:22:55
## 2931 2828 2892 36280 2009-06-03 14:17:15
## 2932 2828 2892 36280 2009-06-03 14:17:15
## 2933 1278 9397 10744 2009-06-01 01:17:01
## 2934 204 50 1201 2021-02-05 16:27:08
## 2935 204 50 1201 2021-02-05 16:27:08
## 2936 10919 45255 18894 2010-02-18 14:29:43
## 2937 700 165 359 2020-08-30 12:39:59
## 2938 700 165 359 2020-08-30 12:39:59
## 2939 700 165 359 2020-08-30 12:39:59
## 2940 700 165 359 2020-08-30 12:39:59
## 2941 59 62 7078 2011-05-03 02:19:57
## 2942 59 62 7078 2011-05-03 02:19:57
## 2943 59 62 7078 2011-05-03 02:19:57
## 2944 728 1249 97569 2010-05-02 16:20:25
## 2945 206 144 13907 2011-03-01 22:02:18
## 2946 206 144 13907 2011-03-01 22:02:18
## 2947 169 42 1499 2011-02-23 20:10:01
## 2948 1455 1234 6269 2012-04-17 18:01:46
170
## 2949 2772 12758 83964 2012-01-03 06:00:20
## 2950 2772 12758 83964 2012-01-03 06:00:20
## 2951 2772 12758 83964 2012-01-03 06:00:20
## 2952 1131 216 5939 2015-05-21 08:02:57
## 2953 76 29 4459 2020-12-02 00:37:38
## 2954 76 29 4459 2020-12-02 00:37:38
## 2955 18 8 299 2020-04-06 02:48:00
## 2956 56 41 236 2020-05-14 19:14:30
## 2957 256 280 25496 2012-12-22 23:08:35
## 2958 214 12 4868 2020-05-12 06:28:31
## 2959 0 4 1545 2020-10-08 12:10:03
## 2960 1517 246 2417 2012-09-16 00:22:47
## 2961 1517 246 2417 2012-09-16 00:22:47
## 2962 1517 246 2417 2012-09-16 00:22:47
## 2963 984 1959 68640 2011-11-15 10:30:32
## 2964 121 55 2076 2020-12-20 20:34:56
## 2965 121 55 2076 2020-12-20 20:34:56
## 2966 121 55 2076 2020-12-20 20:34:56
## 2967 1083 178 2211 2015-01-26 12:54:35
## 2968 1223 195 9012 2020-06-09 22:07:47
## 2969 2794 2675 3020 2017-08-29 15:54:14
## 2970 5508 20597 18610 2011-03-31 16:49:56
## 2971 328 40 1429 2017-06-26 18:41:16
## 2972 706 1469 726 2013-11-08 15:59:05
## 2973 448 215 7222 2009-04-24 11:36:02
## 2974 81 116 7058 2013-02-11 18:22:53
## 2975 1357 902 4681 2009-07-26 19:16:00
## 2976 67 1 117 2010-01-18 17:29:36
## 2977 808 280 1453 2020-03-12 14:47:32
## 2978 70 34 1718 2018-11-13 21:15:14
## 2979 70 34 1718 2018-11-13 21:15:14
## 2980 70 34 1718 2018-11-13 21:15:14
## 2981 70 34 1718 2018-11-13 21:15:14
## 2982 141 12 150 2021-03-02 15:32:37
## 2983 141 12 150 2021-03-02 15:32:37
## 2984 568 459 9592 2009-02-20 23:36:20
## 2985 136 24 1007 2011-01-21 15:16:16
## 2986 1221 185 63847 2019-09-15 18:10:09
## 2987 155 658 2081 2020-07-14 17:15:06
## 2988 306 275 16803 2020-11-01 07:43:20
## 2989 1929 1533 7258 2009-02-26 21:06:37
## 2990 445 30 6140 2009-06-26 06:53:12
## 2991 3991 2652 35719 2012-01-22 16:44:30
## 2992 455 112 2871 2019-01-10 15:56:52
## 2993 1 5 1735 2021-01-15 06:17:04
## 2994 280 57 235 2021-02-18 12:12:00
## 2995 233 188 941 2012-04-06 19:31:41
## 2996 706 1469 726 2013-11-08 15:59:05
## 2997 706 1469 726 2013-11-08 15:59:05
## 2998 495 251 4088 2012-03-05 18:40:13
## 2999 276 118 329 2021-02-16 02:47:12
## 3000 81 116 7058 2013-02-11 18:22:53
## 3001 81 116 7058 2013-02-11 18:22:53
## 3002 81 116 7058 2013-02-11 18:22:53
171
## 3003 448 215 7222 2009-04-24 11:36:02
## 3004 44 2363 7591 2019-07-02 12:35:10
## 3005 635 4981 9864 2009-04-11 02:15:17
## 3006 1 1 694 2020-06-11 10:32:40
## 3007 146 63 1425 2019-10-21 18:44:03
## 3008 146 63 1425 2019-10-21 18:44:03
## 3009 972 230 6152 2019-12-18 19:29:19
## 3010 2075 2989 71965 2011-04-25 04:19:00
## 3011 2075 2989 71965 2011-04-25 04:19:00
## 3012 31 12 82 2018-01-22 12:51:56
## 3013 353 52 8316 2011-02-14 02:42:33
## 3014 2513 903 9296 2010-05-20 04:00:45
## 3015 2513 903 9296 2010-05-20 04:00:45
## 3016 1592 286 13423 2017-12-18 23:43:16
## 3017 1793 274 8842 2011-06-24 22:56:15
## 3018 1793 274 8842 2011-06-24 22:56:15
## 3019 1594 1103 16172 2013-02-03 16:36:48
## 3020 68 1058 14059 2009-05-14 19:26:28
## 3021 56 235 1472 2011-02-27 00:33:09
## 3022 56 235 1472 2011-02-27 00:33:09
## 3023 3117 472 73895 2009-04-18 18:02:43
## 3024 2263 19352 30244 2009-03-25 18:31:07
## 3025 2263 19352 30244 2009-03-25 18:31:07
## 3026 127 69 9207 2009-06-18 14:18:08
## 3027 519 373 122 2020-11-02 21:45:58
## 3028 92 76 1543 2020-04-30 22:28:15
## 3029 815 111 2594 2009-04-09 20:57:22
## 3030 174 64 2461 2020-09-01 21:58:10
## 3031 174 64 2461 2020-09-01 21:58:10
## 3032 15 2 886 2020-06-15 18:15:20
## 3033 1672 354 5160 2009-09-18 05:00:47
## 3034 1672 354 5160 2009-09-18 05:00:47
## 3035 663 17092 11261 2016-12-07 19:02:32
## 3036 6651 5740 134255 2009-09-25 15:06:05
## 3037 57 759 10051 2017-04-10 07:54:53
## 3038 647 563 3682 2011-01-18 19:37:07
## 3039 647 563 3682 2011-01-18 19:37:07
## 3040 3974 105 1282 2020-10-25 22:13:40
## 3041 277 120 9984 2020-02-23 17:51:56
## 3042 0 24 11421 2011-05-30 19:27:23
## 3043 0 24 11421 2011-05-30 19:27:23
## 3044 0 24 11421 2011-05-30 19:27:23
## 3045 0 24 11421 2011-05-30 19:27:23
## 3046 0 24 11421 2011-05-30 19:27:23
## 3047 0 24 11421 2011-05-30 19:27:23
## 3048 0 24 11421 2011-05-30 19:27:23
## 3049 0 24 11421 2011-05-30 19:27:23
## 3050 2943 102 271 2021-02-05 01:25:29
## 3051 135 11 487 2017-12-23 23:39:46
## 3052 417 456 3476 2020-01-10 11:27:40
## 3053 141 1503 8402 2019-04-01 23:34:55
## 3054 2561 343 16834 2009-01-23 11:04:28
## 3055 2561 343 16834 2009-01-23 11:04:28
## 3056 68 23 81 2021-01-19 04:15:18
172
## 3057 68 23 81 2021-01-19 04:15:18
## 3058 2113 4554 79813 2013-08-07 20:45:04
## 3059 398 63 951 2018-07-11 16:15:45
## 3060 1939 107 1876 2015-07-08 09:41:58
## 3061 1939 107 1876 2015-07-08 09:41:58
## 3062 1939 107 1876 2015-07-08 09:41:58
## 3063 1243 5105 9206 2013-03-05 00:34:02
## 3064 3265 13879 23882 2008-10-20 00:43:00
## 3065 3335 1357 7165 2015-01-22 04:04:38
## 3066 3335 1357 7165 2015-01-22 04:04:38
## 3067 3335 1357 7165 2015-01-22 04:04:38
## 3068 3335 1357 7165 2015-01-22 04:04:38
## 3069 3335 1357 7165 2015-01-22 04:04:38
## 3070 146 23 1580 2013-04-04 19:44:58
## 3071 1 5 1 2013-03-26 01:38:29
## 3072 157 59 1681 2021-03-02 08:24:52
## 3073 66 5 374 2020-04-04 15:38:34
## 3074 66 5 374 2020-04-04 15:38:34
## 3075 66 5 374 2020-04-04 15:38:34
## 3076 575 17132 5292 2011-01-28 19:01:53
## 3077 9316 10675 8254 2013-09-05 12:02:15
## 3078 9316 10675 8254 2013-09-05 12:02:15
## 3079 1066 1206 175 2015-12-13 15:04:24
## 3080 1066 1206 175 2015-12-13 15:04:24
## 3081 1066 1206 175 2015-12-13 15:04:24
## 3082 1066 1206 175 2015-12-13 15:04:24
## 3083 70 34 1715 2018-11-13 21:15:14
## 3084 70 34 1715 2018-11-13 21:15:14
## 3085 70 34 1715 2018-11-13 21:15:14
## 3086 2858 2270 34525 2019-11-17 20:47:13
## 3087 371 30 1439 2020-06-26 06:01:01
## 3088 371 30 1439 2020-06-26 06:01:01
## 3089 1865 2915 17592 2011-02-22 14:24:41
## 3090 790 270 1698 2015-04-30 23:36:08
## 3091 573 419 5571 2009-04-11 04:47:23
## 3092 1111 9982 40917 2009-03-23 15:51:35
## 3093 1111 9982 40917 2009-03-23 15:51:35
## 3094 215 328 7139 2011-09-29 22:20:52
## 3095 194 119 4476 2019-03-02 22:35:13
## 3096 194 119 4476 2019-03-02 22:35:13
## 3097 6510 6436 798 2013-10-06 14:31:41
## 3098 0 0 16 2019-07-05 06:19:33
## 3099 0 0 16 2019-07-05 06:19:33
## 3100 52 14 563 2013-08-09 11:39:14
## 3101 52 14 563 2013-08-09 11:39:14
## 3102 52 14 563 2013-08-09 11:39:14
## 3103 234 33 1489 2021-01-14 17:15:44
## 3104 234 33 1489 2021-01-14 17:15:44
## 3105 234 33 1489 2021-01-14 17:15:44
## 3106 81 116 7058 2013-02-11 18:22:53
## 3107 3716 21632 23066 2009-07-16 19:11:29
## 3108 3716 21632 23066 2009-07-16 19:11:29
## 3109 3716 21632 23066 2009-07-16 19:11:29
## 3110 335 71 4077 2009-06-15 04:00:44
173
## 3111 335 71 4077 2009-06-15 04:00:44
## 3112 11039 10045 188610 2011-04-04 22:18:33
## 3113 7 0 13 2020-01-11 04:46:27
## 3114 7 0 13 2020-01-11 04:46:27
## 3115 7 0 13 2020-01-11 04:46:27
## 3116 105 102 6465 2012-02-23 21:44:02
## 3117 76 6 362 2018-05-15 22:44:09
## 3118 429 438 507 2020-12-15 15:16:49
## 3119 285 65 3281 2009-04-19 15:23:44
## 3120 285 65 3281 2009-04-19 15:23:44
## 3121 1311 7033 22598 2009-03-11 11:04:57
## 3122 2213 521 39999 2014-06-01 04:03:10
## 3123 642 29994 22599 2009-03-10 01:19:01
## 3124 230 69 9870 2017-01-13 02:38:46
## 3125 187 15 954 2012-03-11 01:32:17
## 3126 84 6 396 2018-04-15 18:06:47
## 3127 370 303 7179 2014-02-02 19:27:42
## 3128 370 303 7179 2014-02-02 19:27:42
## 3129 460 276 1977 2011-11-08 20:37:31
## 3130 371 30 1439 2020-06-26 06:01:01
## 3131 371 30 1439 2020-06-26 06:01:01
## 3132 938 40 990 2017-10-04 10:59:00
## 3133 938 40 990 2017-10-04 10:59:00
## 3134 2140 665 15096 2019-03-05 16:58:57
## 3135 2140 665 15096 2019-03-05 16:58:57
## 3136 799 617 23260 2019-01-17 19:58:57
## 3137 799 617 23260 2019-01-17 19:58:57
## 3138 799 617 23260 2019-01-17 19:58:57
## 3139 95 14 7291 2019-07-15 23:04:34
## 3140 95 14 7291 2019-07-15 23:04:34
## 3141 2861 1376 35166 2009-08-20 08:22:50
## 3142 22 6 257 2018-10-04 08:16:03
## 3143 22 6 257 2018-10-04 08:16:03
## 3144 145 420 52258 2013-12-04 14:36:54
## 3145 145 420 52258 2013-12-04 14:36:54
## 3146 145 420 52258 2013-12-04 14:36:54
## 3147 886 258 11559 2011-10-26 03:18:37
## 3148 62 18 205 2018-04-30 03:44:30
## 3149 311 46 5875 2020-12-22 01:23:10
## 3150 311 46 5875 2020-12-22 01:23:10
## 3151 1447 1415 28841 2017-04-22 06:00:08
## 3152 2381 328 562 2020-11-04 02:22:44
## 3153 5002 2405 152204 2011-01-13 06:25:33
## 3154 413 4117 12668 2009-12-17 12:51:24
## 3155 837 2617 118358 2014-09-04 04:07:18
## 3156 262 96 17961 2020-12-10 23:02:12
## 3157 262 96 17961 2020-12-10 23:02:12
## 3158 2449 1339 119321 2012-12-23 08:17:28
## 3159 3490 2610 120270 2012-01-01 14:19:59
## 3160 3490 2610 120270 2012-01-01 14:19:59
## 3161 888 3411 7646 2013-12-14 17:42:53
## 3162 4995 3013 52392 2011-07-26 19:50:41
## 3163 594 282 717 2012-03-13 05:18:18
## 3164 1131 216 5939 2015-05-21 08:02:57
174
## 3165 721 669 10414 2017-02-19 16:18:53
## 3166 264 96 17987 2020-12-10 23:02:12
## 3167 264 96 17987 2020-12-10 23:02:12
## 3168 264 96 17987 2020-12-10 23:02:12
## 3169 234 636 120885 2015-08-25 15:57:44
## 3170 234 636 120885 2015-08-25 15:57:44
## 3171 144 136 707 2011-05-22 14:50:32
## 3172 1374 360 9178 2020-10-29 02:43:42
## 3173 25 15 400 2020-12-09 18:23:28
## 3174 137 494 62451 2014-11-26 19:42:56
## 3175 137 494 62451 2014-11-26 19:42:56
## 3176 358 188 7524 2017-11-24 15:51:50
## 3177 818 67 3189 2019-11-26 20:39:20
## 3178 933 788 202061 2010-06-11 06:05:44
## 3179 648 135 11693 2010-04-20 04:24:59
## 3180 648 135 11693 2010-04-20 04:24:59
## 3181 648 135 11693 2010-04-20 04:24:59
## 3182 1006 107 5277 2012-11-23 14:14:28
## 3183 1006 107 5277 2012-11-23 14:14:28
## 3184 143 95 122 2011-07-21 09:17:00
## 3185 143 95 122 2011-07-21 09:17:00
## 3186 5508 20597 18610 2011-03-31 16:49:56
## 3187 5715 5209 137558 2014-09-01 15:06:52
## 3188 2014 2128 21396 2009-07-28 01:41:05
## 3189 48 509 7540 2015-04-12 20:57:06
## 3190 705 314 999 2009-08-03 08:14:06
## 3191 429 438 507 2020-12-15 15:16:49
## 3192 1011 724 10986 2013-01-04 00:03:35
## 3193 836 3985 36653 2010-04-15 01:02:14
## 3194 681 207 11458 2017-12-30 10:18:44
## 3195 4954 4167 298860 2016-07-26 20:51:52
## 3196 2002 3297 31368 2013-04-14 02:24:24
## 3197 2002 3297 31368 2013-04-14 02:24:24
## 3198 2002 3297 31368 2013-04-14 02:24:24
## 3199 6 50 10229 2016-10-12 12:10:23
## 3200 3934 3719 186650 2016-01-13 23:09:28
## 3201 234 151 11753 2020-07-08 04:45:43
## 3202 234 151 11753 2020-07-08 04:45:43
## 3203 983 1999 44480 2009-10-03 15:08:29
## 3204 1606 111923 37905 2009-03-17 10:56:22
## 3205 293 142 898 2013-11-19 11:16:06
## 3206 293 142 898 2013-11-19 11:16:06
## 3207 293 142 898 2013-11-19 11:16:06
## 3208 204 50 1201 2021-02-05 16:27:08
## 3209 1288 412 332 2019-10-14 13:53:50
## 3210 1288 412 332 2019-10-14 13:53:50
## 3211 706 1469 726 2013-11-08 15:59:05
## 3212 1107 848 10826 2017-06-25 14:16:48
## 3213 3398 2367 22849 2009-05-06 22:10:22
## 3214 279 116 5506 2020-11-19 05:44:18
## 3215 1131 216 5938 2015-05-21 08:02:57
## 3216 62 19 1561 2020-11-16 13:02:28
## 3217 803 869 135425 2014-02-16 13:02:43
## 3218 840 262 1608 2018-10-19 12:44:56
175
## 3219 840 262 1608 2018-10-19 12:44:56
## 3220 840 262 1608 2018-10-19 12:44:56
## 3221 3826 2493 57803 2010-07-15 19:46:29
## 3222 805 194 21364 2015-03-20 02:11:36
## 3223 2140 665 15099 2019-03-05 16:58:57
## 3224 277 120 9984 2020-02-23 17:51:56
## 3225 413 4117 12669 2009-12-17 12:51:24
## 3226 137 33 1308 2009-06-14 08:48:04
## 3227 268 275 7604 2019-05-17 20:06:28
## 3228 268 275 7604 2019-05-17 20:06:28
## 3229 6639 28457 7163 2011-12-04 18:26:30
## 3230 833 733 3447 2009-03-24 23:07:00
## 3231 8063 7415 40422 2009-04-04 03:24:26
## 3232 473 614 23543 2016-05-14 21:10:03
## 3233 1447 1415 28841 2017-04-22 06:00:08
## 3234 1447 1415 28841 2017-04-22 06:00:08
## 3235 693 302 12433 2020-01-28 12:20:58
## 3236 888 1241 108041 2017-12-29 22:09:26
## 3237 888 1241 108041 2017-12-29 22:09:26
## 3238 888 1241 108041 2017-12-29 22:09:26
## 3239 888 1241 108041 2017-12-29 22:09:26
## 3240 13 9 157 2020-07-01 13:12:47
## 3241 276 87 293 2020-05-13 15:48:13
## 3242 4794 3958 40141 2009-06-17 14:25:15
## 3243 54 41 2931 2013-08-10 14:33:11
## 3244 54 41 2931 2013-08-10 14:33:11
## 3245 54 41 2931 2013-08-10 14:33:11
## 3246 17 4 442 2020-11-28 15:41:27
## 3247 17 4 442 2020-11-28 15:41:27
## 3248 13 240 22 2011-03-21 21:00:01
## 3249 193 43 38 2021-02-08 04:08:55
## 3250 929 1408 16980 2015-03-14 07:20:09
## 3251 530 411 183522 2012-07-03 18:57:13
## 3252 592 82 147 2021-02-27 07:18:15
## 3253 592 82 147 2021-02-27 07:18:15
## 3254 95 14 7323 2019-07-15 23:04:34
## 3255 369 45 10043 2009-06-26 15:28:41
## 3256 172 503 255 2011-08-10 19:13:49
## 3257 737 207 2712 2012-01-02 06:33:16
## 3258 2938 101 271 2021-02-05 01:25:29
## 3259 58 11 263 2011-10-03 22:57:14
## 3260 58 11 263 2011-10-03 22:57:14
## 3261 4977 4120 232290 2009-04-29 07:43:02
## 3262 4977 4120 232290 2009-04-29 07:43:02
## 3263 4977 4120 232290 2009-04-29 07:43:02
## 3264 347 128 20297 2020-05-30 14:01:55
## 3265 347 128 20297 2020-05-30 14:01:55
## 3266 553 564 208297 2009-08-30 16:08:28
## 3267 553 564 208297 2009-08-30 16:08:28
## 3268 553 564 208297 2009-08-30 16:08:28
## 3269 58 3 173 2020-12-19 03:07:00
## 3270 58 3 173 2020-12-19 03:07:00
## 3271 27 14 633 2020-11-19 23:20:48
## 3272 2271 3199 97887 2016-07-21 19:53:08
176
## 3273 2271 3199 97887 2016-07-21 19:53:08
## 3274 1590 1792 44478 2011-10-17 15:04:07
## 3275 1590 1792 44478 2011-10-17 15:04:07
## 3276 246 260 78996 2019-10-31 12:38:15
## 3277 246 260 78996 2019-10-31 12:38:15
## 3278 246 260 78996 2019-10-31 12:38:15
## 3279 3212 2867 98721 2012-02-27 17:18:43
## 3280 2350 1654 4349 2018-11-01 23:19:14
## 3281 297 28595 84422 2009-09-15 22:09:46
## 3282 476 189 16246 2009-03-16 08:40:25
## 3283 2550 828 7200 2009-06-14 22:24:59
## 3284 194 62 2598 2015-02-18 07:23:52
## 3285 956 1394 6648 2009-12-07 02:18:56
## 3286 706 1469 726 2013-11-08 15:59:05
## 3287 706 1469 726 2013-11-08 15:59:05
## 3288 706 1469 726 2013-11-08 15:59:05
## 3289 44 2363 7591 2019-07-02 12:35:10
## 3290 44 2363 7591 2019-07-02 12:35:10
## 3291 614 207242 111115 2009-03-22 21:46:24
## 3292 205 1460 42402 2012-01-29 16:10:46
## 3293 568 459 9593 2009-02-20 23:36:20
## 3294 568 459 9593 2009-02-20 23:36:20
## 3295 568 459 9593 2009-02-20 23:36:20
## 3296 568 459 9593 2009-02-20 23:36:20
## 3297 0 1 70 2021-01-07 14:00:41
## 3298 0 24 11421 2011-05-30 19:27:23
## 3299 0 24 11421 2011-05-30 19:27:23
## 3300 0 24 11421 2011-05-30 19:27:23
## 3301 0 24 11421 2011-05-30 19:27:23
## 3302 0 24 11421 2011-05-30 19:27:23
## 3303 0 24 11421 2011-05-30 19:27:23
## 3304 0 24 11421 2011-05-30 19:27:23
## 3305 0 24 11421 2011-05-30 19:27:23
## 3306 119 1736 38536 2016-07-06 08:30:43
## 3307 1694 556 36502 2010-03-03 12:24:23
## 3308 1694 556 36502 2010-03-03 12:24:23
## 3309 1374 360 9178 2020-10-29 02:43:42
## 3310 339 526 49260 2013-09-19 03:50:45
## 3311 339 526 49260 2013-09-19 03:50:45
## 3312 3705 400 7443 2017-10-14 13:12:00
## 3313 3705 400 7443 2017-10-14 13:12:00
## 3314 60 663 695197 2014-01-20 20:37:28
## 3315 141 16 1087 2013-01-24 15:26:14
## 3316 980 1291 3639 2009-06-27 09:17:52
## 3317 80 12 20 2021-02-23 17:01:27
## 3318 1224 583 1445 2021-02-15 18:49:57
## 3319 180 504 7864 2019-02-24 04:39:08
## 3320 180 504 7864 2019-02-24 04:39:08
## 3321 180 504 7864 2019-02-24 04:39:08
## 3322 533 671 28413 2009-07-03 14:35:41
## 3323 386 195 11668 2015-11-26 16:59:14
## 3324 71 20 515 2019-03-12 20:15:28
## 3325 693 23 1564 2020-03-22 19:57:12
## 3326 31 5 389 2016-06-20 20:45:29
177
## 3327 31 5 389 2016-06-20 20:45:29
## 3328 31 5 389 2016-06-20 20:45:29
## 3329 314 29 452 2019-12-17 21:11:00
## 3330 314 29 452 2019-12-17 21:11:00
## 3331 314 29 452 2019-12-17 21:11:00
## 3332 238 27 316 2010-12-25 00:48:14
## 3333 1049 1318 3101 2008-05-23 09:36:39
## 3334 760 79 170 2020-04-16 14:25:23
## 3335 17975 19562 554470 2009-01-28 09:58:52
## 3336 414 828 54554 2020-01-12 19:53:50
## 3337 414 828 54554 2020-01-12 19:53:50
## 3338 414 828 54554 2020-01-12 19:53:50
## 3339 0 0 12 2020-07-16 06:20:56
## 3340 373 33 714 2014-11-18 20:28:18
## 3341 373 33 714 2014-11-18 20:28:18
## 3342 373 33 714 2014-11-18 20:28:18
## 3343 373 33 714 2014-11-18 20:28:18
## 3344 303 158 24248 2011-03-27 22:06:01
## 3345 303 158 24248 2011-03-27 22:06:01
## 3346 1131 216 5932 2015-05-21 08:02:57
## 3347 1131 216 5932 2015-05-21 08:02:57
## 3348 60 230 380 2019-03-20 17:24:55
## 3349 294 70 3321 2021-01-13 05:47:15
## 3350 539 488 688 2020-04-08 04:20:32
## 3351 4 19 34 2019-12-25 00:45:03
## 3352 527 196 4991 2011-08-15 06:03:56
## 3353 527 196 4991 2011-08-15 06:03:56
## 3354 2166 15848 40129 2011-09-12 14:13:41
## 3355 650 768 32760 2010-08-27 01:41:19
## 3356 161 168 2036 2017-07-28 13:54:02
## 3357 650 238 12797 2011-09-21 19:08:35
## 3358 770 152 3802 2009-05-16 20:03:47
## 3359 62 19 1561 2020-11-16 13:02:28
## 3360 135 32 1215 2020-05-24 09:16:23
## 3361 135 32 1215 2020-05-24 09:16:23
## 3362 135 32 1215 2020-05-24 09:16:23
## 3363 2988 825 128694 2012-06-19 19:32:43
## 3364 2988 825 128694 2012-06-19 19:32:43
## 3365 2988 825 128694 2012-06-19 19:32:43
## 3366 1075 268 3375 2015-06-18 09:51:18
## 3367 1075 268 3375 2015-06-18 09:51:18
## 3368 1075 268 3375 2015-06-18 09:51:18
## 3369 1075 268 3375 2015-06-18 09:51:18
## 3370 98 68542 71561 2008-11-19 22:24:58
## 3371 1388 1288 36123 2015-04-21 04:42:57
## 3372 208 235 27548 2010-01-22 04:27:42
## 3373 664 19 446 2010-10-23 19:33:06
## 3374 59 94 441 2020-05-22 20:44:15
## 3375 336 120 312 2019-05-31 08:21:13
## 3376 336 120 312 2019-05-31 08:21:13
## 3377 0 7 539 2019-12-23 16:53:13
## 3378 0 7 539 2019-12-23 16:53:13
## 3379 0 7 539 2019-12-23 16:53:13
## 3380 0 7 539 2019-12-23 16:53:13
178
## 3381 0 7 539 2019-12-23 16:53:13
## 3382 0 7 539 2019-12-23 16:53:13
## 3383 2784 5170 88359 2016-12-23 13:55:00
## 3384 3610 877 19301 2008-10-15 19:55:09
## 3385 250 136 590 2013-07-15 11:31:08
## 3386 508 38 3924 2017-10-04 10:42:03
## 3387 508 38 3924 2017-10-04 10:42:03
## 3388 5001 1183 67530 2016-09-27 01:17:19
## 3389 369 16 1993 2011-09-15 08:41:10
## 3390 369 16 1993 2011-09-15 08:41:10
## 3391 61 68 1759 2015-08-23 17:09:54
## 3392 1070 5480 6879 2019-08-26 19:27:10
## 3393 1070 5480 6879 2019-08-26 19:27:10
## 3394 889 1908 27905 2015-08-01 03:35:49
## 3395 729 137 1619 2020-03-29 21:34:56
## 3396 729 137 1619 2020-03-29 21:34:56
## 3397 164 363 3094 2018-11-21 22:56:27
## 3398 165 69 974 2016-08-21 00:30:08
## 3399 489 317 3590 2011-06-08 15:30:32
## 3400 489 317 3590 2011-06-08 15:30:32
## 3401 2063 391 5516 2014-03-18 21:48:31
## 3402 1527 1127 25762 2009-05-13 14:16:02
## 3403 1527 1127 25762 2009-05-13 14:16:02
## 3404 1117 1621 44569 2017-03-10 23:08:27
## 3405 530 411 183522 2012-07-03 18:57:13
## 3406 75 1163 1840 2018-06-09 08:05:12
## 3407 50 11 405 2019-12-30 22:38:40
## 3408 91 84 5220 2018-08-17 02:14:38
## 3409 641 142 1266 2009-11-21 23:36:57
## 3410 594 330 15522 2017-08-26 19:12:31
## 3411 886 258 11559 2011-10-26 03:18:37
## 3412 623 77 3284 2013-10-09 03:12:31
## 3413 2382 329 562 2020-11-04 02:22:44
## 3414 2382 329 562 2020-11-04 02:22:44
## 3415 2382 329 562 2020-11-04 02:22:44
## 3416 2382 329 562 2020-11-04 02:22:44
## 3417 110 79 1869 2017-06-22 13:56:51
## 3418 17975 19563 554488 2009-01-28 09:58:52
## 3419 1031 1578 5484 2010-03-17 08:20:49
## 3420 1031 1578 5484 2010-03-17 08:20:49
## 3421 75 19 353 2011-10-02 17:53:32
## 3422 2861 1376 35166 2009-08-20 08:22:50
## 3423 15 28 29 2017-10-31 13:53:02
## 3424 2377 727 7420 2014-10-01 07:19:50
## 3425 88 3 12 2019-09-30 21:33:43
## 3426 338 235 1600 2011-04-27 18:56:29
## 3427 338 235 1600 2011-04-27 18:56:29
## 3428 338 235 1600 2011-04-27 18:56:29
## 3429 568 459 9584 2009-02-20 23:36:20
## 3430 568 459 9584 2009-02-20 23:36:20
## 3431 568 459 9584 2009-02-20 23:36:20
## 3432 55 645 159 2021-01-12 20:35:45
## 3433 545 10883 5571 2009-07-06 17:58:39
## 3434 490 342 2181 2020-08-20 17:39:31
179
## 3435 490 342 2181 2020-08-20 17:39:31
## 3436 222 66 23512 2013-12-20 02:34:49
## 3437 183 25 13851 2020-10-20 02:01:02
## 3438 476 331 4538 2009-04-10 01:42:30
## 3439 476 331 4538 2009-04-10 01:42:30
## 3440 674 231 5361 2011-04-16 00:59:05
## 3441 2932 1285 85691 2009-03-19 02:03:28
## 3442 654 173 5002 2019-06-19 19:25:49
## 3443 654 173 5002 2019-06-19 19:25:49
## 3444 707 401 7575 2010-10-11 15:35:21
## 3445 2212 1994 27363 2011-06-29 13:10:17
## 3446 217 96 11791 2010-03-13 21:42:15
## 3447 51 0 20 2021-01-31 17:24:28
## 3448 51 0 20 2021-01-31 17:24:28
## 3449 546 82 3212 2018-09-06 20:28:18
## 3450 4271 4008 11628 2020-11-05 23:09:27
## 3451 4271 4008 11628 2020-11-05 23:09:27
## 3452 4528 4960 15340 2009-02-20 03:39:03
## 3453 2139 665 15088 2019-03-05 16:58:57
## 3454 2139 665 15088 2019-03-05 16:58:57
## 3455 178 75 1489 2015-05-27 04:44:40
## 3456 72 2 248 2020-12-22 15:19:59
## 3457 269 40 187 2021-01-18 22:46:36
## 3458 588 425 2002 2009-04-10 22:16:34
## 3459 588 425 2002 2009-04-10 22:16:34
## 3460 4454 5352 156078 2009-05-28 17:58:28
## 3461 4454 5352 156078 2009-05-28 17:58:28
## 3462 188 173 2325 2019-10-06 18:42:41
## 3463 188 173 2325 2019-10-06 18:42:41
## 3464 188 150 3666 2011-09-27 16:11:00
## 3465 188 150 3666 2011-09-27 16:11:00
## 3466 475 282 5963 2018-04-01 18:33:30
## 3467 25 15 400 2020-12-09 18:23:28
## 3468 25 15 400 2020-12-09 18:23:28
## 3469 39 25 958 2019-11-02 17:13:41
## 3470 39 25 958 2019-11-02 17:13:41
## 3471 39 25 958 2019-11-02 17:13:41
## 3472 39 25 958 2019-11-02 17:13:41
## 3473 39 25 958 2019-11-02 17:13:41
## 3474 809 28 9778 2017-06-20 09:51:28
## 3475 420 494 16354 2012-01-13 16:17:18
## 3476 246 260 78992 2019-10-31 12:38:15
## 3477 246 260 78992 2019-10-31 12:38:15
## 3478 0 0 7 2021-03-09 15:23:24
## 3479 0 0 7 2021-03-09 15:23:24
## 3480 1012 178 11753 2014-04-03 01:05:56
## 3481 2102 4447 63178 2012-10-05 16:17:07
## 3482 73 83 4158 2012-11-09 18:11:51
## 3483 125 55 1150 2012-12-09 20:11:50
## 3484 267 1708 4664 2015-08-02 09:36:47
## 3485 5070 5156 172569 2011-05-27 06:16:15
## 3486 563 170 245 2018-08-07 22:52:18
## 3487 3 5 333 2021-02-26 22:20:43
## 3488 3 5 333 2021-02-26 22:20:43
180
## 3489 79 2333 1553 2018-09-29 10:08:07
## 3490 79 2333 1553 2018-09-29 10:08:07
## 3491 503 107 773 2017-10-16 00:38:53
## 3492 1383 394 14083 2009-09-22 23:48:53
## 3493 1383 394 14083 2009-09-22 23:48:53
## 3494 1459 1317 5507 2021-02-01 14:30:16
## 3495 2244 251 7268 2008-07-29 17:43:32
## 3496 194 119 4476 2019-03-02 22:35:13
## 3497 194 119 4476 2019-03-02 22:35:13
## 3498 209 21 1844 2020-10-14 11:58:06
## 3499 256 731 1277 2013-07-22 00:50:30
## 3500 13 10 612 2015-12-28 22:36:38
## 3501 1039 281 5201 2020-01-15 06:20:00
## 3502 1039 281 5201 2020-01-15 06:20:00
## 3503 149 484 18737 2011-02-07 07:06:16
## 3504 2242 346 14570 2009-04-10 13:54:47
## 3505 414 169 20980 2012-11-16 09:16:53
## 3506 17 2 58 2021-01-18 01:51:42
## 3507 3983 3199 87796 2013-06-12 11:07:24
## 3508 1601 100 2846 2018-12-05 14:03:21
## 3509 592 21 248 2020-06-07 20:54:43
## 3510 372 164 1214 2020-07-20 09:41:44
## 3511 3025 4795 150618 2010-12-17 15:21:45
## 3512 499 48 720 2020-04-30 09:53:11
## 3513 5000 1211 41126 2018-09-11 10:39:08
## 3514 674 877 3134 2017-04-21 11:28:49
## 3515 674 877 3134 2017-04-21 11:28:49
## 3516 122 66 10850 2017-05-21 03:07:10
## 3517 5 0 22 2021-03-07 16:27:24
## 3518 76 34 389 2020-11-13 20:50:45
## 3519 2898 2090 25906 2011-02-14 21:45:06
## 3520 108 6 1160 2020-10-15 14:59:24
## 3521 571 10 353 2021-01-10 19:01:25
## 3522 571 10 353 2021-01-10 19:01:25
## 3523 571 10 353 2021-01-10 19:01:25
## 3524 2033 2798 39687 2010-08-29 03:37:22
## 3525 2033 2798 39687 2010-08-29 03:37:22
## 3526 299 50 1938 2013-10-08 22:56:02
## 3527 1348 564 5612 2018-01-05 05:07:38
## 3528 2255 693506 160761 2008-11-21 14:51:32
## 3529 2255 693506 160761 2008-11-21 14:51:32
## 3530 4995 2117 24423 2009-05-27 10:29:47
## 3531 4995 2117 24423 2009-05-27 10:29:47
## 3532 542 261 3079 2013-01-14 15:09:07
## 3533 230 223 90 2021-03-08 05:14:51
## 3534 0 0 47 2020-10-12 11:19:50
## 3535 0 0 47 2020-10-12 11:19:50
## 3536 0 0 47 2020-10-12 11:19:50
## 3537 2672 985 56707 2014-07-14 19:22:12
## 3538 2672 985 56707 2014-07-14 19:22:12
## 3539 448 215 7222 2009-04-24 11:36:02
## 3540 448 215 7222 2009-04-24 11:36:02
## 3541 9584 12823 466631 2011-11-23 23:50:48
## 3542 1891 1202 6312 2019-11-27 00:40:50
181
## 3543 101 258 29252 2015-08-29 01:33:55
## 3544 88 90 7662 2018-10-07 19:57:47
## 3545 88 90 7662 2018-10-07 19:57:47
## 3546 226 814 671 2020-05-17 09:50:26
## 3547 226 814 671 2020-05-17 09:50:26
## 3548 137 33 1308 2009-06-14 08:48:04
## 3549 426 120 44938 2009-04-05 16:21:24
## 3550 426 120 44938 2009-04-05 16:21:24
## 3551 1611 2032 65764 2009-07-14 19:46:32
## 3552 933 788 202066 2010-06-11 06:05:44
## 3553 933 788 202066 2010-06-11 06:05:44
## 3554 34 1 66 2021-02-27 22:22:57
## 3555 69 19 168 2010-09-29 19:02:52
## 3556 69 19 168 2010-09-29 19:02:52
## 3557 595 65 3806 2020-03-17 02:10:07
## 3558 173 43 982 2016-07-29 10:15:07
## 3559 173 43 982 2016-07-29 10:15:07
## 3560 173 43 982 2016-07-29 10:15:07
## 3561 1470 1334 19167 2015-08-20 09:50:46
## 3562 1470 1334 19167 2015-08-20 09:50:46
## 3563 2059 7910 62657 2009-04-28 02:26:59
## 3564 190 38 8342 2017-11-29 23:10:30
## 3565 190 38 8342 2017-11-29 23:10:30
## 3566 1757 1078 25202 2014-01-31 17:22:11
## 3567 70 34 1715 2018-11-13 21:15:14
## 3568 596 155 27522 2013-10-02 04:05:35
## 3569 137 33 1308 2009-06-14 08:48:04
## 3570 949 139 2364 2018-02-16 23:04:29
## 3571 5428 928180 98233 2009-02-18 17:23:07
## 3572 189 4 658 2020-11-13 01:15:15
## 3573 189 4 658 2020-11-13 01:15:15
## 3574 189 4 658 2020-11-13 01:15:15
## 3575 199 41 11221 2020-08-20 03:17:36
## 3576 631 80 5871 2014-08-13 02:59:43
## 3577 1929 1340 26899 2017-12-22 10:16:23
## 3578 1929 1340 26899 2017-12-22 10:16:23
## 3579 413 9722 50464 2018-04-08 17:21:42
## 3580 907 67 821 2011-12-16 18:51:17
## 3581 43 556 1826 2011-03-03 20:19:05
## 3582 43 556 1826 2011-03-03 20:19:05
## 3583 1121 1260 93197 2014-11-26 01:31:33
## 3584 1121 1260 93197 2014-11-26 01:31:33
## 3585 1121 1260 93197 2014-11-26 01:31:33
## 3586 1121 1260 93197 2014-11-26 01:31:33
## 3587 71 63 3687 2020-11-09 02:57:47
## 3588 516 421 5981 2013-03-06 01:06:08
## 3589 516 421 5981 2013-03-06 01:06:08
## 3590 516 421 5981 2013-03-06 01:06:08
## 3591 666 207 11525 2009-04-24 20:44:39
## 3592 790 6187 1206 2009-01-20 04:22:28
## 3593 82 81 3334 2016-10-20 16:52:05
## 3594 206 476 402 2019-05-06 23:25:26
## 3595 206 476 402 2019-05-06 23:25:26
## 3596 206 476 402 2019-05-06 23:25:26
182
## 3597 4997 649 148947 2015-11-04 17:01:19
## 3598 4997 649 148947 2015-11-04 17:01:19
## 3599 4997 649 148947 2015-11-04 17:01:19
## 3600 1871 251 29384 2013-07-01 04:59:38
## 3601 881 157 619 2013-12-02 16:54:30
## 3602 1067 527 7736 2015-05-05 20:40:51
## 3603 1067 527 7736 2015-05-05 20:40:51
## 3604 1067 527 7736 2015-05-05 20:40:51
## 3605 102 5 692 2020-04-19 08:23:47
## 3606 382 12270 54987 2009-05-02 18:43:10
## 3607 434 245 9671 2020-04-28 03:45:26
## 3608 525 79 6802 2010-02-22 17:07:21
## 3609 525 79 6802 2010-02-22 17:07:21
## 3610 242 60 2654 2013-08-27 20:55:59
## 3611 2693 856 4844 2020-01-20 03:47:07
## 3612 275 106 3608 2021-02-14 22:30:58
## 3613 275 106 3608 2021-02-14 22:30:58
## 3614 275 106 3608 2021-02-14 22:30:58
## 3615 275 106 3608 2021-02-14 22:30:58
## 3616 275 106 3608 2021-02-14 22:30:58
## 3617 967 148 7898 2015-06-15 21:33:45
## 3618 2381 973 67591 2018-02-23 15:56:03
## 3619 142 5 23 2021-02-05 17:49:45
## 3620 142 5 23 2021-02-05 17:49:45
## 3621 2319 1630 56170 2009-02-10 21:58:25
## 3622 2319 1630 56170 2009-02-10 21:58:25
## 3623 17975 19562 554479 2009-01-28 09:58:52
## 3624 1812 1662 91186 2014-02-19 00:03:39
## 3625 1812 1662 91186 2014-02-19 00:03:39
## 3626 5766 134139 9589 2009-02-26 16:28:23
## 3627 158 7 417 2020-11-08 04:05:07
## 3628 791 1081 1426 2014-07-23 08:12:17
## 3629 760 79 170 2020-04-16 14:25:23
## 3630 2785 5170 88382 2016-12-23 13:55:00
## 3631 2785 5170 88382 2016-12-23 13:55:00
## 3632 2785 5170 88382 2016-12-23 13:55:00
## 3633 2785 5170 88382 2016-12-23 13:55:00
## 3634 277 120 9984 2020-02-23 17:51:56
## 3635 277 120 9984 2020-02-23 17:51:56
## 3636 36 7 967 2018-04-13 02:25:58
## 3637 704 1129 14813 2007-07-31 05:59:59
## 3638 3 0 7 2016-11-21 10:25:05
## 3639 410 215 315 2010-01-20 20:46:14
## 3640 54 41 2930 2013-08-10 14:33:11
## 3641 54 41 2930 2013-08-10 14:33:11
## 3642 54 41 2930 2013-08-10 14:33:11
## 3643 54 41 2930 2013-08-10 14:33:11
## 3644 54 41 2930 2013-08-10 14:33:11
## 3645 70 34 1715 2018-11-13 21:15:14
## 3646 70 34 1715 2018-11-13 21:15:14
## 3647 70 34 1715 2018-11-13 21:15:14
## 3648 70 34 1715 2018-11-13 21:15:14
## 3649 70 34 1715 2018-11-13 21:15:14
## 3650 70 34 1715 2018-11-13 21:15:14
183
## 3651 70 34 1715 2018-11-13 21:15:14
## 3652 70 34 1715 2018-11-13 21:15:14
## 3653 70 34 1715 2018-11-13 21:15:14
## 3654 1636 1528 9911 2011-02-17 16:13:50
## 3655 3 58 4194 2020-03-20 19:00:59
## 3656 3 58 4194 2020-03-20 19:00:59
## 3657 33 341 8018 2018-02-21 02:46:50
## 3658 121 55 2076 2020-12-20 20:34:56
## 3659 121 55 2076 2020-12-20 20:34:56
## 3660 991 10924 148117 2011-10-09 18:41:34
## 3661 1257 931 4923 2010-06-16 21:46:11
## 3662 644 592 9459 2009-05-23 17:17:44
## 3663 4935 2727 148066 2011-12-22 09:20:54
## 3664 1401 450 10284 2011-01-02 00:36:17
## 3665 1401 450 10284 2011-01-02 00:36:17
## 3666 1401 450 10284 2011-01-02 00:36:17
## 3667 1401 450 10284 2011-01-02 00:36:17
## 3668 1401 450 10284 2011-01-02 00:36:17
## 3669 1401 450 10284 2011-01-02 00:36:17
## 3670 1401 450 10284 2011-01-02 00:36:17
## 3671 1401 450 10284 2011-01-02 00:36:17
## 3672 81 116 7058 2013-02-11 18:22:53
## 3673 997 2046 27035 2010-12-17 09:32:41
## 3674 2104 385 1085 2021-02-17 04:19:37
## 3675 2104 385 1085 2021-02-17 04:19:37
## 3676 2104 385 1085 2021-02-17 04:19:37
## 3677 1272 411 2590 2010-05-05 05:48:14
## 3678 0 4 1545 2020-10-08 12:10:03
## 3679 0 4 1545 2020-10-08 12:10:03
## 3680 1385 797 7935 2016-10-07 05:32:54
## 3681 184 4 1109 2020-01-21 21:44:11
## 3682 420 77 1028 2021-01-13 23:40:22
## 3683 420 77 1028 2021-01-13 23:40:22
## 3684 837 2616 118358 2014-09-04 04:07:18
## 3685 837 2616 118358 2014-09-04 04:07:18
## 3686 1675 626 25372 2018-12-11 01:30:39
## 3687 299 19 658 2019-08-25 12:06:40
## 3688 1821 3482 15593 2013-02-14 01:10:30
## 3689 4001 3735 349037 2009-03-13 17:57:30
## 3690 325 16 619 2016-09-09 15:15:03
## 3691 498 29 6384 2014-10-30 01:16:29
## 3692 498 29 6384 2014-10-30 01:16:29
## 3693 498 29 6384 2014-10-30 01:16:29
## 3694 27 122 37189 2012-10-10 04:18:18
## 3695 27 122 37189 2012-10-10 04:18:18
## 3696 4998 3253 14748 2009-01-09 18:29:38
## 3697 242 60 2654 2013-08-27 20:55:59
## 3698 420 77 1028 2021-01-13 23:40:22
## 3699 4703 1411 15432 2011-09-01 15:21:22
## 3700 1255 2330 144477 2009-02-24 00:06:36
## 3701 1255 2330 144477 2009-02-24 00:06:36
## 3702 1255 2330 144477 2009-02-24 00:06:36
## 3703 1255 2330 144477 2009-02-24 00:06:36
## 3704 1255 2330 144477 2009-02-24 00:06:36
184
## 3705 1458 755998 38157 2009-03-03 20:46:34
## 3706 1114 303 23148 2009-04-05 18:22:03
## 3707 429 497 3871 2018-03-28 13:01:40
## 3708 429 497 3871 2018-03-28 13:01:40
## 3709 56 41 236 2020-05-14 19:14:30
## 3710 56 41 236 2020-05-14 19:14:30
## 3711 56 41 236 2020-05-14 19:14:30
## 3712 2880 2528 82000 2013-12-17 03:14:01
## 3713 345 14 1963 2021-02-18 21:27:14
## 3714 345 14 1963 2021-02-18 21:27:14
## 3715 54 41 2931 2013-08-10 14:33:11
## 3716 147 38 2170 2011-12-25 19:12:49
## 3717 38 387 107248 2013-07-06 19:54:34
## 3718 281 369 12147 2019-12-07 15:20:44
## 3719 0 7 539 2019-12-23 16:53:13
## 3720 0 7 539 2019-12-23 16:53:13
## 3721 117 21 252 2014-11-25 16:28:25
## 3722 8224 11331 12644 2012-07-23 20:17:24
## 3723 750 90 1690 2021-01-15 08:13:00
## 3724 2281 1839 8985 2009-01-28 17:14:39
## 3725 2281 1839 8985 2009-01-28 17:14:39
## 3726 2281 1839 8985 2009-01-28 17:14:39
## 3727 2281 1839 8985 2009-01-28 17:14:39
## 3728 81 116 7058 2013-02-11 18:22:53
## 3729 685 72 8583 2019-05-18 22:48:37
## 3730 419 210 21638 2010-10-21 18:09:12
## 3731 185 32 1258 2016-10-08 20:28:21
## 3732 398 339 14122 2012-04-12 18:22:53
## 3733 5237 4764 5630 2017-10-07 06:56:49
## 3734 137 33 1308 2009-06-14 08:48:04
## 3735 1746 1023 4786 2009-09-16 17:07:14
## 3736 1746 1023 4786 2009-09-16 17:07:14
## 3737 711 77 7081 2020-02-02 01:45:18
## 3738 58 2 268 2021-02-20 18:47:14
## 3739 1643 8732 7956 2009-11-17 14:57:21
## 3740 501 472 1396 2020-11-01 14:30:11
## 3741 501 472 1396 2020-11-01 14:30:11
## 3742 81 116 7058 2013-02-11 18:22:53
## 3743 470 1267 51134 2019-01-13 21:02:12
## 3744 146 188 40430 2012-01-27 19:30:08
## 3745 537 21297 228979 2011-05-09 14:15:05
## 3746 5001 3906 632662 2010-10-05 22:50:20
## 3747 61 12 69 2019-10-30 10:03:47
## 3748 61 12 69 2019-10-30 10:03:47
## 3749 21 1920 97253 2016-12-28 13:49:40
## 3750 141 1503 8402 2019-04-01 23:34:55
## 3751 1174 81 6711 2020-03-22 13:19:04
## 3752 211 2339 1713 2019-03-12 16:16:34
## 3753 795 647 16465 2019-09-07 21:42:25
## 3754 975 155 1162 2014-07-14 22:54:20
## 3755 81 116 7058 2013-02-11 18:22:53
## 3756 81 116 7058 2013-02-11 18:22:53
## 3757 728 1249 97562 2010-05-02 16:20:25
## 3758 605 6372 81439 2018-12-16 21:24:32
185
## 3759 1486 443 24467 2018-05-31 12:54:17
## 3760 15 43 1731 2020-01-01 18:19:21
## 3761 1944 2289 207151 2012-08-19 12:45:42
## 3762 1944 2289 207151 2012-08-19 12:45:42
## 3763 1944 2289 207151 2012-08-19 12:45:42
## 3764 1944 2289 207151 2012-08-19 12:45:42
## 3765 4492 1180 8066 2014-10-07 02:15:44
## 3766 5 1 16 2021-02-18 21:19:30
## 3767 43 28 5948 2019-08-24 10:57:33
## 3768 31 5 779 2019-08-15 03:28:37
## 3769 1293 1294 25244 2015-03-26 09:11:02
## 3770 660 451 310 2011-07-29 17:34:27
## 3771 400 10 609 2019-09-18 01:59:50
## 3772 45 36 840 2010-10-15 17:02:12
## 3773 1727 264 7337 2012-12-20 10:59:44
## 3774 1454 786 46815 2009-01-25 09:55:45
## 3775 1513 3673 3760 2008-03-26 01:13:07
## 3776 1101 583 20285 2010-02-01 11:36:36
## 3777 28 7 104 2020-01-03 18:33:32
## 3778 180 504 7864 2019-02-24 04:39:08
## 3779 180 504 7864 2019-02-24 04:39:08
## 3780 180 504 7864 2019-02-24 04:39:08
## 3781 1223 195 9012 2020-06-09 22:07:47
## 3782 150 763 620 2019-05-04 04:00:59
## 3783 1070 5480 6879 2019-08-26 19:27:10
## 3784 295 307 15509 2014-03-22 03:52:05
## 3785 295 307 15509 2014-03-22 03:52:05
## 3786 1430 1676 180545 2009-07-01 00:18:11
## 3787 91 12 1352 2020-09-03 13:15:05
## 3788 426 120 44938 2009-04-05 16:21:24
## 3789 426 120 44938 2009-04-05 16:21:24
## 3790 349 165 5156 2009-10-04 20:45:21
## 3791 568 459 9584 2009-02-20 23:36:20
## 3792 568 459 9584 2009-02-20 23:36:20
## 3793 568 459 9584 2009-02-20 23:36:20
## 3794 536 52 3438 2011-05-26 20:57:38
## 3795 2104 386 1085 2021-02-17 04:19:37
## 3796 180 504 7864 2019-02-24 04:39:08
## 3797 180 504 7864 2019-02-24 04:39:08
## 3798 180 504 7864 2019-02-24 04:39:08
## 3799 183 172 2329 2009-07-21 04:43:45
## 3800 345 527 38639 2011-02-16 10:02:27
## 3801 345 527 38639 2011-02-16 10:02:27
## 3802 345 527 38639 2011-02-16 10:02:27
## 3803 707 45 1155 2011-05-01 18:57:21
## 3804 62 19 1561 2020-11-16 13:02:28
## 3805 56 19 720 2019-12-29 00:31:44
## 3806 17975 19562 554477 2009-01-28 09:58:52
## 3807 1046 1476 25480 2009-12-09 13:52:49
## 3808 1046 1476 25480 2009-12-09 13:52:49
## 3809 125 550 61942 2018-06-04 21:54:11
## 3810 2212 1994 27363 2011-06-29 13:10:17
## 3811 2212 1994 27363 2011-06-29 13:10:17
## 3812 2212 1994 27363 2011-06-29 13:10:17
186
## 3813 276 143 615 2019-08-13 16:05:35
## 3814 5673 5954 109199 2011-03-06 16:22:18
## 3815 5673 5954 109199 2011-03-06 16:22:18
## 3816 99 31 641 2015-01-11 14:09:38
## 3817 290 86 1236 2020-09-08 06:09:33
## 3818 290 86 1236 2020-09-08 06:09:33
## 3819 39 30 497 2012-11-01 18:57:28
## 3820 95 22 7308 2013-04-26 15:39:51
## 3821 95 22 7308 2013-04-26 15:39:51
## 3822 95 22 7308 2013-04-26 15:39:51
## 3823 335 477 1877 2014-04-07 11:00:10
## 3824 335 477 1877 2014-04-07 11:00:10
## 3825 353 65 485 2018-01-02 10:10:58
## 3826 12 12 854 2017-03-21 18:56:03
## 3827 685 72 8583 2019-05-18 22:48:37
## 3828 3264 2951 31827 2011-10-21 13:55:46
## 3829 3264 2951 31827 2011-10-21 13:55:46
## 3830 837 2617 118358 2014-09-04 04:07:18
## 3831 2760 3162 54970 2009-11-13 07:53:02
## 3832 25 15 400 2020-12-09 18:23:28
## 3833 316 82 35901 2020-01-29 19:39:00
## 3834 3092 3288 16736 2007-07-13 16:11:59
## 3835 3092 3288 16736 2007-07-13 16:11:59
## 3836 685 716 2415 2009-04-25 11:02:28
## 3837 596 155 27522 2013-10-02 04:05:35
## 3838 596 155 27522 2013-10-02 04:05:35
## 3839 280 32 853 2013-05-14 21:51:25
## 3840 176 40 2369 2017-09-10 21:12:34
## 3841 176 40 2369 2017-09-10 21:12:34
## 3842 176 40 2369 2017-09-10 21:12:34
## 3843 58 1 144 2021-03-04 13:09:29
## 3844 58 1 144 2021-03-04 13:09:29
## 3845 58 1 144 2021-03-04 13:09:29
## 3846 58 1 144 2021-03-04 13:09:29
## 3847 2573 1472 11899 2012-01-28 05:41:17
## 3848 1251 73975 351797 2008-10-30 00:42:47
## 3849 1369 455 8622 2020-01-08 23:35:53
## 3850 39 34 519 2009-12-07 21:13:23
## 3851 2861 1376 35166 2009-08-20 08:22:50
## 3852 2861 1376 35166 2009-08-20 08:22:50
## 3853 33 340 8018 2018-02-21 02:46:50
## 3854 33 340 8018 2018-02-21 02:46:50
## 3855 872 316 1209 2013-05-13 08:43:18
## 3856 2128 524 5749 2009-04-07 23:03:21
## 3857 1081 342385 112855 2008-11-21 23:25:06
## 3858 2319 1630 56170 2009-02-10 21:58:25
## 3859 188 173 2325 2019-10-06 18:42:41
## 3860 704 248 3017 2019-08-29 16:58:51
## 3861 704 248 3017 2019-08-29 16:58:51
## 3862 704 248 3017 2019-08-29 16:58:51
## 3863 64224 68273 347307 2009-03-10 04:08:31
## 3864 5 2 572 2021-02-23 02:37:42
## 3865 98 14 347 2017-05-04 03:31:47
## 3866 98 14 347 2017-05-04 03:31:47
187
## 3867 98 14 347 2017-05-04 03:31:47
## 3868 33 11 1066 2020-06-08 09:33:08
## 3869 33 11 1066 2020-06-08 09:33:08
## 3870 33 11 1066 2020-06-08 09:33:08
## 3871 0 7 538 2019-12-23 16:53:13
## 3872 1571 529 936 2012-07-18 20:45:03
## 3873 3223 2116 51344 2008-12-11 17:23:19
## 3874 130 13 2404 2020-12-24 03:26:56
## 3875 1131 283438 298569 2009-03-18 09:22:54
## 3876 40 11 427 2021-01-05 04:55:20
## 3877 2516 1614 193670 2013-02-04 07:17:20
## 3878 951 696 13131 2014-08-07 09:52:07
## 3879 17975 19562 554474 2009-01-28 09:58:52
## 3880 17975 19562 554474 2009-01-28 09:58:52
## 3881 17975 19562 554474 2009-01-28 09:58:52
## 3882 17975 19562 554474 2009-01-28 09:58:52
## 3883 17975 19562 554474 2009-01-28 09:58:52
## 3884 429 438 507 2020-12-15 15:16:49
## 3885 1391 800 33441 2009-10-11 22:33:59
## 3886 859 176 4388 2017-01-08 16:47:10
## 3887 859 176 4388 2017-01-08 16:47:10
## 3888 1555 180 10769 2013-04-26 18:48:40
## 3889 413 9722 50464 2018-04-08 17:21:42
## 3890 413 9722 50464 2018-04-08 17:21:42
## 3891 2932 1285 85691 2009-03-19 02:03:28
## 3892 2932 1285 85691 2009-03-19 02:03:28
## 3893 245 86 2989 2020-12-23 10:54:00
## 3894 245 86 2989 2020-12-23 10:54:00
## 3895 340 395 7153 2011-12-15 11:45:23
## 3896 2002 1959 297868 2014-09-01 04:24:39
## 3897 2002 1959 297868 2014-09-01 04:24:39
## 3898 2002 1959 297868 2014-09-01 04:24:39
## 3899 2002 1959 297868 2014-09-01 04:24:39
## 3900 2002 1959 297868 2014-09-01 04:24:39
## 3901 2002 1959 297868 2014-09-01 04:24:39
## 3902 2002 1959 297868 2014-09-01 04:24:39
## 3903 2002 1959 297868 2014-09-01 04:24:39
## 3904 105 325 23340 2009-10-19 00:51:53
## 3905 30 38 2850 2018-03-07 16:23:54
## 3906 2056 852 13116 2009-06-09 18:40:18
## 3907 1668 791 44940 2012-04-02 11:16:49
## 3908 4110 477 18117 2009-05-07 11:58:10
## 3909 4110 477 18117 2009-05-07 11:58:10
## 3910 108 51 3200 2020-01-12 19:04:05
## 3911 707 557 7535 2012-05-08 19:57:36
## 3912 707 557 7535 2012-05-08 19:57:36
## 3913 707 557 7535 2012-05-08 19:57:36
## 3914 707 557 7535 2012-05-08 19:57:36
## 3915 2744 603 23360 2010-05-07 20:45:24
## 3916 2744 603 23360 2010-05-07 20:45:24
## 3917 2744 603 23360 2010-05-07 20:45:24
## 3918 1208 1772 4546 2014-09-06 00:08:09
## 3919 1675 626 25371 2018-12-11 01:30:39
## 3920 1675 626 25371 2018-12-11 01:30:39
188
## 3921 3361 3279 9948 2020-07-13 14:22:56
## 3922 637 1993 11147 2019-09-13 17:24:52
## 3923 637 1993 11147 2019-09-13 17:24:52
## 3924 637 1993 11147 2019-09-13 17:24:52
## 3925 74 302 8340 2009-08-24 09:58:20
## 3926 1472 1323 5513 2021-02-01 14:30:16
## 3927 994 1493 14468 2015-08-27 02:29:56
## 3928 10627 10807 19238 2011-11-28 04:36:14
## 3929 10627 10807 19238 2011-11-28 04:36:14
## 3930 114 38 916 2020-10-25 21:51:34
## 3931 239 115 67 2020-10-16 22:17:21
## 3932 1652 223 3324 2018-01-09 02:11:37
## 3933 1652 223 3324 2018-01-09 02:11:37
## 3934 286 57 1155 2009-05-23 05:30:50
## 3935 286 57 1155 2009-05-23 05:30:50
## 3936 286 57 1155 2009-05-23 05:30:50
## 3937 539 245 2491 2008-04-16 23:24:22
## 3938 3725 3397 4532 2020-10-27 18:51:59
## 3939 3725 3397 4532 2020-10-27 18:51:59
## 3940 570 359 8217 2018-04-17 17:49:04
## 3941 570 359 8217 2018-04-17 17:49:04
## 3942 50 165 2732 2019-07-27 11:09:32
## 3943 44259 50042 227063 2013-07-17 10:49:59
## 3944 1264 3423 215477 2009-12-28 17:45:48
## 3945 1264 3423 215477 2009-12-28 17:45:48
## 3946 1264 3423 215477 2009-12-28 17:45:48
## 3947 21 4 95 2021-02-06 15:21:39
## 3948 35 27 850 2016-06-19 16:40:26
## 3949 1024 80 2627 2015-03-26 17:59:21
## 3950 173 43 982 2016-07-29 10:15:07
## 3951 151 13 281 2021-01-10 14:39:51
## 3952 1682 919 8229 2015-08-28 22:19:57
## 3953 2803 984 56298 2009-03-29 18:25:38
## 3954 2803 984 56298 2009-03-29 18:25:38
## 3955 284 44 116 2020-07-30 09:30:36
## 3956 2265 1017 16773 2011-11-20 14:29:26
## 3957 4 35 3878 2017-04-30 03:20:13
## 3958 8063 7414 40422 2009-04-04 03:24:26
## 3959 8063 7414 40422 2009-04-04 03:24:26
## 3960 568 459 9584 2009-02-20 23:36:20
## 3961 568 459 9584 2009-02-20 23:36:20
## 3962 1504 908 56737 2011-03-01 01:42:13
## 3963 309 7483 6502 2009-04-07 23:42:02
## 3964 309 7483 6502 2009-04-07 23:42:02
## 3965 345 527 38639 2011-02-16 10:02:27
## 3966 39 12 326 2017-02-07 22:14:08
## 3967 261 332 1195 2020-10-31 00:16:19
## 3968 584 119 1142 2009-04-06 18:07:39
## 3969 584 119 1142 2009-04-06 18:07:39
## 3970 7047 6407 176411 2009-11-28 20:13:37
## 3971 7047 6407 176411 2009-11-28 20:13:37
## 3972 7047 6407 176411 2009-11-28 20:13:37
## 3973 3166 3467 9869 2009-03-15 19:15:48
## 3974 71 28 362 2010-11-25 21:24:04
189
## 3975 71 28 362 2010-11-25 21:24:04
## 3976 1335 608 14158 2014-08-31 01:21:08
## 3977 983 1999 44480 2009-10-03 15:08:29
## 3978 70 19 957 2013-03-16 03:56:03
## 3979 691 328 5776 2016-08-22 12:27:33
## 3980 493 532 1568 2020-10-21 18:01:04
## 3981 493 532 1568 2020-10-21 18:01:04
## 3982 397 439 12925 2014-01-26 00:06:01
## 3983 397 439 12925 2014-01-26 00:06:01
## 3984 397 439 12925 2014-01-26 00:06:01
## 3985 950 2094 33319 2018-12-10 10:56:42
## 3986 142 35 3552 2019-11-19 04:41:30
## 3987 1400 1438 82741 2009-05-23 20:39:33
## 3988 459 1207 7808 2010-04-16 15:45:19
## 3989 2299 382 3101 2012-08-11 13:46:14
## 3990 3 7 893 2016-06-08 17:07:27
## 3991 3 7 893 2016-06-08 17:07:27
## 3992 3 7 893 2016-06-08 17:07:27
## 3993 3 7 893 2016-06-08 17:07:27
## 3994 2263 19352 30244 2009-03-25 18:31:07
## 3995 245 86 2989 2020-12-23 10:54:00
## 3996 0 7 538 2019-12-23 16:53:13
## 3997 0 7 538 2019-12-23 16:53:13
## 3998 0 7 538 2019-12-23 16:53:13
## 3999 38 387 107248 2013-07-06 19:54:34
## 4000 297 28595 84422 2009-09-15 22:09:46
## 4001 297 28595 84422 2009-09-15 22:09:46
## 4002 297 28595 84422 2009-09-15 22:09:46
## 4003 44 2363 7591 2019-07-02 12:35:10
## 4004 44 2363 7591 2019-07-02 12:35:10
## 4005 1255 540 15987 2010-08-27 02:05:25
## 4006 30 2 22 2020-05-27 17:38:19
## 4007 389 546 40273 2009-06-19 01:41:45
## 4008 389 546 40273 2009-06-19 01:41:45
## 4009 389 546 40273 2009-06-19 01:41:45
## 4010 240 25 1809 2019-11-19 06:22:22
## 4011 240 25 1809 2019-11-19 06:22:22
## 4012 2166 15848 40129 2011-09-12 14:13:41
## 4013 654 896 14811 2014-09-14 17:22:37
## 4014 654 896 14811 2014-09-14 17:22:37
## 4015 918 307 19000 2012-01-21 05:01:46
## 4016 918 307 19000 2012-01-21 05:01:46
## 4017 1 80 4279 2019-03-25 17:58:43
## 4018 1 80 4279 2019-03-25 17:58:43
## 4019 482 1277 7020 2010-07-12 21:02:31
## 4020 2 0 6 2020-11-02 12:55:35
## 4021 4727 11040 53302 2012-11-28 16:57:46
## 4022 188 24 381 2011-02-12 08:57:54
## 4023 1553 252 4111 2009-03-26 20:53:43
## 4024 1553 252 4111 2009-03-26 20:53:43
## 4025 954 3027 77492 2009-09-07 21:14:29
## 4026 32 32 2583 2009-04-18 23:24:57
## 4027 32 32 2583 2009-04-18 23:24:57
## 4028 383 233 44297 2015-08-15 10:45:02
190
## 4029 383 233 44297 2015-08-15 10:45:02
## 4030 1821 365 17597 2020-09-04 15:31:23
## 4031 93 14 7285 2019-07-15 23:04:34
## 4032 108 109 2899 2013-06-26 17:46:17
## 4033 108 109 2899 2013-06-26 17:46:17
## 4034 188 24 381 2011-02-12 08:57:54
## 4035 5872 12468 30955 2010-01-01 18:39:29
## 4036 814 903 89373 2012-12-26 15:51:45
## 4037 0 4 1545 2020-10-08 12:10:03
## 4038 0 4 1545 2020-10-08 12:10:03
## 4039 0 4 1545 2020-10-08 12:10:03
## 4040 0 4 1545 2020-10-08 12:10:03
## 4041 0 4 1545 2020-10-08 12:10:03
## 4042 1315 1150 3074 2014-05-26 12:31:00
## 4043 1315 1150 3074 2014-05-26 12:31:00
## 4044 18 7 4538 2011-04-02 18:36:54
## 4045 933 788 202077 2010-06-11 06:05:44
## 4046 14 3 2225 2011-01-21 22:25:11
## 4047 14 3 2225 2011-01-21 22:25:11
## 4048 81 116 7058 2013-02-11 18:22:53
## 4049 81 116 7058 2013-02-11 18:22:53
## 4050 147 73 656 2019-01-02 07:31:28
## 4051 39 25 958 2019-11-02 17:13:41
## 4052 39 25 958 2019-11-02 17:13:41
## 4053 39 25 958 2019-11-02 17:13:41
## 4054 39 25 958 2019-11-02 17:13:41
## 4055 39 25 958 2019-11-02 17:13:41
## 4056 2690 1687 7212 2013-12-30 01:54:32
## 4057 2690 1687 7212 2013-12-30 01:54:32
## 4058 2690 1687 7212 2013-12-30 01:54:32
## 4059 450 54 2871 2017-04-16 21:59:05
## 4060 450 54 2871 2017-04-16 21:59:05
## 4061 3265 13879 23882 2008-10-20 00:43:00
## 4062 4482 1182 7803 2015-03-15 01:37:34
## 4063 204 50 1201 2021-02-05 16:27:08
## 4064 204 50 1201 2021-02-05 16:27:08
## 4065 429 438 507 2020-12-15 15:16:49
## 4066 370 38 1145 2015-08-25 02:05:13
## 4067 1223 195 9012 2020-06-09 22:07:47
## 4068 1785 10209 3623 2015-01-11 01:29:52
## 4069 1064 484 12248 2018-05-06 12:15:16
## 4070 1064 484 12248 2018-05-06 12:15:16
## 4071 81 17 88 2014-09-11 11:47:00
## 4072 5238 4764 5630 2017-10-07 06:56:49
## 4073 84 25 369 2018-07-23 16:55:22
## 4074 747 85 3911 2018-12-01 06:02:57
## 4075 342 268 9619 2012-02-15 19:18:48
## 4076 138 27 934 2021-02-23 18:38:34
## 4077 1244 1202 12851 2011-06-11 13:51:53
## 4078 1244 1202 12851 2011-06-11 13:51:53
## 4079 1664 186 1657 2014-03-12 09:12:41
## 4080 1814 762 1073 2017-10-13 04:27:33
## 4081 196 138 2844 2014-06-17 10:38:30
## 4082 65 149 811 2017-01-16 03:37:44
191
## 4083 473 614 23540 2016-05-14 21:10:03
## 4084 4954 4167 298860 2016-07-26 20:51:52
## 4085 4954 4167 298860 2016-07-26 20:51:52
## 4086 4954 4167 298860 2016-07-26 20:51:52
## 4087 3601 3694 13642 2011-12-06 01:05:03
## 4088 3601 3694 13642 2011-12-06 01:05:03
## 4089 3601 3694 13642 2011-12-06 01:05:03
## 4090 1488 1297 2939 2019-11-21 17:47:46
## 4091 1488 1297 2939 2019-11-21 17:47:46
## 4092 714 602 2536 2021-01-17 03:05:03
## 4093 268 275 7604 2019-05-17 20:06:28
## 4094 596 155 27522 2013-10-02 04:05:35
## 4095 1170 1009 10647 2015-07-03 00:41:59
## 4096 1880 1506 27030 2012-06-08 03:29:59
## 4097 593 387 11667 2017-07-24 22:18:32
## 4098 593 387 11667 2017-07-24 22:18:32
## 4099 593 387 11667 2017-07-24 22:18:32
## 4100 66 1392 142132 2012-06-08 04:08:31
## 4101 3220 1203 40639 2009-05-01 05:34:54
## 4102 789 45959 13790 2009-03-31 04:08:16
## 4103 105 1042 59507 2011-03-12 01:17:10
## 4104 105 1042 59507 2011-03-12 01:17:10
## 4105 3447 3566 6379 2020-07-01 19:11:42
## 4106 3447 3566 6379 2020-07-01 19:11:42
## 4107 3447 3566 6379 2020-07-01 19:11:42
## 4108 515 564 11332 2009-05-22 04:00:04
## 4109 293 147 10041 2009-03-09 19:29:13
## 4110 6184 668678 65559 2009-07-28 14:36:39
## 4111 6184 668678 65559 2009-07-28 14:36:39
## 4112 594 330 15522 2017-08-26 19:12:31
## 4113 12 4 61 2010-01-07 00:44:54
## 4114 3980 1169 19217 2018-12-20 01:56:20
## 4115 1323 37866 5687 2012-11-26 00:15:08
## 4116 4998 3253 14748 2009-01-09 18:29:38
## 4117 168 16 94 2021-03-04 20:57:34
## 4118 32 1 135 2020-12-24 15:38:27
## 4119 79 16 307 2020-06-09 21:33:56
## 4120 5 9 55 2020-01-22 13:03:22
## 4121 453 601 62449 2009-07-26 16:42:32
## 4122 667 474 6960 2015-09-02 22:17:57
## 4123 667 474 6960 2015-09-02 22:17:57
## 4124 667 474 6960 2015-09-02 22:17:57
## 4125 955 234 597 2021-01-29 13:56:46
## 4126 3405 2855 154982 2009-06-17 09:09:48
## 4127 52 49 172 2011-07-15 20:14:27
## 4128 52 49 172 2011-07-15 20:14:27
## 4129 24 143 2585 2019-02-09 18:45:58
## 4130 24 143 2585 2019-02-09 18:45:58
## 4131 24 143 2585 2019-02-09 18:45:58
## 4132 3 7 893 2016-06-08 17:07:27
## 4133 3 7 893 2016-06-08 17:07:27
## 4134 293 142 898 2013-11-19 11:16:06
## 4135 3 1 171 2020-12-12 08:08:13
## 4136 3 1 171 2020-12-12 08:08:13
192
## 4137 630 601 103614 2013-10-04 15:32:23
## 4138 86 42 1990 2017-11-06 02:27:51
## 4139 2807 4511 42982 2017-09-29 03:56:07
## 4140 3026 346 17469 2009-06-10 08:35:32
## 4141 3026 346 17469 2009-06-10 08:35:32
## 4142 1229 483 10807 2011-04-17 02:53:50
## 4143 1229 483 10807 2011-04-17 02:53:50
## 4144 3249 66264 24567 2009-01-19 18:32:10
## 4145 228 74 3262 2021-01-12 02:03:30
## 4146 228 74 3262 2021-01-12 02:03:30
## 4147 228 74 3262 2021-01-12 02:03:30
## 4148 228 74 3262 2021-01-12 02:03:30
## 4149 228 74 3262 2021-01-12 02:03:30
## 4150 93 3 591 2021-01-28 15:41:21
## 4151 93 3 591 2021-01-28 15:41:21
## 4152 275 282 5031 2010-09-07 20:22:46
## 4153 698 371 975 2021-02-11 14:29:20
## 4154 2319 1630 56170 2009-02-10 21:58:25
## 4155 854 164 786 2012-06-06 16:00:24
## 4156 62 14 2613 2020-10-02 22:10:31
## 4157 4935 2728 148070 2011-12-22 09:20:54
## 4158 44 2 1318 2020-08-22 14:19:47
## 4159 44 2 1318 2020-08-22 14:19:47
## 4160 256 32 3396 2012-08-24 01:16:01
## 4161 256 32 3396 2012-08-24 01:16:01
## 4162 493 532 1568 2020-10-21 18:01:04
## 4163 316 127 1730 2011-11-19 23:53:50
## 4164 79 16 307 2020-06-09 21:33:56
## 4165 165 31 708 2014-12-11 19:32:36
## 4166 106 167 3820 2020-12-04 01:27:28
## 4167 3024 374 1716 2012-01-07 20:02:37
## 4168 3024 374 1716 2012-01-07 20:02:37
## 4169 204 49 1201 2021-02-05 16:27:08
## 4170 204 49 1201 2021-02-05 16:27:08
## 4171 204 49 1201 2021-02-05 16:27:08
## 4172 1393 52 7603 2020-11-26 15:17:50
## 4173 1393 52 7603 2020-11-26 15:17:50
## 4174 1393 52 7603 2020-11-26 15:17:50
## 4175 173 43 982 2016-07-29 10:15:07
## 4176 173 43 982 2016-07-29 10:15:07
## 4177 214 20 1366 2010-01-06 14:50:38
## 4178 214 20 1366 2010-01-06 14:50:38
## 4179 5152 4899 42669 2014-08-17 08:38:34
## 4180 5152 4899 42669 2014-08-17 08:38:34
## 4181 1829 1634 36225 2009-10-25 11:34:07
## 4182 13120 21953 152336 2014-01-23 03:12:12
## 4183 1255 2330 144477 2009-02-24 00:06:36
## 4184 1255 2330 144477 2009-02-24 00:06:36
## 4185 1255 2330 144477 2009-02-24 00:06:36
## 4186 1255 2330 144477 2009-02-24 00:06:36
## 4187 1255 2330 144477 2009-02-24 00:06:36
## 4188 36 2 32 2020-11-08 20:34:23
## 4189 204 50 1201 2021-02-05 16:27:08
## 4190 204 50 1201 2021-02-05 16:27:08
193
## 4191 204 50 1201 2021-02-05 16:27:08
## 4192 1634 1260 6828 2009-04-17 20:31:17
## 4193 376 410 17747 2009-03-14 00:39:18
## 4194 81 116 7058 2013-02-11 18:22:53
## 4195 3053 8949 37921 2012-03-20 19:18:11
## 4196 3053 8949 37921 2012-03-20 19:18:11
## 4197 91 418 16889 2014-02-15 17:16:28
## 4198 530 462 48687 2011-08-31 17:11:21
## 4199 4 6 205 2021-02-06 12:38:19
## 4200 4 6 205 2021-02-06 12:38:19
## 4201 4 6 205 2021-02-06 12:38:19
## 4202 1059 186 21574 2020-02-18 20:11:52
## 4203 1971 2020 121561 2009-01-28 21:34:30
## 4204 1971 2020 121561 2009-01-28 21:34:30
## 4205 328 61 15057 2017-05-31 01:35:06
## 4206 183 25 13851 2020-10-20 02:01:02
## 4207 95 14 7323 2019-07-15 23:04:34
## 4208 95 14 7323 2019-07-15 23:04:34
## 4209 95 14 7323 2019-07-15 23:04:34
## 4210 8953 9016 45359 2009-04-17 13:02:03
## 4211 1220 9743 27160 2017-01-18 19:47:06
## 4212 634 812 6087 2010-05-23 04:18:18
## 4213 277 120 9984 2020-02-23 17:51:56
## 4214 318 135 1665 2013-03-18 10:30:53
## 4215 318 135 1665 2013-03-18 10:30:53
## 4216 318 135 1665 2013-03-18 10:30:53
## 4217 1053 6974 91050 2017-03-26 07:47:40
## 4218 108 10 1454 2019-07-30 01:33:59
## 4219 568 459 9584 2009-02-20 23:36:20
## 4220 97 14 346 2017-05-04 03:31:47
## 4221 97 14 346 2017-05-04 03:31:47
## 4222 1006 22397 7579 2009-06-25 04:33:35
## 4223 1006 22397 7579 2009-06-25 04:33:35
## 4224 4977 4120 232290 2009-04-29 07:43:02
## 4225 4977 4120 232290 2009-04-29 07:43:02
## 4226 4977 4120 232290 2009-04-29 07:43:02
## 4227 4977 4120 232290 2009-04-29 07:43:02
## 4228 87 77 443 2020-10-26 20:44:19
## 4229 1507 753 20542 2009-03-04 20:25:44
## 4230 1507 753 20542 2009-03-04 20:25:44
## 4231 362 22 1981 2010-03-10 17:45:02
## 4232 17 2 20 2021-02-22 17:34:38
## 4233 1730 87 1659 2011-07-17 02:35:22
## 4234 23806 109560 239981 2009-03-09 19:41:26
## 4235 4099 4253 99420 2014-11-30 10:04:11
## 4236 4099 4253 99420 2014-11-30 10:04:11
## 4237 1551 25639 133454 2009-02-14 04:42:18
## 4238 833 733 3447 2009-03-24 23:07:00
## 4239 5459 4844 296123 2009-07-21 14:29:32
## 4240 137 33 1308 2009-06-14 08:48:04
## 4241 139 7 83 2014-12-03 21:56:42
## 4242 183 25 13851 2020-10-20 02:01:02
## 4243 297 28595 84422 2009-09-15 22:09:46
## 4244 297 28595 84422 2009-09-15 22:09:46
194
## 4245 297 28595 84422 2009-09-15 22:09:46
## 4246 297 28595 84422 2009-09-15 22:09:46
## 4247 297 28595 84422 2009-09-15 22:09:46
## 4248 1012 326 9184 2011-12-06 00:16:22
## 4249 983 1999 44480 2009-10-03 15:08:29
## 4250 54 41 2930 2013-08-10 14:33:11
## 4251 54 41 2930 2013-08-10 14:33:11
## 4252 54 41 2930 2013-08-10 14:33:11
## 4253 186 133 5141 2017-01-28 02:48:31
## 4254 19 5 290 2021-02-13 00:56:45
## 4255 342 42 1393 2019-08-29 19:16:57
## 4256 957 580 5953 2014-11-17 20:18:09
## 4257 957 580 5953 2014-11-17 20:18:09
## 4258 957 580 5953 2014-11-17 20:18:09
## 4259 5001 773 15834 2014-10-28 17:31:22
## 4260 8226 10127 40023 2009-08-07 02:48:27
## 4261 8226 10127 40023 2009-08-07 02:48:27
## 4262 366 86 13249 2016-08-08 02:58:09
## 4263 538 395 7320 2008-08-28 19:43:25
## 4264 297 28595 84422 2009-09-15 22:09:46
## 4265 297 28595 84422 2009-09-15 22:09:46
## 4266 568 459 9584 2009-02-20 23:36:20
## 4267 568 459 9584 2009-02-20 23:36:20
## 4268 652 655 10031 2021-01-06 12:49:11
## 4269 358 171 3557 2021-01-06 16:19:11
## 4270 452 260 11776 2020-10-02 15:20:56
## 4271 213 8 1795 2011-10-08 01:24:29
## 4272 73 143 986 2009-04-09 14:56:23
## 4273 605 6370 81434 2018-12-16 21:24:32
## 4274 605 6370 81434 2018-12-16 21:24:32
## 4275 605 6370 81434 2018-12-16 21:24:32
## 4276 1096 1002 28739 2010-08-28 03:01:58
## 4277 18581 18267 556096 2011-06-18 12:47:49
## 4278 18581 18267 556096 2011-06-18 12:47:49
## 4279 1220 9743 27160 2017-01-18 19:47:06
## 4280 121 4 1871 2020-01-07 08:08:40
## 4281 163 83 203 2021-01-18 04:26:15
## 4282 147 18 1030 2020-05-30 13:20:15
## 4283 147 18 1030 2020-05-30 13:20:15
## 4284 147 18 1030 2020-05-30 13:20:15
## 4285 246 1875 2805 2020-05-31 19:10:32
## 4286 82 81 3334 2016-10-20 16:52:05
## 4287 82 81 3334 2016-10-20 16:52:05
## 4288 96 19 173 2020-05-24 11:46:28
## 4289 1670 489 17824 2012-08-10 23:58:15
## 4290 81 116 7058 2013-02-11 18:22:53
## 4291 69 13 128 2021-02-14 04:59:38
## 4292 69 13 128 2021-02-14 04:59:38
## 4293 69 13 128 2021-02-14 04:59:38
## 4294 69 13 128 2021-02-14 04:59:38
## 4295 69 13 128 2021-02-14 04:59:38
## 4296 2 0 281 2020-11-10 13:59:12
## 4297 220 124 327 2017-04-22 17:12:17
## 4298 730 318 17742 2012-03-07 01:57:48
195
## 4299 3361 3279 9948 2020-07-13 14:22:56
## 4300 3361 3279 9948 2020-07-13 14:22:56
## 4301 260 30 2201 2020-10-13 18:51:29
## 4302 551 166 5791 2011-10-01 18:43:41
## 4303 551 166 5791 2011-10-01 18:43:41
## 4304 12414 383942 336297 2009-03-23 15:22:25
## 4305 400 164 2109 2009-03-14 20:11:09
## 4306 400 164 2109 2009-03-14 20:11:09
## 4307 400 164 2109 2009-03-14 20:11:09
## 4308 165 162 2261 2020-12-03 23:03:59
## 4309 269 28 437 2012-01-15 10:50:23
## 4310 1276 603 16550 2020-10-11 06:53:28
## 4311 1276 603 16550 2020-10-11 06:53:28
## 4312 4866 258 2587 2019-06-16 18:54:18
## 4313 555 182 21553 2019-06-30 02:23:18
## 4314 555 182 21553 2019-06-30 02:23:18
## 4315 691 328 5776 2016-08-22 12:27:33
## 4316 691 328 5776 2016-08-22 12:27:33
## 4317 646 558 4254 2019-11-09 19:58:10
## 4318 646 558 4254 2019-11-09 19:58:10
## 4319 3785 1571 18336 2019-10-19 02:51:41
## 4320 1605 324 3838 2011-01-22 23:21:52
## 4321 1744 363 12172 2011-04-22 21:35:17
## 4322 1744 363 12172 2011-04-22 21:35:17
## 4323 1744 363 12172 2011-04-22 21:35:17
## 4324 4990 2507 923 2020-10-31 18:30:00
## 4325 4990 2507 923 2020-10-31 18:30:00
## 4326 28 5 44 2013-09-29 13:26:42
## 4327 649 646 5068 2021-01-01 03:42:21
## 4328 1598 2047 42318 2010-06-20 13:58:00
## 4329 58 3 173 2020-12-19 03:07:00
## 4330 58 3 173 2020-12-19 03:07:00
## 4331 58 3 173 2020-12-19 03:07:00
## 4332 58 3 173 2020-12-19 03:07:00
## 4333 58 3 173 2020-12-19 03:07:00
## 4334 9584 12822 466632 2011-11-23 23:50:48
## 4335 9584 12822 466632 2011-11-23 23:50:48
## 4336 9584 12822 466632 2011-11-23 23:50:48
## 4337 673 264 3625 2011-02-18 14:17:56
## 4338 890 729 8931 2016-04-27 18:39:38
## 4339 222 66 23512 2013-12-20 02:34:49
## 4340 1053 6974 91050 2017-03-26 07:47:40
## 4341 121 55 2076 2020-12-20 20:34:56
## 4342 2406 2473 67956 2013-05-13 19:18:53
## 4343 2406 2473 67956 2013-05-13 19:18:53
## 4344 2406 2473 67956 2013-05-13 19:18:53
## 4345 941 138 18929 2015-05-22 10:13:18
## 4346 941 138 18929 2015-05-22 10:13:18
## 4347 204 50 1201 2021-02-05 16:27:08
## 4348 2350 1654 4349 2018-11-01 23:19:14
## 4349 413 9722 50464 2018-04-08 17:21:42
## 4350 1733 1245 82739 2010-01-04 17:02:25
## 4351 1733 1245 82739 2010-01-04 17:02:25
## 4352 5 1 154 2018-10-12 13:02:59
196
## 4353 2515 1614 193669 2013-02-04 07:17:20
## 4354 606 203 85299 2017-11-13 19:21:03
## 4355 95 62 11411 2020-09-28 13:12:55
## 4356 95 62 11411 2020-09-28 13:12:55
## 4357 1146 1050 30874 2012-09-21 06:55:16
## 4358 141 18 192 2011-01-07 16:27:22
## 4359 3018 984 27678 2015-02-04 14:09:36
## 4360 3018 984 27678 2015-02-04 14:09:36
## 4361 443 534 11569 2009-11-01 10:38:50
## 4362 39 17 885 2013-06-13 05:32:29
## 4363 1998 1856 25458 2009-02-01 17:49:52
## 4364 498 29 6384 2014-10-30 01:16:29
## 4365 498 29 6384 2014-10-30 01:16:29
## 4366 498 29 6384 2014-10-30 01:16:29
## 4367 498 29 6384 2014-10-30 01:16:29
## 4368 498 29 6384 2014-10-30 01:16:29
## 4369 498 29 6384 2014-10-30 01:16:29
## 4370 1357 355515 108148 2008-11-25 17:44:27
## 4371 1527 1127 25762 2009-05-13 14:16:02
## 4372 1527 1127 25762 2009-05-13 14:16:02
## 4373 2246 901 33545 2009-07-09 14:21:32
## 4374 4998 1318 16050 2010-02-13 18:35:49
## 4375 417 197 19762 2013-04-28 03:19:48
## 4376 95 14 7291 2019-07-15 23:04:34
## 4377 315 172 24841 2011-10-14 22:14:12
## 4378 1144 846 63472 2010-09-11 17:20:52
## 4379 1440 570 25377 2012-06-02 07:05:37
## 4380 3124 481619 186700 2009-03-08 14:47:33
## 4381 2704 378 49374 2018-06-04 21:40:02
## 4382 2704 378 49374 2018-06-04 21:40:02
## 4383 2704 378 49374 2018-06-04 21:40:02
## 4384 2704 378 49374 2018-06-04 21:40:02
## 4385 1695 412 11043 2014-09-03 00:58:41
## 4386 1834 1663 97123 2009-03-23 05:55:58
## 4387 1834 1663 97123 2009-03-23 05:55:58
## 4388 1834 1663 97123 2009-03-23 05:55:58
## 4389 1834 1663 97123 2009-03-23 05:55:58
## 4390 4997 649 148948 2015-11-04 17:01:19
## 4391 4997 649 148948 2015-11-04 17:01:19
## 4392 4997 649 148948 2015-11-04 17:01:19
## 4393 77 2 424 2019-08-28 19:46:38
## 4394 1251 73975 351797 2008-10-30 00:42:47
## 4395 0 3 491 2021-02-16 14:57:30
## 4396 0 3 491 2021-02-16 14:57:30
## 4397 0 3 491 2021-02-16 14:57:30
## 4398 0 3 491 2021-02-16 14:57:30
## 4399 0 3 491 2021-02-16 14:57:30
## 4400 172 2086 85741 2011-11-08 00:40:34
## 4401 420 77 1028 2021-01-13 23:40:22
## 4402 609 9765 18535 2009-09-17 13:42:35
## 4403 1239 1158 30615 2009-06-04 16:39:59
## 4404 1239 1158 30615 2009-06-04 16:39:59
## 4405 133 2 464 2020-09-14 02:18:44
## 4406 2189 542 25395 2009-03-25 04:28:03
197
## 4407 138 45 3447 2011-11-17 18:02:02
## 4408 1086 6862 1771 2009-03-01 19:29:54
## 4409 1086 6862 1771 2009-03-01 19:29:54
## 4410 1086 6862 1771 2009-03-01 19:29:54
## 4411 1087 1531 33149 2011-09-21 16:05:39
## 4412 1537 2775 12206 2008-10-07 23:50:20
## 4413 28 11 2734 2020-06-02 09:41:22
## 4414 28 11 2734 2020-06-02 09:41:22
## 4415 511 105 5738 2017-09-24 22:43:14
## 4416 108 16 194 2009-04-30 16:39:51
## 4417 2497 744 7222 2011-08-06 12:44:39
## 4418 44 101 36183 2019-12-15 11:35:00
## 4419 4999 2104 536808 2009-03-13 05:31:24
## 4420 4999 2104 536808 2009-03-13 05:31:24
## 4421 575 17131 5292 2011-01-28 19:01:53
## 4422 3017 2279 3803 2013-09-03 19:15:43
## 4423 1276 2042 26123 2014-03-31 13:26:05
## 4424 602 421 3162 2020-01-14 20:09:01
## 4425 602 421 3162 2020-01-14 20:09:01
## 4426 268 275 7604 2019-05-17 20:06:28
## 4427 2299 382 3101 2012-08-11 13:46:14
## 4428 2299 382 3101 2012-08-11 13:46:14
## 4429 2299 382 3101 2012-08-11 13:46:14
## 4430 1763 1026 22717 2017-09-25 07:03:48
## 4431 88 3 50 2012-08-03 14:05:26
## 4432 68 0 118 2021-03-04 15:38:59
## 4433 361 219 4924 2013-01-31 19:41:36
## 4434 2925 138 6760 2019-02-10 12:07:57
## 4435 2925 138 6760 2019-02-10 12:07:57
## 4436 2925 138 6760 2019-02-10 12:07:57
## 4437 2861 1376 35166 2009-08-20 08:22:50
## 4438 4997 649 148948 2015-11-04 17:01:19
## 4439 4997 649 148948 2015-11-04 17:01:19
## 4440 89 18 42 2016-09-07 16:15:22
## 4441 89 18 42 2016-09-07 16:15:22
## 4442 89 18 42 2016-09-07 16:15:22
## 4443 2642 1458 37558 2010-06-09 13:29:49
## 4444 2642 1458 37558 2010-06-09 13:29:49
## 4445 1059 186 21574 2020-02-18 20:11:52
## 4446 262 93 2187 2009-09-29 01:13:37
## 4447 285 86 711 2021-02-23 16:36:11
## 4448 125 550 61942 2018-06-04 21:54:11
## 4449 0 0 16 2019-07-05 06:19:33
## 4450 0 0 16 2019-07-05 06:19:33
## 4451 0 0 16 2019-07-05 06:19:33
## 4452 387 133 10769 2010-12-28 17:58:59
## 4453 355 855 42238 2009-02-16 00:17:04
## 4454 50 30 18572 2017-08-12 23:36:18
## 4455 27 5 347 2021-02-11 15:48:09
## 4456 5134 5684 1069 2009-08-07 07:53:48
## 4457 1810 1040 11005 2010-03-15 16:50:16
## 4458 1810 1040 11005 2010-03-15 16:50:16
## 4459 362 22 1981 2010-03-10 17:45:02
## 4460 174 236 13141 2009-02-18 03:03:53
198
## 4461 174 236 13141 2009-02-18 03:03:53
## 4462 715 174 3171 2012-08-12 16:22:44
## 4463 69 13 128 2021-02-14 04:59:38
## 4464 345 14 1963 2021-02-18 21:27:14
## 4465 4805 3189 514973 2015-05-18 19:26:30
## 4466 29 79 3813 2016-05-28 13:10:59
## 4467 2136 1740 14735 2013-05-30 14:48:07
## 4468 1645 426 3742 2010-10-12 14:39:52
## 4469 1645 426 3742 2010-10-12 14:39:52
## 4470 874 487 2356 2009-12-23 04:08:26
## 4471 56 41 236 2020-05-14 19:14:30
## 4472 56 41 236 2020-05-14 19:14:30
## 4473 809 748 1991 2009-03-30 00:33:45
## 4474 5872 12468 30954 2010-01-01 18:39:29
## 4475 5872 12468 30954 2010-01-01 18:39:29
## 4476 5872 12468 30954 2010-01-01 18:39:29
## 4477 5872 12468 30954 2010-01-01 18:39:29
## 4478 449 59 987 2009-03-29 13:57:33
## 4479 506 33 4954 2019-09-18 22:25:05
## 4480 506 33 4954 2019-09-18 22:25:05
## 4481 506 33 4954 2019-09-18 22:25:05
## 4482 956 996 89136 2009-03-30 21:28:51
## 4483 0 7 539 2019-12-23 16:53:13
## 4484 1190 735 36161 2009-03-11 22:59:32
## 4485 1685 1794 172004 2012-05-08 16:22:55
## 4486 413 9730 50464 2018-04-08 17:21:42
## 4487 0 4 1545 2020-10-08 12:10:03
## 4488 0 4 1545 2020-10-08 12:10:03
## 4489 0 4 1545 2020-10-08 12:10:03
## 4490 0 4 1545 2020-10-08 12:10:03
## 4491 0 4 1545 2020-10-08 12:10:03
## 4492 0 4 1545 2020-10-08 12:10:03
## 4493 0 4 1545 2020-10-08 12:10:03
## 4494 0 4 1545 2020-10-08 12:10:03
## 4495 93 63 1151 2015-07-23 02:04:01
## 4496 2006 2247 29513 2014-11-29 16:39:14
## 4497 888 1241 108041 2017-12-29 22:09:26
## 4498 888 1241 108041 2017-12-29 22:09:26
## 4499 888 1241 108041 2017-12-29 22:09:26
## 4500 888 1241 108041 2017-12-29 22:09:26
## 4501 27 14 628 2020-11-19 23:20:48
## 4502 426 120 44938 2009-04-05 16:21:24
## 4503 426 120 44938 2009-04-05 16:21:24
## 4504 3 7 893 2016-06-08 17:07:27
## 4505 3 7 893 2016-06-08 17:07:27
## 4506 2902 2163 27785 2012-05-15 13:16:17
## 4507 2902 2163 27785 2012-05-15 13:16:17
## 4508 1640 836 45405 2013-12-26 22:27:23
## 4509 17975 19562 554477 2009-01-28 09:58:52
## 4510 17975 19562 554477 2009-01-28 09:58:52
## 4511 105 44 539 2020-05-21 18:26:37
## 4512 60 663 695197 2014-01-20 20:37:28
## 4513 35099 45541 26439 2008-07-16 06:51:02
## 4514 0 0 98 2020-12-19 21:49:30
199
## 4515 0 0 98 2020-12-19 21:49:30
## 4516 0 0 98 2020-12-19 21:49:30
## 4517 0 0 98 2020-12-19 21:49:30
## 4518 1131 216 5932 2015-05-21 08:02:57
## 4519 1131 216 5932 2015-05-21 08:02:57
## 4520 1131 216 5932 2015-05-21 08:02:57
## 4521 68 1060 14067 2009-05-14 19:26:28
## 4522 1811 1345 38133 2016-09-01 17:41:55
## 4523 1811 1345 38133 2016-09-01 17:41:55
## 4524 490 114 4083 2020-01-18 02:03:40
## 4525 81 116 7058 2013-02-11 18:22:53
## 4526 28 16 262 2021-03-03 22:24:54
## 4527 28 16 262 2021-03-03 22:24:54
## 4528 429 438 507 2020-12-15 15:16:49
## 4529 269 3 24 2019-10-29 01:58:04
## 4530 168 186 7621 2010-04-03 11:38:40
## 4531 1223 195 9012 2020-06-09 22:07:47
## 4532 5715 5209 137558 2014-09-01 15:06:52
## 4533 28 16 262 2021-03-03 22:24:54
## 4534 575 434 51764 2009-04-07 08:54:16
## 4535 473 614 23542 2016-05-14 21:10:03
## 4536 473 614 23542 2016-05-14 21:10:03
## 4537 103 61 2845 2018-12-15 23:02:02
## 4538 60 12 405 2013-06-26 05:42:44
## 4539 85 8 359 2020-02-15 21:18:23
## 4540 4996 2790 106513 2008-12-01 21:23:23
## 4541 4996 2790 106513 2008-12-01 21:23:23
## 4542 339 163 9528 2009-07-24 05:25:51
## 4543 730 318 17742 2012-03-07 01:57:48
## 4544 1667 3377 299121 2010-03-13 15:07:51
## 4545 1223 196 8974 2020-06-09 22:07:47
## 4546 1223 196 8974 2020-06-09 22:07:47
## 4547 1053 981 17687 2013-03-25 20:09:34
## 4548 5002 3449 730164 2016-06-11 14:33:10
## 4549 5001 3906 632662 2010-10-05 22:50:20
## 4550 5001 3906 632662 2010-10-05 22:50:20
## 4551 1070 5480 6879 2019-08-26 19:27:10
## 4552 1897 1741 71247 2011-03-24 00:54:17
## 4553 3 5 333 2021-02-26 22:20:43
## 4554 3 5 333 2021-02-26 22:20:43
## 4555 121 55 2076 2020-12-20 20:34:56
## 4556 948 271 5172 2020-10-17 00:58:27
## 4557 948 271 5172 2020-10-17 00:58:27
## 4558 948 271 5172 2020-10-17 00:58:27
## 4559 38 387 107248 2013-07-06 19:54:34
## 4560 118 17 826 2019-02-06 02:50:39
## 4561 186 56 4842 2016-03-01 19:45:08
## 4562 303 35 832 2009-07-29 04:40:26
## 4563 303 35 832 2009-07-29 04:40:26
## 4564 52458 47210 5867 2007-10-16 19:47:39
## 4565 1659 484 6171 2014-10-03 08:17:50
## 4566 1659 484 6171 2014-10-03 08:17:50
## 4567 205 68 1460 2020-09-11 17:55:21
## 4568 1347 648 9900 2017-06-05 18:28:36
200
## 4569 798 278 135052 2011-02-07 20:14:50
## 4570 888 537 12404 2007-11-01 22:30:13
## 4571 833 733 3447 2009-03-24 23:07:00
## 4572 383 138 5290 2020-11-05 09:29:39
## 4573 204 49 1201 2021-02-05 16:27:08
## 4574 204 49 1201 2021-02-05 16:27:08
## 4575 0 7 540 2019-12-23 16:53:13
## 4576 141 16 1087 2013-01-24 15:26:14
## 4577 1436 875 7357 2019-09-18 20:41:41
## 4578 1436 875 7357 2019-09-18 20:41:41
## 4579 1436 875 7357 2019-09-18 20:41:41
## 4580 1436 875 7357 2019-09-18 20:41:41
## 4581 1586 1889 9320 2011-09-21 20:19:25
## 4582 1586 1889 9320 2011-09-21 20:19:25
## 4583 1586 1889 9320 2011-09-21 20:19:25
## 4584 315 168 3414 2020-11-07 07:22:42
## 4585 315 168 3414 2020-11-07 07:22:42
## 4586 2138 665 15069 2019-03-05 16:58:57
## 4587 2138 665 15069 2019-03-05 16:58:57
## 4588 202 6 735 2020-11-02 02:36:15
## 4589 245 86 2989 2020-12-23 10:54:00
## 4590 1198 501 3481 2011-12-08 03:34:30
## 4591 169 489 28384 2020-02-14 07:07:18
## 4592 837 2616 118358 2014-09-04 04:07:18
## 4593 1234 1187 500 2016-05-03 15:50:43
## 4594 704 804 4860 2009-08-06 07:55:30
## 4595 306 274 16804 2020-11-01 07:43:20
## 4596 306 274 16804 2020-11-01 07:43:20
## 4597 306 274 16804 2020-11-01 07:43:20
## 4598 95 14 7291 2019-07-15 23:04:34
## 4599 69 13 128 2021-02-14 04:59:38
## 4600 69 13 128 2021-02-14 04:59:38
## 4601 15 2 886 2020-06-15 18:15:20
## 4602 568 459 9584 2009-02-20 23:36:20
## 4603 568 459 9584 2009-02-20 23:36:20
## 4604 226 700 1346 2009-03-20 02:57:00
## 4605 313 6 161 2020-04-24 00:43:25
## 4606 7898 9643 70529 2009-05-01 00:29:10
## 4607 3 5 333 2021-02-26 22:20:43
## 4608 5766 134139 9589 2009-02-26 16:28:23
## 4609 5766 134139 9589 2009-02-26 16:28:23
## 4610 13874 13943 38950 2008-11-12 23:21:19
## 4611 13874 13943 38950 2008-11-12 23:21:19
## 4612 15 15 2699 2019-05-25 15:38:04
## 4613 15 15 2699 2019-05-25 15:38:04
## 4614 0 7 539 2019-12-23 16:53:13
## 4615 373 33 714 2014-11-18 20:28:18
## 4616 373 33 714 2014-11-18 20:28:18
## 4617 373 33 714 2014-11-18 20:28:18
## 4618 1059 1218 32641 2015-10-24 16:02:16
## 4619 400 523 17026 2013-10-18 12:58:59
## 4620 400 523 17026 2013-10-18 12:58:59
## 4621 429 438 507 2020-12-15 15:16:49
## 4622 297 28595 84422 2009-09-15 22:09:46
201
## 4623 297 28595 84422 2009-09-15 22:09:46
## 4624 297 28595 84422 2009-09-15 22:09:46
## 4625 245 86 2989 2020-12-23 10:54:00
## 4626 60 12 405 2013-06-26 05:42:44
## 4627 60 12 405 2013-06-26 05:42:44
## 4628 60 12 405 2013-06-26 05:42:44
## 4629 343 457 855 2019-12-04 13:46:19
## 4630 343 457 855 2019-12-04 13:46:19
## 4631 2938 631 4034 2015-01-06 01:02:29
## 4632 745 1417 27440 2013-10-09 12:40:24
## 4633 745 1417 27440 2013-10-09 12:40:24
## 4634 745 1417 27440 2013-10-09 12:40:24
## 4635 568 459 9584 2009-02-20 23:36:20
## 4636 568 459 9584 2009-02-20 23:36:20
## 4637 193 67 515 2011-07-29 22:13:24
## 4638 2854 1426 6517 2013-10-24 11:27:56
## 4639 2854 1426 6517 2013-10-24 11:27:56
## 4640 271 51 158 2015-08-25 17:49:58
## 4641 374 124 3021 2011-09-17 16:58:42
## 4642 374 124 3021 2011-09-17 16:58:42
## 4643 15255 13430 11977 2009-04-29 18:04:20
## 4644 288 296 7714 2009-08-14 15:21:43
## 4645 140 30 206 2018-05-08 10:28:38
## 4646 146 8 598 2020-03-05 17:21:17
## 4647 101 14 1144 2020-11-29 17:40:20
## 4648 101 14 1144 2020-11-29 17:40:20
## 4649 2828 2892 36280 2009-06-03 14:17:15
## 4650 202 675 7460 2009-03-15 09:29:37
## 4651 202 675 7460 2009-03-15 09:29:37
## 4652 174 126 250 2015-06-13 11:37:35
## 4653 174 126 250 2015-06-13 11:37:35
## 4654 358 171 3557 2021-01-06 16:19:11
## 4655 1 0 59 2021-03-10 07:21:05
## 4656 4991 674 20292 2019-12-09 18:08:46
## 4657 1083 178 2211 2015-01-26 12:54:35
## 4658 306 274 16804 2020-11-01 07:43:20
## 4659 306 274 16804 2020-11-01 07:43:20
## 4660 17975 19562 554474 2009-01-28 09:58:52
## 4661 17975 19562 554474 2009-01-28 09:58:52
## 4662 17975 19562 554474 2009-01-28 09:58:52
## 4663 17975 19562 554474 2009-01-28 09:58:52
## 4664 214 400 37387 2012-12-09 02:31:15
## 4665 1519 432 46111 2015-06-29 04:46:14
## 4666 6 1 349 2021-03-05 09:59:38
## 4667 641 149 6780 2019-04-24 22:05:48
## 4668 45 3 192 2014-01-12 18:41:03
## 4669 210 298 167 2016-03-28 22:22:10
## 4670 210 298 167 2016-03-28 22:22:10
## 4671 23643 98080 148164 2012-06-18 10:42:30
## 4672 372 172 266 2018-03-05 22:23:01
## 4673 558 475 3184 2009-04-20 01:09:34
## 4674 558 475 3184 2009-04-20 01:09:34
## 4675 3025 4796 150621 2010-12-17 15:21:45
## 4676 3025 4796 150621 2010-12-17 15:21:45
202
## 4677 3025 4796 150621 2010-12-17 15:21:45
## 4678 2485 3364 6841 2010-07-09 14:28:06
## 4679 1904 1092 10065 2011-06-23 15:12:04
## 4680 525 167 1848 2017-02-25 10:56:12
## 4681 0 0 14 2020-05-08 15:41:19
## 4682 81 116 7058 2013-02-11 18:22:53
## 4683 4794 3958 40139 2009-06-17 14:25:15
## 4684 124 12 1381 2019-08-15 16:10:13
## 4685 98 47 4773 2008-11-11 04:23:07
## 4686 8 43 2081 2019-11-28 18:16:04
## 4687 8 43 2081 2019-11-28 18:16:04
## 4688 1958 1401 8259 2017-05-30 07:46:13
## 4689 1958 1401 8259 2017-05-30 07:46:13
## 4690 1958 1401 8259 2017-05-30 07:46:13
## 4691 2432 605 57122 2009-02-04 09:49:57
## 4692 229 110 3064 2010-07-24 22:38:02
## 4693 229 110 3064 2010-07-24 22:38:02
## 4694 229 110 3064 2010-07-24 22:38:02
## 4695 229 110 3064 2010-07-24 22:38:02
## 4696 297 28595 84422 2009-09-15 22:09:46
## 4697 578 166 11012 2014-03-03 04:12:00
## 4698 81 116 7058 2013-02-11 18:22:53
## 4699 81 116 7058 2013-02-11 18:22:53
## 4700 17975 19562 554477 2009-01-28 09:58:52
## 4701 1070 5480 6879 2019-08-26 19:27:10
## 4702 1070 5480 6879 2019-08-26 19:27:10
## 4703 448 215 7222 2009-04-24 11:36:02
## 4704 3554 207633 735496 2009-02-09 15:45:17
## 4705 3554 207633 735496 2009-02-09 15:45:17
## 4706 487 40 2369 2010-02-19 23:04:17
## 4707 568 459 9583 2009-02-20 23:36:20
## 4708 568 459 9583 2009-02-20 23:36:20
## 4709 568 459 9583 2009-02-20 23:36:20
## 4710 568 459 9583 2009-02-20 23:36:20
## 4711 568 459 9583 2009-02-20 23:36:20
## 4712 568 459 9583 2009-02-20 23:36:20
## 4713 201 118 26711 2018-05-26 12:38:12
## 4714 201 118 26711 2018-05-26 12:38:12
## 4715 201 118 26711 2018-05-26 12:38:12
## 4716 2102 4447 63178 2012-10-05 16:17:07
## 4717 2102 4447 63178 2012-10-05 16:17:07
## 4718 575 17132 5292 2011-01-28 19:01:53
## 4719 575 17132 5292 2011-01-28 19:01:53
## 4720 272 267 20054 2019-11-26 22:48:21
## 4721 361 37 882 2019-07-25 19:43:23
## 4722 361 37 882 2019-07-25 19:43:23
## 4723 555 636 39649 2009-03-16 13:46:20
## 4724 555 636 39649 2009-03-16 13:46:20
## 4725 249 12 1444 2020-05-20 18:30:01
## 4726 268 275 7604 2019-05-17 20:06:28
## 4727 268 275 7604 2019-05-17 20:06:28
## 4728 268 275 7604 2019-05-17 20:06:28
## 4729 1502 1406 22609 2009-02-03 08:24:30
## 4730 147 785 625 2019-11-18 03:28:55
203
## 4731 256 95 109934 2009-01-24 11:27:30
## 4732 256 95 109934 2009-01-24 11:27:30
## 4733 79 16 307 2020-06-09 21:33:56
## 4734 1 121 1541 2018-12-17 18:10:53
## 4735 4998 3253 14748 2009-01-09 18:29:38
## 4736 2805 2128 74999 2013-01-17 07:45:48
## 4737 1471 473 5789 2009-03-18 22:47:32
## 4738 216 73 1664 2020-11-20 05:00:58
## 4739 3643 1455 46552 2009-04-16 17:44:37
## 4740 410 4507 4383 2009-03-29 22:07:22
## 4741 153 11 132 2021-03-01 20:59:02
## 4742 153 11 132 2021-03-01 20:59:02
## 4743 3077 1018 11743 2009-04-25 23:58:59
## 4744 54 41 2931 2013-08-10 14:33:11
## 4745 54 41 2931 2013-08-10 14:33:11
## 4746 22 0 23 2020-11-09 13:55:14
## 4747 22 0 23 2020-11-09 13:55:14
## 4748 116 22 3064 2017-07-27 01:42:43
## 4749 3643 1455 46552 2009-04-16 17:44:37
## 4750 522 606 43653 2010-05-30 01:54:18
## 4751 4779 10130 54989 2009-04-17 14:11:24
## 4752 144 3 147 2019-03-25 14:21:02
## 4753 144 3 147 2019-03-25 14:21:02
## 4754 144 3 147 2019-03-25 14:21:02
## 4755 7 53 55 2015-04-13 20:53:18
## 4756 1251 73975 351797 2008-10-30 00:42:47
## 4757 2139 665 15079 2019-03-05 16:58:57
## 4758 276 20 4442 2021-01-06 16:45:53
## 4759 276 20 4442 2021-01-06 16:45:53
## 4760 276 20 4442 2021-01-06 16:45:53
## 4761 276 20 4442 2021-01-06 16:45:53
## 4762 0 1 76 2020-07-13 16:13:38
## 4763 0 1 76 2020-07-13 16:13:38
## 4764 10298 38051 61443 2008-12-04 19:58:59
## 4765 5715 5209 137558 2014-09-01 15:06:52
## 4766 103 154 6437 2019-09-21 03:29:01
## 4767 103 154 6437 2019-09-21 03:29:01
## 4768 3122 578 5816 2009-03-05 14:05:10
## 4769 164 75 5338 2013-02-17 04:21:44
## 4770 164 75 5338 2013-02-17 04:21:44
## 4771 788 135 3166 2020-04-30 16:46:55
## 4772 788 135 3166 2020-04-30 16:46:55
## 4773 926 262 341 2009-06-12 13:14:33
## 4774 926 262 341 2009-06-12 13:14:33
## 4775 957 193 546 2019-07-30 05:29:52
## 4776 86 70 596 2019-03-15 19:44:45
## 4777 6 57 3902 2017-12-01 15:07:28
## 4778 955 316 26438 2017-11-08 02:37:55
## 4779 441 137 3266 2012-10-12 17:21:32
## 4780 441 137 3266 2012-10-12 17:21:32
## 4781 441 137 3266 2012-10-12 17:21:32
## 4782 441 137 3266 2012-10-12 17:21:32
## 4783 441 137 3266 2012-10-12 17:21:32
## 4784 441 137 3266 2012-10-12 17:21:32
204
## 4785 441 137 3266 2012-10-12 17:21:32
## 4786 441 137 3266 2012-10-12 17:21:32
## 4787 441 137 3266 2012-10-12 17:21:32
## 4788 441 137 3266 2012-10-12 17:21:32
## 4789 441 137 3266 2012-10-12 17:21:32
## 4790 1128 732 15034 2010-11-09 18:21:10
## 4791 4090 3296 176644 2008-09-22 19:27:10
## 4792 460 372 10546 2017-03-23 17:31:43
## 4793 460 372 10546 2017-03-23 17:31:43
## 4794 460 372 10546 2017-03-23 17:31:43
## 4795 505 25 1658 2020-09-23 16:20:38
## 4796 505 25 1658 2020-09-23 16:20:38
## 4797 301 1440 38499 2008-10-31 19:00:23
## 4798 18 5 284 2021-03-07 05:58:05
## 4799 18 5 284 2021-03-07 05:58:05
## 4800 18 5 284 2021-03-07 05:58:05
## 4801 18 5 284 2021-03-07 05:58:05
## 4802 6081 5566 38029 2009-03-15 08:27:46
## 4803 993 298 8881 2018-03-13 16:35:40
## 4804 1656 1172 18765 2014-04-13 13:04:01
## 4805 32 2 295 2021-03-01 17:31:18
## 4806 32 2 295 2021-03-01 17:31:18
## 4807 1223 195 9012 2020-06-09 22:07:47
## 4808 1726 1955 11421 2020-06-07 02:27:41
## 4809 77 13 169 2018-05-04 21:02:00
## 4810 77 13 169 2018-05-04 21:02:00
## 4811 1148 522 7965 2017-12-17 23:47:14
## 4812 394 1091 27315 2009-02-18 10:42:53
## 4813 158 200 6902 2014-08-24 16:00:06
## 4814 158 200 6902 2014-08-24 16:00:06
## 4815 36 1 666 2020-05-14 14:22:59
## 4816 36 1 666 2020-05-14 14:22:59
## 4817 36 1 666 2020-05-14 14:22:59
## 4818 125 127 4826 2020-06-22 20:11:14
## 4819 1101 285 42927 2012-09-02 13:31:09
## 4820 264 206 12118 2009-02-16 21:16:08
## 4821 113 52 5219 2016-06-29 17:02:50
## 4822 113 52 5219 2016-06-29 17:02:50
## 4823 113 52 5219 2016-06-29 17:02:50
## 4824 245 86 2989 2020-12-23 10:54:00
## 4825 245 86 2989 2020-12-23 10:54:00
## 4826 33 0 26 2021-03-06 04:43:32
## 4827 33 0 26 2021-03-06 04:43:32
## 4828 3500 3039 8303 2007-07-31 23:19:25
## 4829 275 106 3609 2021-02-14 22:30:58
## 4830 421 186 6229 2013-02-05 21:48:39
## 4831 17 4 22 2015-11-28 14:21:05
## 4832 956 1148 5083 2020-09-18 23:04:10
## 4833 538 807 52347 2011-07-30 20:00:34
## 4834 209 5 969 2020-07-29 23:58:53
## 4835 209 5 969 2020-07-29 23:58:53
## 4836 0 7 1804 2020-08-20 09:39:04
## 4837 2932 1285 85691 2009-03-19 02:03:28
## 4838 2932 1285 85691 2009-03-19 02:03:28
205
## 4839 3325 2595 7100 2020-08-27 13:48:53
## 4840 321 524 105507 2009-04-10 22:55:37
## 4841 422 135 2855 2020-03-12 09:35:47
## 4842 252 41 1908 2016-11-18 22:06:41
## 4843 252 41 1908 2016-11-18 22:06:41
## 4844 568 459 9584 2009-02-20 23:36:20
## 4845 568 459 9584 2009-02-20 23:36:20
## 4846 504 2820 34724 2009-04-14 17:17:49
## 4847 79 8 727 2021-01-15 16:33:52
## 4848 708 86 1713 2013-11-07 01:40:39
## 4849 62 19 1561 2020-11-16 13:02:28
## 4850 114 107 36860 2011-11-04 23:01:16
## 4851 135 63 3214 2019-05-01 20:05:02
## 4852 135 63 3214 2019-05-01 20:05:02
## 4853 135 63 3214 2019-05-01 20:05:02
## 4854 253 204 6269 2010-01-06 14:57:31
## 4855 44 2363 7591 2019-07-02 12:35:10
## 4856 4142 4252 9156 2012-09-21 15:32:42
## 4857 234 37 200 2012-12-18 09:40:35
## 4858 234 37 200 2012-12-18 09:40:35
## 4859 137 33 1308 2009-06-14 08:48:04
## 4860 58 3 60 2020-12-21 01:22:10
## 4861 268 77 3456 2018-11-30 21:49:26
## 4862 268 77 3456 2018-11-30 21:49:26
## 4863 11152 15712 17974 2012-10-30 08:48:20
## 4864 11152 15712 17974 2012-10-30 08:48:20
## 4865 11152 15712 17974 2012-10-30 08:48:20
## 4866 6 1 16 2021-03-08 12:54:22
## 4867 1215 713 831 2021-01-26 23:08:11
## 4868 22 0 33 2021-02-19 05:26:57
## 4869 379 12 1690 2020-11-17 14:17:36
## 4870 379 12 1690 2020-11-17 14:17:36
## 4871 797 994 8234 2016-10-10 04:04:14
## 4872 596 155 27522 2013-10-02 04:05:35
## 4873 4 6 205 2021-02-06 12:38:19
## 4874 457 36 298 2016-05-12 10:51:52
## 4875 2622 356 39603 2009-07-07 13:22:51
## 4876 411 546 19804 2018-07-30 16:07:44
## 4877 1 1 694 2020-06-11 10:32:40
## 4878 97 49 9961 2015-08-15 23:42:59
## 4879 624 480 3404 2011-11-24 15:01:23
## 4880 52 145 1624 2013-07-19 14:34:58
## 4881 265 1345 88407 2014-12-13 11:56:56
## 4882 265 1345 88407 2014-12-13 11:56:56
## 4883 265 1345 88407 2014-12-13 11:56:56
## 4884 156 68 9892 2012-09-14 19:02:15
## 4885 4099 4253 99420 2014-11-30 10:04:11
## 4886 352 82 10464 2009-02-05 23:12:35
## 4887 352 82 10464 2009-02-05 23:12:35
## 4888 352 82 10464 2009-02-05 23:12:35
## 4889 352 82 10464 2009-02-05 23:12:35
## 4890 352 82 10464 2009-02-05 23:12:35
## 4891 297 28595 84422 2009-09-15 22:09:46
## 4892 297 28595 84422 2009-09-15 22:09:46
206
## 4893 297 28595 84422 2009-09-15 22:09:46
## 4894 900 1895 47842 2009-05-21 15:36:49
## 4895 70 34 1715 2018-11-13 21:15:14
## 4896 987 1527 37829 2009-03-31 04:38:21
## 4897 1266 448 5651 2009-03-21 21:01:43
## 4898 3 5 333 2021-02-26 22:20:43
## 4899 3 5 333 2021-02-26 22:20:43
## 4900 1572 513 38877 2019-05-24 21:27:23
## 4901 1572 513 38877 2019-05-24 21:27:23
## 4902 317 28 5052 2009-05-09 10:47:17
## 4903 1063 483 12242 2018-05-06 12:15:16
## 4904 1063 483 12242 2018-05-06 12:15:16
## 4905 41 4 415 2019-03-16 15:33:25
## 4906 526 46 1823 2019-01-21 04:02:41
## 4907 526 46 1823 2019-01-21 04:02:41
## 4908 500 512 41226 2009-05-20 18:25:21
## 4909 204 49 1201 2021-02-05 16:27:08
## 4910 1834 1663 97123 2009-03-23 05:55:58
## 4911 81 116 7058 2013-02-11 18:22:53
## 4912 3447 3571 6379 2020-07-01 19:11:42
## 4913 3447 3571 6379 2020-07-01 19:11:42
## 4914 290 266 6833 2009-10-27 14:23:43
## 4915 290 266 6833 2009-10-27 14:23:43
## 4916 4797 3834 26747 2009-04-18 11:21:44
## 4917 4797 3834 26747 2009-04-18 11:21:44
## 4918 1858 1129 1562 2019-04-01 22:06:53
## 4919 5 24 45 2021-03-07 19:37:04
## 4920 61 102 9718 2018-07-11 21:35:31
## 4921 185 32 1258 2016-10-08 20:28:21
## 4922 745 1417 27441 2013-10-09 12:40:24
## 4923 745 1417 27441 2013-10-09 12:40:24
## 4924 9 11 546 2020-04-09 16:51:26
## 4925 96 21 299 2020-02-15 05:27:04
## 4926 96 21 299 2020-02-15 05:27:04
## 4927 215 70 4769 2011-11-22 20:16:54
## 4928 24 47 1113 2019-12-07 14:35:27
## 4929 18 6 102 2012-08-08 23:52:18
## 4930 908 342 22339 2018-08-24 12:38:25
## 4931 221 215 14835 2010-01-04 20:24:12
## 4932 1818 3482 15593 2013-02-14 01:10:30
## 4933 163 336 16935 2019-08-23 14:12:25
## 4934 36 9 200 2020-04-20 23:21:17
## 4935 36 9 200 2020-04-20 23:21:17
## 4936 36 9 200 2020-04-20 23:21:17
## 4937 36 9 200 2020-04-20 23:21:17
## 4938 2784 5172 88374 2016-12-23 13:55:00
## 4939 2784 5172 88374 2016-12-23 13:55:00
## 4940 2784 5172 88374 2016-12-23 13:55:00
## 4941 173 99 2669 2020-07-03 12:31:14
## 4942 1191 132 1631 2010-10-01 21:08:13
## 4943 634 812 6087 2010-05-23 04:18:18
## 4944 14 14 1932 2021-01-07 13:09:09
## 4945 37 26 716 2020-04-25 15:43:02
## 4946 256 51 28 2020-06-03 23:15:49
207
## 4947 473 614 23543 2016-05-14 21:10:03
## 4948 457 36 298 2016-05-12 10:51:52
## 4949 0 0 12 2020-07-16 06:20:56
## 4950 4654 4154 79265 2009-04-16 12:27:48
## 4951 4654 4154 79265 2009-04-16 12:27:48
## 4952 306 274 16804 2020-11-01 07:43:20
## 4953 231 2002 13331 2009-02-28 19:28:12
## 4954 2299 2288 24111 2012-05-26 20:33:46
## 4955 2299 2288 24111 2012-05-26 20:33:46
## 4956 184 599 1199 2019-05-20 18:27:17
## 4957 1133 1306 972 2020-08-10 13:24:09
## 4958 4478 1499 3632 2013-05-19 14:13:48
## 4959 4478 1499 3632 2013-05-19 14:13:48
## 4960 297 28595 84422 2009-09-15 22:09:46
## 4961 297 28595 84422 2009-09-15 22:09:46
## 4962 297 28595 84422 2009-09-15 22:09:46
## 4963 297 28595 84422 2009-09-15 22:09:46
## 4964 380 561 75639 2011-04-08 19:32:05
## 4965 566 252 13938 2019-05-03 22:10:23
## 4966 383 233 44300 2015-08-15 10:45:02
## 4967 1120 94 34761 2012-06-02 01:50:05
## 4968 1120 94 34761 2012-06-02 01:50:05
## 4969 1120 94 34761 2012-06-02 01:50:05
## 4970 7 1 183 2020-07-02 00:38:46
## 4971 1541 765 13732 2009-04-05 20:03:08
## 4972 468 576 61211 2012-02-03 11:18:38
## 4973 24 22 303 2020-01-16 07:07:36
## 4974 2812 2151 8327 2021-01-05 10:36:34
## 4975 2812 2151 8327 2021-01-05 10:36:34
## 4976 413 1942 19335 2019-09-16 09:37:41
## 4977 413 1942 19335 2019-09-16 09:37:41
## 4978 413 1942 19335 2019-09-16 09:37:41
## 4979 5011 10634 92797 2008-03-11 03:47:38
## 4980 402 363 2177 2020-07-31 20:10:24
## 4981 402 363 2177 2020-07-31 20:10:24
## 4982 386 4887 13076 2010-03-04 02:19:01
## 4983 23612 22985 131546 2016-03-13 15:02:44
## 4984 307 7 334 2020-06-21 21:30:13
## 4985 307 7 334 2020-06-21 21:30:13
## 4986 242 4156 8620 2017-06-27 04:40:07
## 4987 242 4156 8620 2017-06-27 04:40:07
## 4988 586 420 20588 2010-12-15 13:44:58
## 4989 531 854 57286 2009-12-08 04:41:13
## 4990 531 854 57286 2009-12-08 04:41:13
## 4991 228 130 592 2020-07-21 13:30:35
## 4992 228 130 592 2020-07-21 13:30:35
## 4993 228 130 592 2020-07-21 13:30:35
## 4994 228 130 592 2020-07-21 13:30:35
## 4995 228 130 592 2020-07-21 13:30:35
## 4996 602 421 3162 2020-01-14 20:09:01
## 4997 602 421 3162 2020-01-14 20:09:01
## 4998 602 421 3162 2020-01-14 20:09:01
## 4999 602 421 3162 2020-01-14 20:09:01
## 5000 602 421 3162 2020-01-14 20:09:01
208
## 5001 12414 383940 336297 2009-03-23 15:22:25
## 5002 584 46 4076 2017-05-27 13:49:48
## 5003 584 46 4076 2017-05-27 13:49:48
## 5004 514 469 18575 2019-04-28 12:17:35
## 5005 1971 2021 121562 2009-01-28 21:34:30
## 5006 1971 2021 121562 2009-01-28 21:34:30
## 5007 1971 2021 121562 2009-01-28 21:34:30
## 5008 562 544 35823 2017-01-15 14:28:21
## 5009 886 258 11559 2011-10-26 03:18:37
## 5010 886 258 11559 2011-10-26 03:18:37
## 5011 886 258 11559 2011-10-26 03:18:37
## 5012 4682 3145 42766 2015-12-12 22:24:40
## 5013 5418 6068 769788 2017-03-21 10:00:25
## 5014 228 61 207 2015-01-10 16:06:40
## 5015 228 61 207 2015-01-10 16:06:40
## 5016 81 116 7058 2013-02-11 18:22:53
## 5017 388 388 3963 2010-03-15 11:09:51
## 5018 4988 443 22505 2016-04-19 18:44:04
## 5019 215 198 8944 2009-02-18 21:25:56
## 5020 522 662 12915 2009-05-14 18:16:19
## 5021 257 384 6485 2020-08-29 02:10:45
## 5022 242 60 2654 2013-08-27 20:55:59
## 5023 242 60 2654 2013-08-27 20:55:59
## 5024 242 60 2654 2013-08-27 20:55:59
## 5025 242 60 2654 2013-08-27 20:55:59
## 5026 242 60 2654 2013-08-27 20:55:59
## 5027 242 60 2654 2013-08-27 20:55:59
## 5028 242 60 2654 2013-08-27 20:55:59
## 5029 85 8 359 2020-02-15 21:18:23
## 5030 85 8 359 2020-02-15 21:18:23
## 5031 130 29 2153 2009-04-03 23:37:20
## 5032 634 812 6087 2010-05-23 04:18:18
## 5033 2296 748 37906 2012-01-25 16:14:23
## 5034 1054 46 2422 2016-12-09 11:51:35
## 5035 1054 46 2422 2016-12-09 11:51:35
## 5036 40 28 2403 2015-10-05 15:49:50
## 5037 20481 20809 309162 2009-04-07 04:45:36
## 5038 1847 820 18953 2009-09-14 17:44:38
## 5039 42 23 6543 2014-08-16 16:22:08
## 5040 195 94 756 2020-07-21 17:06:31
## 5041 195 94 756 2020-07-21 17:06:31
## 5042 5001 1450 23424 2009-08-07 06:42:26
## 5043 5001 1450 23424 2009-08-07 06:42:26
## 5044 4990 2023 182852 2008-11-29 11:08:22
## 5045 4990 2023 182852 2008-11-29 11:08:22
## 5046 1061 1073 5464 2008-11-07 08:00:04
## 5047 1061 1073 5464 2008-11-07 08:00:04
## 5048 164 53 879 2019-04-11 19:35:36
## 5049 245 86 2989 2020-12-23 10:54:00
## 5050 26 110 9089 2019-06-08 02:48:37
## 5051 2516 1803 22564 2009-04-18 18:21:21
## 5052 2516 1803 22564 2009-04-18 18:21:21
## 5053 2487 901 26857 2012-03-20 17:45:46
## 5054 4 6 205 2021-02-06 12:38:19
209
## 5055 510 265 860 2012-06-08 15:05:19
## 5056 510 265 860 2012-06-08 15:05:19
## 5057 1998 2069 290260 2010-05-02 19:06:26
## 5058 450 76 3519 2017-04-07 12:18:08
## 5059 496 571 18773 2010-06-05 00:06:23
## 5060 41 46 2723 2021-01-23 22:59:31
## 5061 176 626 14039 2009-02-04 12:53:21
## 5062 1952 1650 9548 2010-02-05 15:46:17
## 5063 276 217 6917 2015-06-22 19:48:56
## 5064 276 217 6917 2015-06-22 19:48:56
## 5065 276 217 6917 2015-06-22 19:48:56
## 5066 634 812 6087 2010-05-23 04:18:18
## 5067 593 217 6154 2010-01-07 19:00:52
## 5068 593 217 6154 2010-01-07 19:00:52
## 5069 421 556 38520 2009-10-31 22:41:36
## 5070 107 42 838 2020-11-18 00:43:06
## 5071 107 42 838 2020-11-18 00:43:06
## 5072 1058 893 8102 2009-10-12 20:58:35
## 5073 1058 893 8102 2009-10-12 20:58:35
## 5074 54 41 2930 2013-08-10 14:33:11
## 5075 5004 1213 139667 2009-03-16 19:14:06
## 5076 5004 1213 139667 2009-03-16 19:14:06
## 5077 5004 1213 139667 2009-03-16 19:14:06
## 5078 1542 1023 70808 2009-08-08 18:10:37
## 5079 692 601 1979 2015-08-16 08:02:09
## 5080 692 601 1979 2015-08-16 08:02:09
## 5081 381 335 2959 2018-04-29 12:36:12
## 5082 833 733 3447 2009-03-24 23:07:00
## 5083 1339 162 3473 2013-11-16 11:29:42
## 5084 1 105 114 2013-07-25 12:42:30
## 5085 381 24 28 2021-01-16 18:39:32
## 5086 381 24 28 2021-01-16 18:39:32
## 5087 381 24 28 2021-01-16 18:39:32
## 5088 3018 984 27678 2015-02-04 14:09:36
## 5089 116 91 6613 2019-09-25 16:14:24
## 5090 116 91 6613 2019-09-25 16:14:24
## 5091 73 83 4158 2012-11-09 18:11:51
## 5092 17975 19563 554488 2009-01-28 09:58:52
## 5093 17975 19563 554488 2009-01-28 09:58:52
## 5094 7 0 37 2018-11-21 23:06:50
## 5095 206 27 441 2010-05-11 15:39:46
## 5096 1298 223 5422 2009-03-22 15:37:02
## 5097 1298 223 5422 2009-03-22 15:37:02
## 5098 1298 223 5422 2009-03-22 15:37:02
## 5099 506 131 4404 2019-09-13 13:29:48
## 5100 506 131 4404 2019-09-13 13:29:48
## 5101 72 84 190 2010-10-28 14:02:09
## 5102 72 84 190 2010-10-28 14:02:09
## 5103 176 40 2369 2017-09-10 21:12:34
## 5104 1121 1291 10635 2019-07-27 17:09:55
## 5105 389 546 40273 2009-06-19 01:41:45
## 5106 35 8 1301 2019-07-24 21:18:48
## 5107 2509 630 25922 2014-08-01 08:35:27
## 5108 755 44642 33711 2011-09-14 14:48:43
210
## 5109 755 44642 33711 2011-09-14 14:48:43
## 5110 755 44642 33711 2011-09-14 14:48:43
## 5111 245 86 2989 2020-12-23 10:54:00
## 5112 245 86 2989 2020-12-23 10:54:00
## 5113 245 86 2989 2020-12-23 10:54:00
## 5114 3692 2493 14061 2019-09-13 14:27:34
## 5115 3692 2493 14061 2019-09-13 14:27:34
## 5116 955 316 26437 2017-11-08 02:37:55
## 5117 955 316 26437 2017-11-08 02:37:55
## 5118 618 87 952 2020-12-08 00:37:11
## 5119 554 117 791 2013-01-04 21:59:11
## 5120 3583 304 20800 2011-08-25 19:27:41
## 5121 3583 304 20800 2011-08-25 19:27:41
## 5122 3583 304 20800 2011-08-25 19:27:41
## 5123 3583 304 20800 2011-08-25 19:27:41
## 5124 2381 2514 71472 2013-07-17 22:23:18
## 5125 1294 584 6281 2019-10-15 11:09:22
## 5126 426 368 3587 2009-02-03 16:42:39
## 5127 2631 287 8698 2017-04-01 12:23:43
## 5128 35 23 26 2013-12-12 11:55:20
## 5129 199 41 11221 2020-08-20 03:17:36
## 5130 933 788 202051 2010-06-11 06:05:44
## 5131 933 788 202051 2010-06-11 06:05:44
## 5132 173 43 982 2016-07-29 10:15:07
## 5133 173 43 982 2016-07-29 10:15:07
## 5134 173 43 982 2016-07-29 10:15:07
## 5135 306 253 20268 2018-01-29 17:16:56
## 5136 14 4 85 2021-01-10 14:31:31
## 5137 1675 274033 39901 2009-07-30 21:52:12
## 5138 669 171 3543 2010-01-27 23:34:15
## 5139 938 568 9384 2017-03-16 12:13:46
## 5140 542 325 12303 2014-02-21 16:54:15
## 5141 751 556 35723 2011-05-14 20:28:29
## 5142 751 556 35723 2011-05-14 20:28:29
## 5143 751 556 35723 2011-05-14 20:28:29
## 5144 245 86 2989 2020-12-23 10:54:00
## 5145 3 0 22 2021-03-06 23:37:41
## 5146 3 0 22 2021-03-06 23:37:41
## 5147 24173 26975 61230 2016-08-13 21:24:08
## 5148 24173 26975 61230 2016-08-13 21:24:08
## 5149 24173 26975 61230 2016-08-13 21:24:08
## 5150 98 580 881 2010-09-10 00:14:19
## 5151 374 124 3021 2011-09-17 16:58:42
## 5152 3325 2595 7100 2020-08-27 13:48:53
## 5153 62 53 2385 2012-02-16 20:25:26
## 5154 62 53 2385 2012-02-16 20:25:26
## 5155 523 104 757 2014-12-21 18:32:05
## 5156 21196 23441 13747 2009-01-22 07:46:55
## 5157 2498 2498 13181 2016-07-30 16:01:41
## 5158 2498 2498 13181 2016-07-30 16:01:41
## 5159 808 110 805 2011-12-11 02:03:25
## 5160 110 14 66 2015-04-20 05:55:37
## 5161 1759 1866 15609 2011-08-06 16:36:19
## 5162 590 617 5651 2009-07-14 20:56:53
211
## 5163 590 617 5651 2009-07-14 20:56:53
## 5164 1121 1452 68703 2011-05-24 23:28:25
## 5165 5001 3905 632658 2010-10-05 22:50:20
## 5166 4155 1503 4803 2011-07-29 19:12:50
## 5167 750 259 1339 2009-12-16 06:09:35
## 5168 27147 27694 84497 2018-03-24 19:54:56
## 5169 274 31 2598 2019-11-02 02:58:36
## 5170 274 31 2598 2019-11-02 02:58:36
## 5171 384 573 21181 2009-09-15 22:48:37
## 5172 85 46 1883 2020-10-06 22:41:09
## 5173 6868 58346 21021 2013-03-23 16:20:26
## 5174 2317 1596 18452 2011-01-04 01:32:10
## 5175 2317 1596 18452 2011-01-04 01:32:10
## 5176 2317 1596 18452 2011-01-04 01:32:10
## 5177 2317 1596 18452 2011-01-04 01:32:10
## 5178 2317 1596 18452 2011-01-04 01:32:10
## 5179 2317 1596 18452 2011-01-04 01:32:10
## 5180 2317 1596 18452 2011-01-04 01:32:10
## 5181 2317 1596 18452 2011-01-04 01:32:10
## 5182 2317 1596 18452 2011-01-04 01:32:10
## 5183 2317 1596 18452 2011-01-04 01:32:10
## 5184 816 1857 53684 2011-03-16 11:14:39
## 5185 307 7 334 2020-06-21 21:30:13
## 5186 307 7 334 2020-06-21 21:30:13
## 5187 4977 689 133254 2015-12-15 02:43:12
## 5188 4436 1661 36705 2009-02-05 16:51:33
## 5189 280 135 3080 2018-09-08 02:28:42
## 5190 2690 139237 280010 2009-06-15 16:48:10
## 5191 205 68 1463 2020-09-11 17:55:21
## 5192 774 645 73457 2016-12-26 15:19:49
## 5193 774 645 73457 2016-12-26 15:19:49
## 5194 300 8 587 2021-03-08 11:41:40
## 5195 300 8 587 2021-03-08 11:41:40
## 5196 300 8 587 2021-03-08 11:41:40
## 5197 37 6 267 2020-05-13 21:38:36
## 5198 1636 1528 9911 2011-02-17 16:13:50
## 5199 1636 1528 9911 2011-02-17 16:13:50
## 5200 1636 1528 9911 2011-02-17 16:13:50
## 5201 374 124 3021 2011-09-17 16:58:42
## 5202 48 42 5298 2016-02-28 23:53:27
## 5203 169 91 396 2021-01-22 18:00:13
## 5204 556 112 1035 2009-01-24 00:53:45
## 5205 464 2465 70560 2014-04-12 11:51:33
## 5206 464 2465 70560 2014-04-12 11:51:33
## 5207 955 234 597 2021-01-29 13:56:46
## 5208 1111 9982 40917 2009-03-23 15:51:35
## 5209 277 120 9984 2020-02-23 17:51:56
## 5210 2240 1278 115734 2017-01-21 16:35:42
## 5211 297 28595 84422 2009-09-15 22:09:46
## 5212 2079 213145 255111 2008-05-19 14:48:59
## 5213 956 1123 21230 2014-01-24 16:17:05
## 5214 956 1123 21230 2014-01-24 16:17:05
## 5215 956 1123 21230 2014-01-24 16:17:05
## 5216 426 120 44938 2009-04-05 16:21:24
212
## 5217 426 120 44938 2009-04-05 16:21:24
## 5218 52 39 7502 2013-01-31 15:50:12
## 5219 102 18 1666 2019-03-21 02:12:27
## 5220 318 135 1665 2013-03-18 10:30:53
## 5221 297 75 156 2021-01-31 11:53:46
## 5222 1586 824 9510 2020-10-09 12:58:07
## 5223 1586 824 9510 2020-10-09 12:58:07
## 5224 1348 564 5612 2018-01-05 05:07:38
## 5225 535 516 8501 2009-03-25 16:18:09
## 5226 1470 372 1530 2009-07-10 17:02:12
## 5227 1470 372 1530 2009-07-10 17:02:12
## 5228 1470 372 1530 2009-07-10 17:02:12
## 5229 958 301 10458 2011-05-03 23:51:51
## 5230 958 301 10458 2011-05-03 23:51:51
## 5231 204 65 1065 2016-06-02 15:45:13
## 5232 204 65 1065 2016-06-02 15:45:13
## 5233 204 65 1065 2016-06-02 15:45:13
## 5234 3201 2727 11087 2009-04-19 04:46:59
## 5235 858 750 39627 2010-09-26 05:27:42
## 5236 5001 3905 632653 2010-10-05 22:50:20
## 5237 918 307 19000 2012-01-21 05:01:46
## 5238 918 307 19000 2012-01-21 05:01:46
## 5239 918 307 19000 2012-01-21 05:01:46
## 5240 809 748 1991 2009-03-30 00:33:45
## 5241 2018 384 4963 2010-08-18 10:13:04
## 5242 2018 384 4963 2010-08-18 10:13:04
## 5243 2219 821 32795 2016-12-03 11:08:27
## 5244 2219 821 32795 2016-12-03 11:08:27
## 5245 2219 821 32795 2016-12-03 11:08:27
## 5246 2219 821 32795 2016-12-03 11:08:27
## 5247 360 69 713 2012-02-27 00:46:12
## 5248 1093 12000 9413 2012-04-23 21:25:39
## 5249 268 275 7604 2019-05-17 20:06:28
## 5250 268 275 7604 2019-05-17 20:06:28
## 5251 268 275 7604 2019-05-17 20:06:28
## 5252 121 55 2076 2020-12-20 20:34:56
## 5253 121 55 2076 2020-12-20 20:34:56
## 5254 568 459 9593 2009-02-20 23:36:20
## 5255 568 459 9593 2009-02-20 23:36:20
## 5256 568 459 9593 2009-02-20 23:36:20
## 5257 949 139 2364 2018-02-16 23:04:29
## 5258 3406 4797 281184 2008-02-18 01:52:57
## 5259 3 0 23 2020-11-03 06:53:22
## 5260 67 41 873 2021-01-13 18:30:07
## 5261 67 41 873 2021-01-13 18:30:07
## 5262 4901 1142 127480 2009-03-09 00:20:30
## 5263 553 636 39646 2009-03-16 13:46:20
## 5264 553 636 39646 2009-03-16 13:46:20
## 5265 553 636 39646 2009-03-16 13:46:20
## 5266 553 636 39646 2009-03-16 13:46:20
## 5267 553 636 39646 2009-03-16 13:46:20
## 5268 553 636 39646 2009-03-16 13:46:20
## 5269 553 636 39646 2009-03-16 13:46:20
## 5270 553 636 39646 2009-03-16 13:46:20
213
## 5271 553 636 39646 2009-03-16 13:46:20
## 5272 91 85 5227 2018-08-17 02:14:38
## 5273 3123 3742 132261 2011-08-11 12:46:30
## 5274 3123 3742 132261 2011-08-11 12:46:30
## 5275 59 30 2835 2020-09-01 02:17:38
## 5276 59 30 2835 2020-09-01 02:17:38
## 5277 73 326 85466 2012-08-14 10:35:47
## 5278 151 106 1183 2014-07-11 11:50:37
## 5279 148 37 2514 2016-06-28 02:05:56
## 5280 1363 1732 17960 2009-08-04 16:41:44
## 5281 1363 1732 17960 2009-08-04 16:41:44
## 5282 254 13 902 2020-12-20 10:28:53
## 5283 597 32 1948 2018-05-04 21:23:33
## 5284 1238 420 4263 2017-01-14 17:03:14
## 5285 1238 420 4263 2017-01-14 17:03:14
## 5286 703 350 6694 2009-03-16 01:43:28
## 5287 37 5 65 2019-10-20 09:08:56
## 5288 124 35 749 2019-11-05 04:22:12
## 5289 124 35 749 2019-11-05 04:22:12
## 5290 124 35 749 2019-11-05 04:22:12
## 5291 1070 5480 6879 2019-08-26 19:27:10
## 5292 0 7 539 2019-12-23 16:53:13
## 5293 2284 352 4998 2019-01-29 15:09:28
## 5294 419 56 2872 2017-05-16 21:29:31
## 5295 419 56 2872 2017-05-16 21:29:31
## 5296 419 56 2872 2017-05-16 21:29:31
## 5297 297 28595 84422 2009-09-15 22:09:46
## 5298 297 28595 84422 2009-09-15 22:09:46
## 5299 297 28595 84422 2009-09-15 22:09:46
## 5300 297 28595 84422 2009-09-15 22:09:46
## 5301 297 28595 84422 2009-09-15 22:09:46
## 5302 2233 1649 1288 2010-04-26 10:44:24
## 5303 1180 1425 6953 2012-09-09 06:34:04
## 5304 1180 1425 6953 2012-09-09 06:34:04
## 5305 886 258 11559 2011-10-26 03:18:37
## 5306 886 258 11559 2011-10-26 03:18:37
## 5307 886 258 11559 2011-10-26 03:18:37
## 5308 135 35 1514 2016-10-13 14:03:26
## 5309 1895 1765 1044 2017-06-04 06:25:00
## 5310 987 294 15414 2011-02-06 23:30:51
## 5311 258 99 979 2009-09-16 20:58:24
## 5312 258 99 979 2009-09-16 20:58:24
## 5313 258 99 979 2009-09-16 20:58:24
## 5314 258 99 979 2009-09-16 20:58:24
## 5315 258 99 979 2009-09-16 20:58:24
## 5316 258 99 979 2009-09-16 20:58:24
## 5317 258 99 979 2009-09-16 20:58:24
## 5318 509 476 22022 2009-03-13 16:22:17
## 5319 2 26 1274 2019-07-13 23:50:09
## 5320 3448 3573 6383 2020-07-01 19:11:42
## 5321 3448 3573 6383 2020-07-01 19:11:42
## 5322 986 481 9817 2011-10-03 12:14:17
## 5323 7 3 14 2010-12-02 17:32:30
## 5324 179 4 542 2014-03-02 23:30:58
214
## 5325 70 18 1233 2013-06-26 00:16:13
## 5326 374 124 3021 2011-09-17 16:58:42
## 5327 115 33 787 2021-01-01 16:02:21
## 5328 426 120 44938 2009-04-05 16:21:24
## 5329 137 33 1308 2009-06-14 08:48:04
## 5330 1927 1547 69350 2013-08-21 19:42:03
## 5331 1927 1547 69350 2013-08-21 19:42:03
## 5332 1927 1547 69350 2013-08-21 19:42:03
## 5333 983 1999 44480 2009-10-03 15:08:29
## 5334 342 268 9619 2012-02-15 19:18:48
## 5335 342 268 9619 2012-02-15 19:18:48
## 5336 1766 542 7108 2018-05-30 12:28:38
## 5337 234 49 8008 2016-11-15 00:24:11
## 5338 372 164 1214 2020-07-20 09:41:44
## 5339 2649 386 26954 2018-06-22 17:11:51
## 5340 1411 603 6846 2020-05-23 20:21:20
## 5341 852 3617 11874 2009-04-16 02:52:56
## 5342 852 3617 11874 2009-04-16 02:52:56
## 5343 1839 250 26712 2017-04-06 21:46:52
## 5344 73 83 4158 2012-11-09 18:11:51
## 5345 73 83 4158 2012-11-09 18:11:51
## 5346 253 147 27610 2010-05-20 07:28:20
## 5347 5001 2854 783971 2009-08-14 06:48:30
## 5348 5001 2854 783971 2009-08-14 06:48:30
## 5349 5001 2854 783971 2009-08-14 06:48:30
## 5350 5001 2854 783971 2009-08-14 06:48:30
## 5351 65 52 14099 2014-09-17 16:35:39
## 5352 495 809 26475 2011-01-09 01:27:38
## 5353 833 733 3447 2009-03-24 23:07:00
## 5354 3361 3279 9948 2020-07-13 14:22:56
## 5355 3361 3279 9948 2020-07-13 14:22:56
## 5356 596 155 27522 2013-10-02 04:05:35
## 5357 26 10 3735 2020-11-10 19:17:14
## 5358 26 10 3735 2020-11-10 19:17:14
## 5359 26 10 3735 2020-11-10 19:17:14
## 5360 509 266 48740 2010-01-17 04:18:42
## 5361 4099 4253 99420 2014-11-30 10:04:11
## 5362 0 4 1545 2020-10-08 12:10:03
## 5363 1155 156 6227 2019-12-22 21:13:26
## 5364 2561 343 16834 2009-01-23 11:04:28
## 5365 254 384 6485 2020-08-29 02:10:45
## 5366 1232 820 9723 2009-04-04 23:13:40
## 5367 6 50 10229 2016-10-12 12:10:23
## 5368 870 339 18349 2009-03-18 20:54:54
## 5369 4148 4123 40944 2010-06-17 03:31:27
## 5370 76 14 2460 2019-11-12 16:28:43
## 5371 125 117 2750 2009-04-13 04:45:28
## 5372 125 117 2750 2009-04-13 04:45:28
## 5373 67 10 1605 2020-10-31 15:47:39
## 5374 1070 5480 6879 2019-08-26 19:27:10
## 5375 3099 6246 23749 2011-12-26 21:20:42
## 5376 204 50 1201 2021-02-05 16:27:08
## 5377 113 27 302 2009-10-19 12:28:27
## 5378 17 4 54 2021-03-08 03:35:48
215
## 5379 11 2 101 2018-10-20 08:10:24
## 5380 3264 2726 12809 2009-08-01 08:09:25
## 5381 3264 2726 12809 2009-08-01 08:09:25
## 5382 348 63 1548 2017-01-29 23:18:53
## 5383 2721 769 1184 2009-02-17 17:12:57
## 5384 478 492 11932 2012-03-09 18:42:56
## 5385 3220 1203 40639 2009-05-01 05:34:54
## 5386 1456 293 4885 2011-10-14 20:51:49
## 5387 2226 6633 131669 2009-03-15 17:29:23
## 5388 471 206 10498 2011-03-06 16:42:04
## 5389 2125 481 11610 2020-09-24 20:43:55
## 5390 361 394 2310 2016-10-27 17:12:30
## 5391 37 2 1414 2021-01-06 18:58:33
## 5392 37 2 1414 2021-01-06 18:58:33
## 5393 706 1469 726 2013-11-08 15:59:05
## 5394 706 1469 726 2013-11-08 15:59:05
## 5395 410 28 1096 2009-07-06 21:00:42
## 5396 1279 1093 6493 2019-07-27 04:35:35
## 5397 48 50 1436 2012-02-05 16:50:01
## 5398 48 50 1436 2012-02-05 16:50:01
## 5399 48 50 1436 2012-02-05 16:50:01
## 5400 11591 12033 3112 2020-01-16 19:26:49
## 5401 11591 12033 3112 2020-01-16 19:26:49
## 5402 4858 4026 327489 2009-04-29 06:24:06
## 5403 1644 1698 69988 2010-01-21 05:13:11
## 5404 1644 1698 69988 2010-01-21 05:13:11
## 5405 2381 328 562 2020-11-04 02:22:44
## 5406 658 1210 1496 2018-09-11 15:31:30
## 5407 658 1210 1496 2018-09-11 15:31:30
## 5408 137 33 1308 2009-06-14 08:48:04
## 5409 1323 37866 5687 2012-11-26 00:15:08
## 5410 797 529 10387 2018-09-18 15:05:21
## 5411 797 529 10387 2018-09-18 15:05:21
## 5412 797 529 10387 2018-09-18 15:05:21
## 5413 797 529 10387 2018-09-18 15:05:21
## 5414 797 529 10387 2018-09-18 15:05:21
## 5415 797 529 10387 2018-09-18 15:05:21
## 5416 797 529 10387 2018-09-18 15:05:21
## 5417 68 1060 14067 2009-05-14 19:26:28
## 5418 68 1060 14067 2009-05-14 19:26:28
## 5419 68 1060 14067 2009-05-14 19:26:28
## 5420 277 120 9984 2020-02-23 17:51:56
## 5421 277 120 9984 2020-02-23 17:51:56
## 5422 277 120 9984 2020-02-23 17:51:56
## 5423 277 120 9984 2020-02-23 17:51:56
## 5424 277 120 9984 2020-02-23 17:51:56
## 5425 81 116 7058 2013-02-11 18:22:53
## 5426 31 11 304 2019-12-19 22:34:32
## 5427 665 233 24265 2008-09-26 14:41:26
## 5428 898 5005 3100 2009-01-27 05:12:44
## 5429 44 141 6422 2020-09-25 11:08:31
## 5430 2370 195 19605 2011-01-28 07:31:56
## 5431 516 421 5981 2013-03-06 01:06:08
## 5432 3 5 333 2021-02-26 22:20:43
216
## 5433 3 5 333 2021-02-26 22:20:43
## Tweet.Created.at Num.of.Retweet
## 1 2021-03-10 15:41:18 0
## 2 2021-03-08 18:54:37 0
## 3 2021-03-11 10:22:21 0
## 4 2021-03-07 01:53:26 0
## 5 2021-03-05 17:00:05 0
## 6 2021-03-06 10:57:13 0
## 7 2021-03-06 10:57:13 0
## 8 2021-03-06 10:57:13 0
## 9 2021-03-05 13:18:34 1
## 10 2021-03-05 13:18:34 1
## 11 2021-03-09 22:49:48 0
## 12 2021-03-09 22:49:48 0
## 13 2021-03-09 22:49:48 0
## 14 2021-03-08 19:02:16 0
## 15 2021-03-09 09:03:51 1
## 16 2021-03-09 09:03:51 1
## 17 2021-03-09 09:03:51 1
## 18 2021-03-08 16:54:10 0
## 19 2021-03-08 16:54:10 0
## 20 2021-03-08 03:23:56 0
## 21 2021-03-08 04:22:38 0
## 22 2021-03-07 22:01:02 0
## 23 2021-03-08 04:08:33 27
## 24 2021-03-07 22:26:37 0
## 25 2021-03-07 22:26:37 0
## 26 2021-03-10 20:19:57 0
## 27 2021-03-09 01:07:36 2
## 28 2021-03-08 03:42:00 0
## 29 2021-03-08 01:51:14 0
## 30 2021-03-08 05:24:35 0
## 31 2021-03-09 09:59:02 0
## 32 2021-03-09 09:59:02 0
## 33 2021-03-04 15:45:50 0
## 34 2021-03-10 14:18:04 0
## 35 2021-03-09 16:10:50 0
## 36 2021-03-09 10:53:40 4
## 37 2021-03-10 18:13:05 0
## 38 2021-03-09 09:37:17 2
## 39 2021-03-09 09:37:17 2
## 40 2021-03-08 04:47:29 0
## 41 2021-03-05 17:20:43 0
## 42 2021-03-08 21:24:15 1
## 43 2021-03-08 21:07:38 0
## 44 2021-03-11 01:02:57 0
## 45 2021-03-04 21:08:24 0
## 46 2021-03-04 21:08:24 0
## 47 2021-03-10 10:58:39 0
## 48 2021-03-09 20:56:05 0
## 49 2021-03-10 05:31:52 0
## 50 2021-03-10 05:31:52 0
## 51 2021-03-09 00:55:35 0
## 52 2021-03-09 16:49:12 0
217
## 53 2021-03-08 16:57:57 0
## 54 2021-03-08 16:57:57 0
## 55 2021-03-09 07:18:06 0
## 56 2021-03-09 22:51:32 0
## 57 2021-03-09 22:51:32 0
## 58 2021-03-09 22:51:32 0
## 59 2021-03-09 18:19:43 0
## 60 2021-03-11 20:31:47 0
## 61 2021-03-11 20:31:47 0
## 62 2021-03-11 20:31:47 0
## 63 2021-03-11 20:31:47 0
## 64 2021-03-11 20:31:47 0
## 65 2021-03-06 00:39:21 0
## 66 2021-03-06 00:39:21 0
## 67 2021-03-05 12:56:36 0
## 68 2021-03-09 16:40:26 0
## 69 2021-03-09 16:40:26 0
## 70 2021-03-09 22:56:54 0
## 71 2021-03-10 10:52:45 0
## 72 2021-03-05 14:03:08 0
## 73 2021-03-05 14:03:08 0
## 74 2021-03-08 09:26:19 0
## 75 2021-03-08 09:26:19 0
## 76 2021-03-09 02:35:26 0
## 77 2021-03-06 19:45:45 0
## 78 2021-03-08 19:50:50 1
## 79 2021-03-08 19:50:50 1
## 80 2021-03-08 11:35:41 0
## 81 2021-03-08 11:35:41 0
## 82 2021-03-08 11:35:41 0
## 83 2021-03-05 13:32:16 0
## 84 2021-03-05 13:32:16 0
## 85 2021-03-06 15:24:24 124
## 86 2021-03-08 23:35:10 0
## 87 2021-03-08 06:28:58 0
## 88 2021-03-11 05:36:37 1
## 89 2021-03-11 05:36:37 1
## 90 2021-03-07 06:45:31 0
## 91 2021-03-08 04:18:10 0
## 92 2021-03-08 04:18:10 0
## 93 2021-03-10 14:20:56 0
## 94 2021-03-10 17:22:32 0
## 95 2021-03-08 02:21:48 0
## 96 2021-03-07 22:45:00 1
## 97 2021-03-05 11:06:33 19
## 98 2021-03-11 19:50:57 1
## 99 2021-03-11 19:50:57 1
## 100 2021-03-10 05:28:36 0
## 101 2021-03-10 05:28:36 0
## 102 2021-03-10 05:28:36 0
## 103 2021-03-10 05:28:36 0
## 104 2021-03-09 22:15:36 0
## 105 2021-03-11 10:33:12 0
## 106 2021-03-11 10:33:12 0
218
## 107 2021-03-08 17:48:03 2
## 108 2021-03-10 07:47:26 0
## 109 2021-03-08 16:53:14 0
## 110 2021-03-05 13:38:43 1
## 111 2021-03-09 19:27:46 0
## 112 2021-03-09 08:03:04 0
## 113 2021-03-09 08:03:04 0
## 114 2021-03-05 08:27:48 0
## 115 2021-03-08 13:10:11 0
## 116 2021-03-08 13:10:11 0
## 117 2021-03-08 13:10:11 0
## 118 2021-03-04 18:58:16 0
## 119 2021-03-04 18:58:16 0
## 120 2021-03-07 18:50:36 0
## 121 2021-03-10 06:45:14 0
## 122 2021-03-08 07:29:17 0
## 123 2021-03-10 22:05:47 0
## 124 2021-03-10 22:05:47 0
## 125 2021-03-10 22:05:47 0
## 126 2021-03-10 12:43:03 186
## 127 2021-03-08 16:05:04 2
## 128 2021-03-08 16:05:04 2
## 129 2021-03-08 16:05:04 2
## 130 2021-03-08 07:07:48 0
## 131 2021-03-10 22:31:18 0
## 132 2021-03-10 22:31:18 0
## 133 2021-03-10 22:31:18 0
## 134 2021-03-10 22:31:18 0
## 135 2021-03-08 09:04:32 0
## 136 2021-03-08 09:04:32 0
## 137 2021-03-08 02:30:30 0
## 138 2021-03-09 19:36:12 1
## 139 2021-03-09 21:10:02 1
## 140 2021-03-09 21:10:02 1
## 141 2021-03-09 21:10:02 1
## 142 2021-03-08 02:04:38 0
## 143 2021-03-08 07:05:08 0
## 144 2021-03-07 12:54:06 0
## 145 2021-03-07 12:54:06 0
## 146 2021-03-07 13:00:37 1
## 147 2021-03-07 13:00:37 1
## 148 2021-03-08 07:47:57 0
## 149 2021-03-10 13:45:18 0
## 150 2021-03-11 20:42:19 0
## 151 2021-03-11 10:34:31 0
## 152 2021-03-11 10:34:31 0
## 153 2021-03-05 15:45:27 1
## 154 2021-03-09 13:03:13 0
## 155 2021-03-07 09:07:30 1
## 156 2021-03-07 09:07:30 1
## 157 2021-03-10 04:17:11 0
## 158 2021-03-08 01:04:12 0
## 159 2021-03-08 15:11:06 0
## 160 2021-03-10 00:39:17 1
219
## 161 2021-03-09 18:49:48 0
## 162 2021-03-10 12:59:37 0
## 163 2021-03-08 14:24:17 0
## 164 2021-03-09 02:00:02 0
## 165 2021-03-09 02:00:02 0
## 166 2021-03-10 12:53:21 1
## 167 2021-03-10 12:53:21 1
## 168 2021-03-09 00:05:32 0
## 169 2021-03-09 19:32:49 0
## 170 2021-03-09 05:57:01 1
## 171 2021-03-08 19:03:36 0
## 172 2021-03-11 06:51:27 0
## 173 2021-03-11 06:51:27 0
## 174 2021-03-08 21:46:00 0
## 175 2021-03-08 21:46:00 0
## 176 2021-03-08 21:46:00 0
## 177 2021-03-08 21:46:00 0
## 178 2021-03-08 21:46:00 0
## 179 2021-03-08 21:46:00 0
## 180 2021-03-08 21:46:00 0
## 181 2021-03-08 21:46:00 0
## 182 2021-03-10 07:51:17 1
## 183 2021-03-08 18:34:19 0
## 184 2021-03-08 09:33:18 1
## 185 2021-03-08 08:56:30 0
## 186 2021-03-08 15:02:03 1
## 187 2021-03-08 05:21:58 0
## 188 2021-03-11 04:21:39 0
## 189 2021-03-08 02:13:23 0
## 190 2021-03-08 07:35:33 0
## 191 2021-03-08 07:35:33 0
## 192 2021-03-08 07:35:33 0
## 193 2021-03-08 04:00:48 0
## 194 2021-03-07 13:19:53 0
## 195 2021-03-07 13:19:53 0
## 196 2021-03-07 13:19:53 0
## 197 2021-03-08 15:47:54 0
## 198 2021-03-10 23:25:05 0
## 199 2021-03-08 14:45:15 0
## 200 2021-03-07 14:17:38 1
## 201 2021-03-08 08:32:35 0
## 202 2021-03-08 16:13:31 0
## 203 2021-03-08 16:13:31 0
## 204 2021-03-08 19:13:27 0
## 205 2021-03-08 06:40:00 0
## 206 2021-03-09 13:06:24 0
## 207 2021-03-08 17:16:10 3
## 208 2021-03-08 17:16:10 3
## 209 2021-03-11 04:14:48 0
## 210 2021-03-10 10:01:06 0
## 211 2021-03-09 08:12:02 0
## 212 2021-03-06 03:36:18 0
## 213 2021-03-06 03:36:18 0
## 214 2021-03-06 03:36:18 0
220
## 215 2021-03-06 03:36:18 0
## 216 2021-03-09 23:28:08 0
## 217 2021-03-07 10:14:53 0
## 218 2021-03-10 03:51:31 1
## 219 2021-03-09 22:32:29 1
## 220 2021-03-10 22:45:58 1
## 221 2021-03-10 22:45:58 1
## 222 2021-03-05 17:22:09 0
## 223 2021-03-08 02:37:58 0
## 224 2021-03-08 02:37:58 0
## 225 2021-03-08 02:37:58 0
## 226 2021-03-08 02:37:58 0
## 227 2021-03-08 08:41:53 0
## 228 2021-03-08 08:41:53 0
## 229 2021-03-10 19:31:33 15
## 230 2021-03-05 14:14:23 0
## 231 2021-03-05 14:14:23 0
## 232 2021-03-08 13:03:41 0
## 233 2021-03-08 13:03:41 0
## 234 2021-03-06 00:42:51 0
## 235 2021-03-07 17:22:19 0
## 236 2021-03-07 17:22:19 0
## 237 2021-03-09 03:32:50 0
## 238 2021-03-08 18:15:50 0
## 239 2021-03-08 15:04:05 0
## 240 2021-03-07 21:20:08 0
## 241 2021-03-07 21:20:08 0
## 242 2021-03-08 03:23:49 0
## 243 2021-03-08 03:23:49 0
## 244 2021-03-08 11:58:18 0
## 245 2021-03-08 11:58:18 0
## 246 2021-03-08 11:58:18 0
## 247 2021-03-11 13:46:54 0
## 248 2021-03-10 18:08:27 1
## 249 2021-03-10 18:08:27 1
## 250 2021-03-09 12:43:59 0
## 251 2021-03-08 15:57:56 0
## 252 2021-03-09 10:05:27 0
## 253 2021-03-09 10:05:27 0
## 254 2021-03-08 05:08:58 0
## 255 2021-03-09 19:58:29 1
## 256 2021-03-08 18:45:07 0
## 257 2021-03-08 10:06:58 0
## 258 2021-03-09 15:20:01 0
## 259 2021-03-09 19:28:37 1
## 260 2021-03-08 08:46:47 0
## 261 2021-03-08 17:45:00 1
## 262 2021-03-09 22:03:24 0
## 263 2021-03-11 14:33:54 0
## 264 2021-03-07 12:50:19 0
## 265 2021-03-09 20:25:50 0
## 266 2021-03-09 20:25:50 0
## 267 2021-03-09 02:59:57 1
## 268 2021-03-09 02:59:57 1
221
## 269 2021-03-08 02:52:01 3
## 270 2021-03-09 13:21:37 0
## 271 2021-03-10 19:42:54 0
## 272 2021-03-04 19:06:22 0
## 273 2021-03-11 05:45:53 0
## 274 2021-03-04 15:30:17 1
## 275 2021-03-04 15:30:17 1
## 276 2021-03-09 17:35:24 0
## 277 2021-03-06 04:24:29 0
## 278 2021-03-10 17:26:19 0
## 279 2021-03-08 13:45:07 0
## 280 2021-03-07 23:59:13 0
## 281 2021-03-05 08:46:23 0
## 282 2021-03-04 17:33:11 0
## 283 2021-03-10 02:10:12 0
## 284 2021-03-10 20:14:53 0
## 285 2021-03-09 00:13:30 0
## 286 2021-03-09 00:13:30 0
## 287 2021-03-10 15:25:09 0
## 288 2021-03-10 15:25:09 0
## 289 2021-03-10 15:25:09 0
## 290 2021-03-10 15:25:09 0
## 291 2021-03-08 14:03:10 0
## 292 2021-03-08 10:44:04 0
## 293 2021-03-08 03:26:55 0
## 294 2021-03-10 21:13:21 0
## 295 2021-03-05 22:19:03 1
## 296 2021-03-05 22:19:03 1
## 297 2021-03-08 16:38:06 0
## 298 2021-03-08 18:35:28 0
## 299 2021-03-08 01:15:43 0
## 300 2021-03-08 01:15:43 0
## 301 2021-03-08 01:15:43 0
## 302 2021-03-08 01:15:43 0
## 303 2021-03-08 01:15:43 0
## 304 2021-03-08 15:17:16 0
## 305 2021-03-08 15:17:16 0
## 306 2021-03-08 15:17:16 0
## 307 2021-03-08 15:17:16 0
## 308 2021-03-08 06:45:49 0
## 309 2021-03-07 22:38:29 0
## 310 2021-03-07 22:38:29 0
## 311 2021-03-07 18:52:38 0
## 312 2021-03-07 18:52:38 0
## 313 2021-03-07 18:52:38 0
## 314 2021-03-08 13:26:53 1
## 315 2021-03-08 16:30:38 0
## 316 2021-03-10 13:12:47 0
## 317 2021-03-06 01:46:59 3
## 318 2021-03-06 01:46:59 3
## 319 2021-03-08 12:40:33 0
## 320 2021-03-08 12:40:33 0
## 321 2021-03-08 19:03:16 0
## 322 2021-03-08 19:02:06 0
222
## 323 2021-03-09 19:34:50 0
## 324 2021-03-09 00:20:02 1
## 325 2021-03-09 00:20:02 1
## 326 2021-03-09 00:20:02 1
## 327 2021-03-08 19:08:48 0
## 328 2021-03-05 13:03:03 0
## 329 2021-03-05 13:03:03 0
## 330 2021-03-05 13:03:03 0
## 331 2021-03-10 01:16:13 1
## 332 2021-03-10 01:16:13 1
## 333 2021-03-08 01:30:59 1
## 334 2021-03-09 17:56:16 0
## 335 2021-03-08 02:04:47 0
## 336 2021-03-08 06:22:44 0
## 337 2021-03-08 22:58:52 0
## 338 2021-03-08 18:32:04 0
## 339 2021-03-08 03:20:55 0
## 340 2021-03-08 05:49:40 0
## 341 2021-03-09 01:45:40 2
## 342 2021-03-08 02:09:29 0
## 343 2021-03-08 15:27:35 0
## 344 2021-03-04 20:21:23 0
## 345 2021-03-08 02:01:27 0
## 346 2021-03-10 14:35:01 20
## 347 2021-03-10 16:50:10 0
## 348 2021-03-08 01:54:06 0
## 349 2021-03-10 18:59:56 0
## 350 2021-03-10 18:59:56 0
## 351 2021-03-10 00:03:42 1
## 352 2021-03-09 16:32:37 0
## 353 2021-03-09 14:18:36 0
## 354 2021-03-05 02:59:00 0
## 355 2021-03-08 14:25:20 0
## 356 2021-03-08 14:25:20 0
## 357 2021-03-08 14:25:20 0
## 358 2021-03-08 14:25:20 0
## 359 2021-03-09 23:29:58 0
## 360 2021-03-09 23:29:58 0
## 361 2021-03-09 20:13:25 3
## 362 2021-03-09 20:13:25 3
## 363 2021-03-09 20:13:25 3
## 364 2021-03-09 19:43:06 0
## 365 2021-03-09 19:43:06 0
## 366 2021-03-08 02:08:07 0
## 367 2021-03-09 00:37:49 0
## 368 2021-03-09 00:37:49 0
## 369 2021-03-08 11:34:35 0
## 370 2021-03-07 14:45:30 0
## 371 2021-03-08 05:23:21 0
## 372 2021-03-08 03:01:43 0
## 373 2021-03-10 04:21:43 0
## 374 2021-03-10 04:21:43 0
## 375 2021-03-08 21:46:46 0
## 376 2021-03-08 21:46:46 0
223
## 377 2021-03-08 21:46:46 0
## 378 2021-03-08 21:46:46 0
## 379 2021-03-08 02:50:28 1
## 380 2021-03-08 10:20:58 1
## 381 2021-03-07 17:10:48 5
## 382 2021-03-10 02:14:31 0
## 383 2021-03-05 17:46:23 0
## 384 2021-03-10 18:16:04 0
## 385 2021-03-10 13:40:17 0
## 386 2021-03-10 13:40:17 0
## 387 2021-03-08 13:54:41 0
## 388 2021-03-09 22:16:41 0
## 389 2021-03-09 22:16:41 0
## 390 2021-03-08 15:43:07 1
## 391 2021-03-09 16:17:31 0
## 392 2021-03-09 00:52:36 0
## 393 2021-03-08 10:21:47 0
## 394 2021-03-08 10:21:47 0
## 395 2021-03-08 21:07:31 0
## 396 2021-03-10 22:23:03 0
## 397 2021-03-05 17:36:32 0
## 398 2021-03-05 17:36:32 0
## 399 2021-03-05 17:36:32 0
## 400 2021-03-08 17:33:06 0
## 401 2021-03-09 20:46:36 1
## 402 2021-03-11 21:01:13 0
## 403 2021-03-11 21:01:13 0
## 404 2021-03-11 21:01:13 0
## 405 2021-03-08 13:07:19 0
## 406 2021-03-09 16:47:22 0
## 407 2021-03-09 12:09:32 0
## 408 2021-03-09 01:21:34 1
## 409 2021-03-08 06:36:57 1
## 410 2021-03-08 03:20:42 0
## 411 2021-03-08 03:20:42 0
## 412 2021-03-08 19:47:30 0
## 413 2021-03-07 13:10:25 0
## 414 2021-03-11 05:57:21 0
## 415 2021-03-05 17:09:10 26
## 416 2021-03-10 18:07:35 0
## 417 2021-03-08 11:27:28 0
## 418 2021-03-10 19:04:29 0
## 419 2021-03-09 05:18:32 0
## 420 2021-03-09 05:18:32 0
## 421 2021-03-08 14:38:18 0
## 422 2021-03-08 09:14:58 0
## 423 2021-03-07 11:04:59 0
## 424 2021-03-10 12:19:25 0
## 425 2021-03-10 12:19:25 0
## 426 2021-03-10 15:34:05 0
## 427 2021-03-10 15:34:05 0
## 428 2021-03-10 15:34:05 0
## 429 2021-03-10 15:34:05 0
## 430 2021-03-10 15:34:05 0
224
## 431 2021-03-08 08:34:26 0
## 432 2021-03-11 11:57:17 1
## 433 2021-03-07 09:38:16 0
## 434 2021-03-07 09:38:16 0
## 435 2021-03-11 00:51:21 0
## 436 2021-03-08 02:53:02 0
## 437 2021-03-08 02:53:02 0
## 438 2021-03-09 14:20:34 0
## 439 2021-03-08 12:00:28 0
## 440 2021-03-08 12:00:28 0
## 441 2021-03-08 12:00:28 0
## 442 2021-03-08 12:00:28 0
## 443 2021-03-09 07:18:11 0
## 444 2021-03-09 07:18:11 0
## 445 2021-03-09 07:18:11 0
## 446 2021-03-08 16:41:55 5
## 447 2021-03-08 16:41:55 5
## 448 2021-03-08 19:22:40 4
## 449 2021-03-08 19:22:40 4
## 450 2021-03-08 03:16:08 0
## 451 2021-03-08 03:16:08 0
## 452 2021-03-05 20:49:05 0
## 453 2021-03-07 00:28:33 0
## 454 2021-03-06 14:39:02 0
## 455 2021-03-06 14:39:02 0
## 456 2021-03-06 14:39:02 0
## 457 2021-03-06 14:39:02 0
## 458 2021-03-08 07:17:49 0
## 459 2021-03-11 00:02:21 5
## 460 2021-03-11 00:02:21 5
## 461 2021-03-11 00:02:21 5
## 462 2021-03-08 01:55:27 0
## 463 2021-03-08 19:37:30 0
## 464 2021-03-10 07:54:55 0
## 465 2021-03-10 07:54:55 0
## 466 2021-03-09 21:31:35 0
## 467 2021-03-08 05:57:46 0
## 468 2021-03-08 02:43:14 0
## 469 2021-03-08 11:40:35 0
## 470 2021-03-08 11:40:35 0
## 471 2021-03-08 02:27:51 0
## 472 2021-03-09 12:40:13 0
## 473 2021-03-06 17:31:26 0
## 474 2021-03-06 17:31:26 0
## 475 2021-03-06 17:31:26 0
## 476 2021-03-08 06:20:28 0
## 477 2021-03-08 04:16:13 1
## 478 2021-03-08 04:16:13 1
## 479 2021-03-09 19:15:45 0
## 480 2021-03-08 02:22:33 1
## 481 2021-03-08 04:15:15 1
## 482 2021-03-08 04:15:15 1
## 483 2021-03-08 04:15:15 1
## 484 2021-03-10 19:44:26 1
225
## 485 2021-03-08 02:14:15 0
## 486 2021-03-08 02:14:15 0
## 487 2021-03-09 12:55:35 0
## 488 2021-03-08 02:32:58 0
## 489 2021-03-08 15:25:15 0
## 490 2021-03-08 03:10:44 0
## 491 2021-03-06 22:07:18 0
## 492 2021-03-06 22:07:18 0
## 493 2021-03-09 11:26:43 0
## 494 2021-03-06 01:21:27 470
## 495 2021-03-06 01:21:27 470
## 496 2021-03-09 16:26:18 0
## 497 2021-03-09 16:26:18 0
## 498 2021-03-09 16:26:18 0
## 499 2021-03-09 16:26:18 0
## 500 2021-03-09 16:26:18 0
## 501 2021-03-09 16:26:18 0
## 502 2021-03-09 16:26:18 0
## 503 2021-03-09 16:26:18 0
## 504 2021-03-09 16:26:18 0
## 505 2021-03-06 00:19:59 6
## 506 2021-03-06 00:19:59 6
## 507 2021-03-07 18:43:26 0
## 508 2021-03-09 15:40:18 1
## 509 2021-03-09 15:40:18 1
## 510 2021-03-11 01:50:00 0
## 511 2021-03-11 01:50:00 0
## 512 2021-03-08 10:30:40 1
## 513 2021-03-08 01:19:49 0
## 514 2021-03-07 11:34:43 0
## 515 2021-03-10 00:01:32 0
## 516 2021-03-10 00:01:32 0
## 517 2021-03-08 14:50:59 7
## 518 2021-03-08 14:50:59 7
## 519 2021-03-08 13:13:33 1
## 520 2021-03-08 13:13:33 1
## 521 2021-03-08 02:33:52 1
## 522 2021-03-10 20:38:40 0
## 523 2021-03-09 01:25:34 2
## 524 2021-03-09 01:25:34 2
## 525 2021-03-06 14:31:29 0
## 526 2021-03-06 14:31:29 0
## 527 2021-03-04 15:20:40 1
## 528 2021-03-08 06:01:36 0
## 529 2021-03-10 03:57:34 0
## 530 2021-03-11 01:39:15 0
## 531 2021-03-11 01:39:15 0
## 532 2021-03-08 05:34:01 0
## 533 2021-03-07 14:02:33 0
## 534 2021-03-08 22:42:42 0
## 535 2021-03-08 22:42:42 0
## 536 2021-03-09 20:43:41 1
## 537 2021-03-09 20:43:41 1
## 538 2021-03-09 20:43:41 1
226
## 539 2021-03-11 11:02:03 0
## 540 2021-03-09 19:48:07 0
## 541 2021-03-09 19:48:07 0
## 542 2021-03-08 04:21:08 0
## 543 2021-03-08 04:21:08 0
## 544 2021-03-08 01:54:28 1
## 545 2021-03-06 04:40:50 9
## 546 2021-03-06 04:40:50 9
## 547 2021-03-06 04:40:50 9
## 548 2021-03-06 04:40:50 9
## 549 2021-03-06 04:40:50 9
## 550 2021-03-06 04:40:50 9
## 551 2021-03-06 04:40:50 9
## 552 2021-03-06 04:40:50 9
## 553 2021-03-06 04:40:50 9
## 554 2021-03-06 04:40:50 9
## 555 2021-03-08 01:25:02 0
## 556 2021-03-08 01:25:02 0
## 557 2021-03-06 23:37:45 0
## 558 2021-03-09 04:34:59 0
## 559 2021-03-09 19:04:59 0
## 560 2021-03-09 19:04:59 0
## 561 2021-03-08 01:05:21 1
## 562 2021-03-11 08:29:01 0
## 563 2021-03-11 08:29:01 0
## 564 2021-03-11 08:29:01 0
## 565 2021-03-11 08:29:01 0
## 566 2021-03-08 06:18:48 0
## 567 2021-03-08 18:40:59 496
## 568 2021-03-10 21:33:49 0
## 569 2021-03-08 01:27:37 1
## 570 2021-03-08 15:23:30 0
## 571 2021-03-11 06:07:22 0
## 572 2021-03-06 04:09:33 0
## 573 2021-03-06 04:09:33 0
## 574 2021-03-10 15:23:57 0
## 575 2021-03-08 06:32:21 1
## 576 2021-03-09 12:51:31 0
## 577 2021-03-09 12:51:31 0
## 578 2021-03-06 01:23:24 0
## 579 2021-03-08 19:29:53 0
## 580 2021-03-09 21:27:26 0
## 581 2021-03-09 21:27:26 0
## 582 2021-03-09 21:27:26 0
## 583 2021-03-09 21:27:26 0
## 584 2021-03-08 04:05:07 0
## 585 2021-03-08 04:05:07 0
## 586 2021-03-08 02:37:44 1
## 587 2021-03-08 09:41:53 0
## 588 2021-03-08 19:30:46 0
## 589 2021-03-08 19:30:46 0
## 590 2021-03-08 19:30:46 0
## 591 2021-03-08 12:00:06 0
## 592 2021-03-04 19:00:45 0
227
## 593 2021-03-08 01:57:48 0
## 594 2021-03-11 09:56:38 2
## 595 2021-03-11 09:56:38 2
## 596 2021-03-11 09:56:38 2
## 597 2021-03-11 09:56:38 2
## 598 2021-03-11 09:56:38 2
## 599 2021-03-08 15:27:13 1
## 600 2021-03-08 15:27:13 1
## 601 2021-03-08 17:37:11 0
## 602 2021-03-08 15:54:22 0
## 603 2021-03-08 01:29:07 0
## 604 2021-03-08 01:29:07 0
## 605 2021-03-11 13:33:26 0
## 606 2021-03-04 15:02:21 0
## 607 2021-03-04 15:02:21 0
## 608 2021-03-08 19:38:48 0
## 609 2021-03-08 19:38:48 0
## 610 2021-03-11 12:58:55 0
## 611 2021-03-08 15:19:42 0
## 612 2021-03-08 15:19:42 0
## 613 2021-03-06 18:33:37 0
## 614 2021-03-06 18:33:37 0
## 615 2021-03-11 21:02:38 0
## 616 2021-03-11 21:02:38 0
## 617 2021-03-08 15:40:16 0
## 618 2021-03-08 16:13:49 0
## 619 2021-03-08 16:13:49 0
## 620 2021-03-08 16:13:49 0
## 621 2021-03-08 16:13:49 0
## 622 2021-03-09 12:18:25 0
## 623 2021-03-09 12:18:25 0
## 624 2021-03-11 04:47:29 0
## 625 2021-03-10 20:09:47 0
## 626 2021-03-10 20:09:47 0
## 627 2021-03-10 20:09:47 0
## 628 2021-03-10 20:09:47 0
## 629 2021-03-08 01:03:01 0
## 630 2021-03-10 17:51:18 0
## 631 2021-03-08 22:07:35 0
## 632 2021-03-05 21:25:19 0
## 633 2021-03-09 23:59:19 0
## 634 2021-03-08 22:36:11 0
## 635 2021-03-08 10:30:08 0
## 636 2021-03-08 12:06:59 1
## 637 2021-03-09 16:35:39 0
## 638 2021-03-08 02:09:05 1
## 639 2021-03-08 17:37:46 1
## 640 2021-03-09 20:44:43 0
## 641 2021-03-09 20:44:43 0
## 642 2021-03-08 11:27:47 1
## 643 2021-03-08 11:27:47 1
## 644 2021-03-09 12:59:48 0
## 645 2021-03-09 07:14:40 0
## 646 2021-03-11 10:10:26 0
228
## 647 2021-03-08 01:16:14 0
## 648 2021-03-08 15:45:24 0
## 649 2021-03-08 15:45:24 0
## 650 2021-03-09 04:16:47 0
## 651 2021-03-06 18:15:13 0
## 652 2021-03-06 18:15:13 0
## 653 2021-03-06 18:15:13 0
## 654 2021-03-10 05:45:58 0
## 655 2021-03-09 04:14:31 0
## 656 2021-03-09 04:14:31 0
## 657 2021-03-11 12:30:16 0
## 658 2021-03-06 22:32:06 0
## 659 2021-03-06 22:32:06 0
## 660 2021-03-09 18:20:37 0
## 661 2021-03-09 18:20:37 0
## 662 2021-03-09 18:20:37 0
## 663 2021-03-08 21:56:37 0
## 664 2021-03-09 12:28:18 3
## 665 2021-03-09 10:41:44 1
## 666 2021-03-11 15:58:39 0
## 667 2021-03-10 05:38:50 1
## 668 2021-03-09 16:42:27 0
## 669 2021-03-09 12:41:45 3
## 670 2021-03-09 12:41:45 3
## 671 2021-03-09 08:23:48 0
## 672 2021-03-09 09:48:57 0
## 673 2021-03-04 21:02:15 0
## 674 2021-03-08 12:58:56 1
## 675 2021-03-08 12:58:56 1
## 676 2021-03-08 12:58:56 1
## 677 2021-03-06 00:41:57 0
## 678 2021-03-06 00:41:57 0
## 679 2021-03-06 00:41:57 0
## 680 2021-03-06 00:41:57 0
## 681 2021-03-06 00:41:57 0
## 682 2021-03-10 13:52:48 0
## 683 2021-03-09 03:26:17 5
## 684 2021-03-08 20:55:30 0
## 685 2021-03-08 13:35:34 0
## 686 2021-03-05 19:44:18 0
## 687 2021-03-08 16:36:43 0
## 688 2021-03-08 19:50:21 0
## 689 2021-03-08 19:50:21 0
## 690 2021-03-08 00:10:26 0
## 691 2021-03-05 08:18:10 0
## 692 2021-03-08 23:59:35 0
## 693 2021-03-07 13:10:13 10
## 694 2021-03-09 17:22:50 0
## 695 2021-03-09 17:22:50 0
## 696 2021-03-08 02:06:50 0
## 697 2021-03-05 10:51:49 0
## 698 2021-03-05 10:51:49 0
## 699 2021-03-05 10:51:49 0
## 700 2021-03-08 22:18:53 0
229
## 701 2021-03-08 22:18:53 0
## 702 2021-03-08 22:18:53 0
## 703 2021-03-07 19:05:37 0
## 704 2021-03-11 01:51:46 0
## 705 2021-03-11 01:51:46 0
## 706 2021-03-09 17:22:20 0
## 707 2021-03-08 20:17:57 0
## 708 2021-03-08 20:17:57 0
## 709 2021-03-10 09:25:09 0
## 710 2021-03-08 22:50:35 0
## 711 2021-03-08 03:42:14 0
## 712 2021-03-10 23:25:06 0
## 713 2021-03-10 23:25:06 0
## 714 2021-03-08 02:37:31 0
## 715 2021-03-10 17:49:34 0
## 716 2021-03-09 08:19:02 0
## 717 2021-03-10 02:14:00 0
## 718 2021-03-10 02:14:00 0
## 719 2021-03-10 02:14:00 0
## 720 2021-03-10 02:14:00 0
## 721 2021-03-08 22:47:57 0
## 722 2021-03-09 21:33:06 0
## 723 2021-03-09 21:33:06 0
## 724 2021-03-10 10:11:23 0
## 725 2021-03-10 03:58:45 0
## 726 2021-03-10 03:58:45 0
## 727 2021-03-10 03:58:45 0
## 728 2021-03-10 03:58:45 0
## 729 2021-03-10 03:58:45 0
## 730 2021-03-10 03:58:45 0
## 731 2021-03-10 03:58:45 0
## 732 2021-03-10 03:58:45 0
## 733 2021-03-05 09:04:46 3
## 734 2021-03-05 09:04:46 3
## 735 2021-03-05 09:04:46 3
## 736 2021-03-08 02:14:49 0
## 737 2021-03-08 02:14:49 0
## 738 2021-03-09 20:36:26 0
## 739 2021-03-09 20:36:26 0
## 740 2021-03-09 20:36:26 0
## 741 2021-03-09 20:36:26 0
## 742 2021-03-09 20:36:26 0
## 743 2021-03-09 20:36:26 0
## 744 2021-03-08 00:55:06 0
## 745 2021-03-08 02:13:18 0
## 746 2021-03-09 22:36:38 0
## 747 2021-03-09 22:36:38 0
## 748 2021-03-08 15:44:50 0
## 749 2021-03-09 09:14:07 0
## 750 2021-03-08 07:29:10 0
## 751 2021-03-08 07:29:10 0
## 752 2021-03-08 07:29:10 0
## 753 2021-03-08 07:29:10 0
## 754 2021-03-08 07:29:10 0
230
## 755 2021-03-08 07:29:10 0
## 756 2021-03-08 07:29:10 0
## 757 2021-03-08 07:29:10 0
## 758 2021-03-08 07:29:10 0
## 759 2021-03-09 07:58:03 0
## 760 2021-03-09 07:58:03 0
## 761 2021-03-09 07:58:03 0
## 762 2021-03-09 07:58:03 0
## 763 2021-03-09 12:40:30 0
## 764 2021-03-09 12:40:30 0
## 765 2021-03-08 12:27:59 0
## 766 2021-03-08 12:27:59 0
## 767 2021-03-09 16:36:48 0
## 768 2021-03-08 15:41:42 0
## 769 2021-03-08 15:41:42 0
## 770 2021-03-08 13:44:24 0
## 771 2021-03-04 17:07:22 0
## 772 2021-03-10 08:17:51 1
## 773 2021-03-08 02:00:39 2
## 774 2021-03-08 19:11:30 0
## 775 2021-03-09 08:44:42 0
## 776 2021-03-09 08:44:42 0
## 777 2021-03-09 08:44:42 0
## 778 2021-03-09 08:04:42 0
## 779 2021-03-06 17:57:17 1
## 780 2021-03-08 19:10:00 0
## 781 2021-03-10 07:42:00 0
## 782 2021-03-10 07:42:00 0
## 783 2021-03-10 07:42:00 0
## 784 2021-03-08 05:41:40 0
## 785 2021-03-09 13:31:32 2
## 786 2021-03-08 13:40:46 0
## 787 2021-03-10 20:41:28 0
## 788 2021-03-08 20:30:40 0
## 789 2021-03-08 20:30:40 0
## 790 2021-03-11 11:02:55 0
## 791 2021-03-08 21:14:21 2
## 792 2021-03-08 21:14:21 2
## 793 2021-03-08 21:53:18 5
## 794 2021-03-10 04:47:34 0
## 795 2021-03-10 04:47:34 0
## 796 2021-03-08 10:28:42 0
## 797 2021-03-10 09:54:40 0
## 798 2021-03-08 18:31:07 0
## 799 2021-03-08 03:38:31 0
## 800 2021-03-08 19:54:33 1
## 801 2021-03-08 17:36:33 0
## 802 2021-03-08 17:36:33 0
## 803 2021-03-05 20:54:02 0
## 804 2021-03-05 20:54:02 0
## 805 2021-03-05 20:54:02 0
## 806 2021-03-05 19:02:20 1
## 807 2021-03-07 22:17:16 0
## 808 2021-03-07 22:17:16 0
231
## 809 2021-03-08 01:03:21 0
## 810 2021-03-10 13:08:43 0
## 811 2021-03-10 13:08:43 0
## 812 2021-03-10 13:08:43 0
## 813 2021-03-08 02:06:15 0
## 814 2021-03-08 09:57:21 0
## 815 2021-03-08 09:57:21 0
## 816 2021-03-08 01:16:52 0
## 817 2021-03-09 01:54:16 0
## 818 2021-03-07 18:27:57 1
## 819 2021-03-09 09:51:21 0
## 820 2021-03-08 01:15:38 0
## 821 2021-03-10 02:13:59 0
## 822 2021-03-10 02:13:59 0
## 823 2021-03-10 02:13:59 0
## 824 2021-03-08 12:23:08 0
## 825 2021-03-11 05:08:23 0
## 826 2021-03-09 02:28:46 0
## 827 2021-03-09 21:07:04 0
## 828 2021-03-06 09:48:44 0
## 829 2021-03-06 09:48:44 0
## 830 2021-03-10 17:50:23 0
## 831 2021-03-08 18:27:05 0
## 832 2021-03-08 18:27:05 0
## 833 2021-03-07 11:42:26 1
## 834 2021-03-07 11:42:26 1
## 835 2021-03-07 11:42:26 1
## 836 2021-03-07 11:42:26 1
## 837 2021-03-08 04:45:31 0
## 838 2021-03-08 03:29:37 0
## 839 2021-03-10 13:02:12 0
## 840 2021-03-04 15:19:38 0
## 841 2021-03-08 01:26:48 0
## 842 2021-03-10 03:26:10 0
## 843 2021-03-06 20:05:09 0
## 844 2021-03-08 03:14:15 0
## 845 2021-03-07 20:45:59 0
## 846 2021-03-07 20:45:59 0
## 847 2021-03-07 20:45:59 0
## 848 2021-03-10 03:04:32 0
## 849 2021-03-10 03:04:32 0
## 850 2021-03-10 03:04:32 0
## 851 2021-03-08 07:49:19 1
## 852 2021-03-08 07:49:19 1
## 853 2021-03-09 22:24:21 0
## 854 2021-03-08 02:47:17 4
## 855 2021-03-08 02:47:17 4
## 856 2021-03-08 11:07:44 0
## 857 2021-03-08 11:07:44 0
## 858 2021-03-09 13:00:42 3
## 859 2021-03-09 13:00:42 3
## 860 2021-03-09 13:00:42 3
## 861 2021-03-09 01:21:08 0
## 862 2021-03-09 01:21:08 0
232
## 863 2021-03-08 02:38:20 0
## 864 2021-03-08 02:38:20 0
## 865 2021-03-08 02:38:20 0
## 866 2021-03-08 02:38:20 0
## 867 2021-03-08 02:38:20 0
## 868 2021-03-08 16:27:14 0
## 869 2021-03-08 21:18:11 1
## 870 2021-03-09 17:12:54 0
## 871 2021-03-09 17:12:54 0
## 872 2021-03-09 17:12:54 0
## 873 2021-03-10 22:43:00 0
## 874 2021-03-10 22:43:00 0
## 875 2021-03-10 22:43:00 0
## 876 2021-03-10 22:43:00 0
## 877 2021-03-09 17:52:02 0
## 878 2021-03-08 03:36:34 1
## 879 2021-03-08 03:41:47 0
## 880 2021-03-10 23:06:54 1
## 881 2021-03-09 19:17:12 0
## 882 2021-03-08 02:27:48 0
## 883 2021-03-09 16:38:11 0
## 884 2021-03-06 18:58:00 1
## 885 2021-03-06 18:58:00 1
## 886 2021-03-09 16:14:08 0
## 887 2021-03-09 16:14:08 0
## 888 2021-03-11 19:23:37 0
## 889 2021-03-08 09:17:12 0
## 890 2021-03-08 15:34:59 0
## 891 2021-03-09 13:15:02 11
## 892 2021-03-09 13:15:02 11
## 893 2021-03-09 13:15:02 11
## 894 2021-03-09 13:15:02 11
## 895 2021-03-09 13:15:02 11
## 896 2021-03-09 13:15:02 11
## 897 2021-03-11 08:32:56 0
## 898 2021-03-09 16:46:40 1
## 899 2021-03-10 00:56:32 0
## 900 2021-03-10 00:56:32 0
## 901 2021-03-08 21:23:24 0
## 902 2021-03-08 03:59:23 0
## 903 2021-03-08 01:28:52 0
## 904 2021-03-10 07:48:57 0
## 905 2021-03-08 02:35:02 0
## 906 2021-03-08 04:15:50 0
## 907 2021-03-08 04:15:50 0
## 908 2021-03-08 05:09:10 1
## 909 2021-03-08 05:09:10 1
## 910 2021-03-08 05:38:47 0
## 911 2021-03-08 05:38:47 0
## 912 2021-03-08 02:08:55 1
## 913 2021-03-08 02:08:55 1
## 914 2021-03-08 03:18:08 0
## 915 2021-03-08 03:07:17 0
## 916 2021-03-11 20:56:12 0
233
## 917 2021-03-11 20:56:12 0
## 918 2021-03-08 01:44:40 0
## 919 2021-03-08 01:44:40 0
## 920 2021-03-08 01:44:40 0
## 921 2021-03-08 02:23:22 0
## 922 2021-03-10 10:22:36 0
## 923 2021-03-08 03:40:27 0
## 924 2021-03-08 10:39:45 0
## 925 2021-03-11 13:27:35 0
## 926 2021-03-11 13:27:35 0
## 927 2021-03-11 00:13:40 0
## 928 2021-03-08 05:11:55 0
## 929 2021-03-08 05:11:55 0
## 930 2021-03-08 16:05:35 0
## 931 2021-03-10 23:00:13 0
## 932 2021-03-08 02:09:46 2
## 933 2021-03-08 10:44:07 0
## 934 2021-03-10 14:16:04 0
## 935 2021-03-08 21:17:23 0
## 936 2021-03-08 09:28:52 0
## 937 2021-03-08 09:28:52 0
## 938 2021-03-09 19:32:42 0
## 939 2021-03-09 19:32:42 0
## 940 2021-03-09 03:08:26 0
## 941 2021-03-07 09:38:06 0
## 942 2021-03-07 09:38:06 0
## 943 2021-03-05 01:51:15 3
## 944 2021-03-09 09:10:49 0
## 945 2021-03-09 09:10:49 0
## 946 2021-03-08 01:34:56 0
## 947 2021-03-06 18:30:43 0
## 948 2021-03-09 00:59:35 1
## 949 2021-03-09 00:59:35 1
## 950 2021-03-08 06:52:08 24
## 951 2021-03-07 19:47:27 2
## 952 2021-03-08 13:03:09 0
## 953 2021-03-08 15:03:41 0
## 954 2021-03-09 20:41:15 0
## 955 2021-03-11 09:04:15 0
## 956 2021-03-08 04:47:18 0
## 957 2021-03-11 13:08:40 0
## 958 2021-03-08 19:49:52 0
## 959 2021-03-08 19:49:52 0
## 960 2021-03-08 12:35:31 0
## 961 2021-03-08 21:11:33 0
## 962 2021-03-09 18:26:48 0
## 963 2021-03-08 05:23:31 0
## 964 2021-03-09 18:56:09 0
## 965 2021-03-11 13:49:46 0
## 966 2021-03-11 21:30:27 0
## 967 2021-03-09 08:16:41 0
## 968 2021-03-08 21:13:16 0
## 969 2021-03-09 08:24:16 0
## 970 2021-03-06 16:03:22 0
234
## 971 2021-03-06 16:03:22 0
## 972 2021-03-09 12:24:09 0
## 973 2021-03-09 07:22:17 0
## 974 2021-03-09 07:22:17 0
## 975 2021-03-08 02:41:33 0
## 976 2021-03-08 02:41:33 0
## 977 2021-03-08 07:17:11 0
## 978 2021-03-09 03:25:56 0
## 979 2021-03-09 03:25:56 0
## 980 2021-03-08 21:13:59 0
## 981 2021-03-08 03:04:59 0
## 982 2021-03-08 02:37:10 0
## 983 2021-03-06 19:15:05 0
## 984 2021-03-06 19:15:05 0
## 985 2021-03-10 23:31:03 20
## 986 2021-03-08 01:45:33 1
## 987 2021-03-09 08:28:38 0
## 988 2021-03-09 22:07:37 84
## 989 2021-03-09 22:07:37 84
## 990 2021-03-09 22:07:37 84
## 991 2021-03-10 01:46:53 0
## 992 2021-03-10 01:46:53 0
## 993 2021-03-10 01:46:53 0
## 994 2021-03-07 15:10:44 0
## 995 2021-03-06 11:00:27 0
## 996 2021-03-06 11:00:27 0
## 997 2021-03-06 11:00:27 0
## 998 2021-03-08 02:03:47 1
## 999 2021-03-11 09:55:47 1
## 1000 2021-03-05 10:43:46 0
## 1001 2021-03-04 22:07:35 0
## 1002 2021-03-08 14:00:14 0
## 1003 2021-03-10 13:49:18 0
## 1004 2021-03-08 03:18:22 0
## 1005 2021-03-06 16:47:12 0
## 1006 2021-03-06 16:47:12 0
## 1007 2021-03-09 03:58:31 0
## 1008 2021-03-09 03:58:31 0
## 1009 2021-03-09 03:58:31 0
## 1010 2021-03-09 03:58:31 0
## 1011 2021-03-08 03:42:12 0
## 1012 2021-03-08 03:42:12 0
## 1013 2021-03-08 05:21:23 0
## 1014 2021-03-08 05:21:23 0
## 1015 2021-03-08 05:21:23 0
## 1016 2021-03-08 05:21:23 0
## 1017 2021-03-08 05:21:23 0
## 1018 2021-03-08 05:21:23 0
## 1019 2021-03-08 07:07:00 1
## 1020 2021-03-08 07:07:00 1
## 1021 2021-03-08 07:07:00 1
## 1022 2021-03-10 22:19:00 0
## 1023 2021-03-10 22:19:00 0
## 1024 2021-03-10 22:19:00 0
235
## 1025 2021-03-10 22:19:00 0
## 1026 2021-03-10 19:09:03 0
## 1027 2021-03-08 02:34:23 0
## 1028 2021-03-08 02:34:23 0
## 1029 2021-03-08 02:34:23 0
## 1030 2021-03-08 02:34:23 0
## 1031 2021-03-09 14:38:27 0
## 1032 2021-03-08 04:13:39 0
## 1033 2021-03-08 05:59:00 0
## 1034 2021-03-08 05:59:00 0
## 1035 2021-03-08 05:59:00 0
## 1036 2021-03-08 05:59:00 0
## 1037 2021-03-08 05:59:00 0
## 1038 2021-03-09 02:30:36 0
## 1039 2021-03-09 02:30:36 0
## 1040 2021-03-11 16:18:12 0
## 1041 2021-03-11 16:18:12 0
## 1042 2021-03-08 01:58:02 3
## 1043 2021-03-09 15:38:02 0
## 1044 2021-03-09 15:38:02 0
## 1045 2021-03-09 15:38:02 0
## 1046 2021-03-09 15:38:02 0
## 1047 2021-03-09 15:38:02 0
## 1048 2021-03-08 03:40:48 0
## 1049 2021-03-08 21:06:17 0
## 1050 2021-03-08 20:06:43 0
## 1051 2021-03-05 18:01:55 0
## 1052 2021-03-08 21:20:28 0
## 1053 2021-03-05 15:43:41 0
## 1054 2021-03-05 22:08:45 0
## 1055 2021-03-08 01:53:28 0
## 1056 2021-03-09 10:17:09 0
## 1057 2021-03-09 10:17:09 0
## 1058 2021-03-08 10:54:51 0
## 1059 2021-03-08 17:56:39 2
## 1060 2021-03-09 07:52:43 0
## 1061 2021-03-08 01:54:47 0
## 1062 2021-03-05 17:53:54 0
## 1063 2021-03-05 17:53:54 0
## 1064 2021-03-08 17:17:55 0
## 1065 2021-03-08 17:17:55 0
## 1066 2021-03-08 19:10:10 1
## 1067 2021-03-08 12:58:41 0
## 1068 2021-03-05 11:33:25 0
## 1069 2021-03-05 11:33:25 0
## 1070 2021-03-09 19:52:18 0
## 1071 2021-03-09 19:52:18 0
## 1072 2021-03-09 15:35:55 0
## 1073 2021-03-08 01:33:16 0
## 1074 2021-03-08 14:53:46 0
## 1075 2021-03-08 02:06:55 2
## 1076 2021-03-11 01:57:04 0
## 1077 2021-03-09 23:23:48 1
## 1078 2021-03-06 10:48:58 0
236
## 1079 2021-03-05 11:43:21 0
## 1080 2021-03-10 19:05:29 0
## 1081 2021-03-10 19:05:29 0
## 1082 2021-03-10 19:05:29 0
## 1083 2021-03-10 19:05:29 0
## 1084 2021-03-10 19:05:29 0
## 1085 2021-03-10 19:05:29 0
## 1086 2021-03-10 19:05:29 0
## 1087 2021-03-10 19:05:29 0
## 1088 2021-03-08 06:42:41 0
## 1089 2021-03-08 06:42:41 0
## 1090 2021-03-08 06:42:41 0
## 1091 2021-03-08 06:42:41 0
## 1092 2021-03-08 06:42:41 0
## 1093 2021-03-11 16:32:15 0
## 1094 2021-03-11 16:32:15 0
## 1095 2021-03-08 04:53:29 0
## 1096 2021-03-08 04:53:29 0
## 1097 2021-03-04 20:35:19 0
## 1098 2021-03-07 17:06:45 1
## 1099 2021-03-11 16:52:18 0
## 1100 2021-03-09 04:00:19 0
## 1101 2021-03-10 19:37:26 6
## 1102 2021-03-09 18:37:25 0
## 1103 2021-03-11 23:06:48 0
## 1104 2021-03-09 19:27:50 0
## 1105 2021-03-09 11:51:49 0
## 1106 2021-03-09 11:51:49 0
## 1107 2021-03-08 02:54:39 4
## 1108 2021-03-08 01:51:41 0
## 1109 2021-03-08 02:05:58 1
## 1110 2021-03-08 02:41:51 0
## 1111 2021-03-10 05:53:35 0
## 1112 2021-03-05 23:07:05 0
## 1113 2021-03-08 04:02:48 0
## 1114 2021-03-11 11:50:32 0
## 1115 2021-03-08 03:31:00 1
## 1116 2021-03-08 13:35:09 0
## 1117 2021-03-08 13:35:09 0
## 1118 2021-03-09 00:20:12 0
## 1119 2021-03-08 17:15:23 1
## 1120 2021-03-08 14:41:17 0
## 1121 2021-03-08 01:50:07 0
## 1122 2021-03-08 04:23:00 0
## 1123 2021-03-10 12:32:25 0
## 1124 2021-03-10 12:32:25 0
## 1125 2021-03-10 12:32:25 0
## 1126 2021-03-10 12:32:25 0
## 1127 2021-03-10 12:32:25 0
## 1128 2021-03-10 12:32:25 0
## 1129 2021-03-10 12:32:25 0
## 1130 2021-03-08 16:19:32 0
## 1131 2021-03-08 16:19:32 0
## 1132 2021-03-08 03:23:39 0
237
## 1133 2021-03-08 03:23:39 0
## 1134 2021-03-11 03:02:42 0
## 1135 2021-03-08 17:16:16 0
## 1136 2021-03-08 06:58:34 0
## 1137 2021-03-08 19:25:31 0
## 1138 2021-03-09 23:48:12 0
## 1139 2021-03-11 12:01:23 0
## 1140 2021-03-11 12:01:23 0
## 1141 2021-03-08 22:28:18 0
## 1142 2021-03-08 11:19:58 0
## 1143 2021-03-08 16:42:50 0
## 1144 2021-03-10 03:31:43 0
## 1145 2021-03-05 21:34:06 0
## 1146 2021-03-05 21:34:06 0
## 1147 2021-03-08 12:41:12 0
## 1148 2021-03-10 08:16:12 0
## 1149 2021-03-09 18:37:34 0
## 1150 2021-03-08 06:41:17 3
## 1151 2021-03-08 06:41:17 3
## 1152 2021-03-08 17:52:13 0
## 1153 2021-03-08 16:41:33 0
## 1154 2021-03-08 01:17:22 10
## 1155 2021-03-06 16:12:12 10
## 1156 2021-03-06 16:12:12 10
## 1157 2021-03-06 16:12:12 10
## 1158 2021-03-07 15:20:15 0
## 1159 2021-03-07 07:54:50 0
## 1160 2021-03-07 07:54:50 0
## 1161 2021-03-08 07:26:39 0
## 1162 2021-03-09 21:29:18 0
## 1163 2021-03-08 15:32:27 0
## 1164 2021-03-07 16:36:16 16
## 1165 2021-03-07 16:36:16 16
## 1166 2021-03-08 02:11:16 7
## 1167 2021-03-08 18:59:36 0
## 1168 2021-03-09 14:54:02 0
## 1169 2021-03-08 09:50:43 0
## 1170 2021-03-08 01:21:12 1
## 1171 2021-03-09 19:26:04 0
## 1172 2021-03-09 19:26:04 0
## 1173 2021-03-07 02:00:05 0
## 1174 2021-03-07 02:00:05 0
## 1175 2021-03-08 21:24:48 0
## 1176 2021-03-08 06:14:51 0
## 1177 2021-03-08 06:14:51 0
## 1178 2021-03-08 02:20:57 1
## 1179 2021-03-08 09:52:25 0
## 1180 2021-03-08 16:11:15 0
## 1181 2021-03-08 01:27:04 0
## 1182 2021-03-08 14:51:44 0
## 1183 2021-03-08 14:51:44 0
## 1184 2021-03-08 20:48:24 1
## 1185 2021-03-09 17:46:42 0
## 1186 2021-03-08 02:08:37 0
238
## 1187 2021-03-08 02:08:37 0
## 1188 2021-03-08 02:08:37 0
## 1189 2021-03-08 13:58:03 0
## 1190 2021-03-07 16:49:13 0
## 1191 2021-03-07 16:49:13 0
## 1192 2021-03-05 10:50:37 0
## 1193 2021-03-10 04:36:53 0
## 1194 2021-03-10 04:36:53 0
## 1195 2021-03-10 04:36:53 0
## 1196 2021-03-10 04:36:53 0
## 1197 2021-03-05 00:42:47 0
## 1198 2021-03-05 00:42:47 0
## 1199 2021-03-05 00:42:47 0
## 1200 2021-03-05 00:42:47 0
## 1201 2021-03-10 00:23:40 0
## 1202 2021-03-10 00:23:40 0
## 1203 2021-03-10 00:23:40 0
## 1204 2021-03-06 00:21:20 0
## 1205 2021-03-06 00:21:20 0
## 1206 2021-03-08 15:46:01 11
## 1207 2021-03-08 15:46:01 11
## 1208 2021-03-08 15:46:01 11
## 1209 2021-03-08 15:46:01 11
## 1210 2021-03-08 18:20:46 0
## 1211 2021-03-08 18:20:46 0
## 1212 2021-03-09 00:32:10 0
## 1213 2021-03-08 19:37:08 0
## 1214 2021-03-10 12:00:39 0
## 1215 2021-03-11 12:52:55 0
## 1216 2021-03-11 12:52:55 0
## 1217 2021-03-11 12:52:55 0
## 1218 2021-03-08 15:59:39 0
## 1219 2021-03-11 01:58:21 0
## 1220 2021-03-09 15:48:04 0
## 1221 2021-03-09 15:48:04 0
## 1222 2021-03-09 15:48:33 0
## 1223 2021-03-08 18:35:21 1
## 1224 2021-03-08 01:35:05 0
## 1225 2021-03-08 03:20:09 0
## 1226 2021-03-08 03:20:09 0
## 1227 2021-03-08 07:42:05 0
## 1228 2021-03-08 07:42:05 0
## 1229 2021-03-04 21:49:40 0
## 1230 2021-03-04 21:49:40 0
## 1231 2021-03-04 21:49:40 0
## 1232 2021-03-04 21:49:40 0
## 1233 2021-03-04 21:49:40 0
## 1234 2021-03-07 11:10:54 0
## 1235 2021-03-05 23:29:03 0
## 1236 2021-03-08 08:10:08 3
## 1237 2021-03-08 08:10:08 3
## 1238 2021-03-06 15:38:35 0
## 1239 2021-03-07 09:13:34 0
## 1240 2021-03-07 09:13:34 0
239
## 1241 2021-03-08 05:07:10 1
## 1242 2021-03-08 05:07:10 1
## 1243 2021-03-09 20:57:42 0
## 1244 2021-03-09 20:57:42 0
## 1245 2021-03-08 13:49:02 0
## 1246 2021-03-08 16:11:14 0
## 1247 2021-03-09 19:57:12 0
## 1248 2021-03-09 08:26:20 0
## 1249 2021-03-08 01:35:29 0
## 1250 2021-03-08 13:20:24 0
## 1251 2021-03-08 20:58:26 0
## 1252 2021-03-08 20:58:26 0
## 1253 2021-03-08 20:58:26 0
## 1254 2021-03-08 20:58:26 0
## 1255 2021-03-06 08:10:25 1
## 1256 2021-03-08 02:02:07 0
## 1257 2021-03-08 22:45:32 1
## 1258 2021-03-05 17:12:58 0
## 1259 2021-03-08 16:17:08 1
## 1260 2021-03-08 16:17:08 1
## 1261 2021-03-08 16:17:08 1
## 1262 2021-03-10 04:17:55 0
## 1263 2021-03-10 04:17:55 0
## 1264 2021-03-10 04:17:55 0
## 1265 2021-03-09 10:37:02 0
## 1266 2021-03-08 16:39:30 0
## 1267 2021-03-07 15:34:07 0
## 1268 2021-03-08 19:02:35 0
## 1269 2021-03-05 10:17:30 51
## 1270 2021-03-08 09:01:04 0
## 1271 2021-03-05 00:59:51 6
## 1272 2021-03-08 05:21:51 0
## 1273 2021-03-08 05:21:51 0
## 1274 2021-03-08 05:21:51 0
## 1275 2021-03-08 20:59:42 0
## 1276 2021-03-11 08:57:32 0
## 1277 2021-03-07 11:56:31 2
## 1278 2021-03-05 16:47:49 0
## 1279 2021-03-05 16:47:49 0
## 1280 2021-03-05 16:47:49 0
## 1281 2021-03-08 20:19:07 0
## 1282 2021-03-08 15:50:30 0
## 1283 2021-03-08 16:47:01 0
## 1284 2021-03-08 16:47:01 0
## 1285 2021-03-08 16:47:01 0
## 1286 2021-03-05 10:08:01 1
## 1287 2021-03-09 13:14:27 0
## 1288 2021-03-08 01:30:37 0
## 1289 2021-03-08 01:30:37 0
## 1290 2021-03-05 21:31:13 0
## 1291 2021-03-08 02:17:46 0
## 1292 2021-03-10 06:26:09 0
## 1293 2021-03-08 03:23:58 0
## 1294 2021-03-08 03:23:58 0
240
## 1295 2021-03-08 03:23:58 0
## 1296 2021-03-08 03:23:58 0
## 1297 2021-03-08 03:23:58 0
## 1298 2021-03-08 03:23:58 0
## 1299 2021-03-08 01:24:46 0
## 1300 2021-03-08 01:24:46 0
## 1301 2021-03-09 17:13:31 0
## 1302 2021-03-08 17:03:52 0
## 1303 2021-03-10 17:11:28 0
## 1304 2021-03-10 07:20:08 1
## 1305 2021-03-10 17:42:37 0
## 1306 2021-03-10 17:42:37 0
## 1307 2021-03-08 14:52:39 0
## 1308 2021-03-11 08:59:19 0
## 1309 2021-03-08 13:47:12 0
## 1310 2021-03-11 14:55:49 0
## 1311 2021-03-10 11:48:05 4
## 1312 2021-03-08 20:05:29 0
## 1313 2021-03-07 18:16:21 0
## 1314 2021-03-07 18:16:21 0
## 1315 2021-03-10 06:56:06 0
## 1316 2021-03-08 19:01:25 0
## 1317 2021-03-05 11:33:52 0
## 1318 2021-03-05 11:33:52 0
## 1319 2021-03-05 11:33:52 0
## 1320 2021-03-09 09:30:45 0
## 1321 2021-03-09 09:30:45 0
## 1322 2021-03-09 09:30:45 0
## 1323 2021-03-08 03:11:22 1
## 1324 2021-03-05 11:58:30 1
## 1325 2021-03-10 00:11:25 0
## 1326 2021-03-08 05:28:26 0
## 1327 2021-03-08 20:46:22 0
## 1328 2021-03-08 01:34:00 0
## 1329 2021-03-09 11:01:44 0
## 1330 2021-03-09 11:01:44 0
## 1331 2021-03-10 22:04:29 0
## 1332 2021-03-11 18:42:06 0
## 1333 2021-03-08 18:43:00 0
## 1334 2021-03-09 01:33:41 0
## 1335 2021-03-09 01:33:41 0
## 1336 2021-03-10 17:37:46 0
## 1337 2021-03-09 21:38:01 0
## 1338 2021-03-09 21:38:01 0
## 1339 2021-03-09 05:50:04 1
## 1340 2021-03-08 16:52:27 1
## 1341 2021-03-08 01:36:25 0
## 1342 2021-03-08 09:30:13 0
## 1343 2021-03-06 15:11:51 0
## 1344 2021-03-09 02:55:03 0
## 1345 2021-03-09 02:55:03 0
## 1346 2021-03-08 07:11:38 0
## 1347 2021-03-08 15:56:18 0
## 1348 2021-03-08 15:56:18 0
241
## 1349 2021-03-08 15:56:18 0
## 1350 2021-03-08 15:56:18 0
## 1351 2021-03-08 15:56:18 0
## 1352 2021-03-08 15:56:18 0
## 1353 2021-03-08 15:02:40 0
## 1354 2021-03-08 15:02:40 0
## 1355 2021-03-08 23:16:36 0
## 1356 2021-03-08 12:55:45 12
## 1357 2021-03-08 18:00:48 0
## 1358 2021-03-08 12:20:56 2
## 1359 2021-03-08 13:56:59 0
## 1360 2021-03-08 17:50:13 0
## 1361 2021-03-10 19:03:28 0
## 1362 2021-03-08 22:40:17 0
## 1363 2021-03-09 12:33:02 1
## 1364 2021-03-11 08:35:24 1
## 1365 2021-03-08 19:40:31 0
## 1366 2021-03-08 19:40:31 0
## 1367 2021-03-07 14:45:55 0
## 1368 2021-03-07 14:45:55 0
## 1369 2021-03-07 14:45:55 0
## 1370 2021-03-07 18:10:48 0
## 1371 2021-03-07 19:37:59 1
## 1372 2021-03-10 13:35:40 0
## 1373 2021-03-10 16:10:49 1
## 1374 2021-03-10 16:10:49 1
## 1375 2021-03-10 16:10:49 1
## 1376 2021-03-10 16:10:49 1
## 1377 2021-03-10 16:10:49 1
## 1378 2021-03-10 16:10:49 1
## 1379 2021-03-10 16:10:49 1
## 1380 2021-03-07 13:04:58 0
## 1381 2021-03-10 15:26:16 0
## 1382 2021-03-10 15:26:16 0
## 1383 2021-03-10 04:21:31 1
## 1384 2021-03-08 02:58:14 0
## 1385 2021-03-08 02:58:14 0
## 1386 2021-03-10 10:56:38 0
## 1387 2021-03-09 19:46:06 0
## 1388 2021-03-09 19:46:06 0
## 1389 2021-03-08 10:53:59 0
## 1390 2021-03-06 03:39:14 1
## 1391 2021-03-06 03:39:14 1
## 1392 2021-03-08 04:01:19 0
## 1393 2021-03-08 04:01:19 0
## 1394 2021-03-08 04:01:19 0
## 1395 2021-03-08 02:14:49 3
## 1396 2021-03-07 01:01:46 0
## 1397 2021-03-07 01:01:46 0
## 1398 2021-03-08 21:05:42 0
## 1399 2021-03-06 16:21:33 0
## 1400 2021-03-06 16:21:33 0
## 1401 2021-03-06 16:21:33 0
## 1402 2021-03-06 16:21:33 0
242
## 1403 2021-03-06 16:21:33 0
## 1404 2021-03-06 16:21:33 0
## 1405 2021-03-09 23:21:07 0
## 1406 2021-03-09 23:21:07 0
## 1407 2021-03-08 05:13:28 0
## 1408 2021-03-10 07:47:37 0
## 1409 2021-03-08 12:14:21 0
## 1410 2021-03-09 19:16:19 0
## 1411 2021-03-09 19:16:19 0
## 1412 2021-03-07 15:26:18 3
## 1413 2021-03-10 17:35:22 0
## 1414 2021-03-10 17:35:22 0
## 1415 2021-03-10 17:35:22 0
## 1416 2021-03-09 03:36:43 0
## 1417 2021-03-08 23:42:18 0
## 1418 2021-03-06 01:12:54 0
## 1419 2021-03-06 01:12:54 0
## 1420 2021-03-06 01:12:54 0
## 1421 2021-03-06 01:12:54 0
## 1422 2021-03-06 01:12:54 0
## 1423 2021-03-05 17:52:17 0
## 1424 2021-03-09 20:27:42 0
## 1425 2021-03-08 07:08:46 0
## 1426 2021-03-07 08:30:00 0
## 1427 2021-03-08 18:40:52 73
## 1428 2021-03-10 17:48:41 0
## 1429 2021-03-10 17:48:41 0
## 1430 2021-03-10 17:48:41 0
## 1431 2021-03-10 17:48:41 0
## 1432 2021-03-08 05:36:50 0
## 1433 2021-03-09 19:04:04 0
## 1434 2021-03-08 20:56:51 0
## 1435 2021-03-10 12:08:44 0
## 1436 2021-03-10 23:36:01 0
## 1437 2021-03-08 16:46:42 0
## 1438 2021-03-08 16:46:42 0
## 1439 2021-03-10 15:32:33 0
## 1440 2021-03-10 15:32:33 0
## 1441 2021-03-10 15:32:33 0
## 1442 2021-03-08 16:49:29 0
## 1443 2021-03-10 18:57:20 0
## 1444 2021-03-10 21:06:50 0
## 1445 2021-03-10 21:06:50 0
## 1446 2021-03-08 07:28:38 0
## 1447 2021-03-08 02:02:00 0
## 1448 2021-03-09 18:32:40 1
## 1449 2021-03-08 15:21:49 0
## 1450 2021-03-08 15:21:49 0
## 1451 2021-03-11 01:09:28 0
## 1452 2021-03-08 21:20:39 0
## 1453 2021-03-11 22:44:01 0
## 1454 2021-03-07 13:13:24 0
## 1455 2021-03-08 12:48:28 0
## 1456 2021-03-08 02:21:21 1
243
## 1457 2021-03-08 12:56:26 0
## 1458 2021-03-08 12:56:26 0
## 1459 2021-03-09 09:00:25 1
## 1460 2021-03-09 09:00:25 1
## 1461 2021-03-09 09:00:25 1
## 1462 2021-03-07 22:48:32 0
## 1463 2021-03-08 03:21:05 3
## 1464 2021-03-07 16:54:46 0
## 1465 2021-03-11 08:07:04 4
## 1466 2021-03-11 08:07:04 4
## 1467 2021-03-11 08:07:04 4
## 1468 2021-03-09 14:59:45 0
## 1469 2021-03-09 14:59:45 0
## 1470 2021-03-09 16:09:37 0
## 1471 2021-03-09 16:09:37 0
## 1472 2021-03-11 14:56:39 0
## 1473 2021-03-11 14:56:39 0
## 1474 2021-03-11 14:56:39 0
## 1475 2021-03-08 06:20:17 0
## 1476 2021-03-10 03:31:27 1
## 1477 2021-03-10 03:31:27 1
## 1478 2021-03-10 03:31:27 1
## 1479 2021-03-08 21:30:22 0
## 1480 2021-03-08 21:30:22 0
## 1481 2021-03-08 06:17:21 0
## 1482 2021-03-10 23:48:05 0
## 1483 2021-03-08 18:55:51 0
## 1484 2021-03-08 18:51:49 0
## 1485 2021-03-08 03:37:51 0
## 1486 2021-03-09 11:58:45 0
## 1487 2021-03-07 23:23:02 0
## 1488 2021-03-07 23:23:02 0
## 1489 2021-03-07 23:23:02 0
## 1490 2021-03-08 19:56:25 0
## 1491 2021-03-08 04:00:33 1
## 1492 2021-03-10 20:16:42 0
## 1493 2021-03-08 22:59:58 0
## 1494 2021-03-10 15:23:04 0
## 1495 2021-03-09 02:46:49 0
## 1496 2021-03-09 02:46:49 0
## 1497 2021-03-08 13:40:00 0
## 1498 2021-03-09 08:26:45 0
## 1499 2021-03-08 02:52:09 0
## 1500 2021-03-08 02:52:09 0
## 1501 2021-03-08 02:52:09 0
## 1502 2021-03-10 03:26:39 0
## 1503 2021-03-10 03:26:39 0
## 1504 2021-03-08 11:39:32 1
## 1505 2021-03-08 11:39:32 1
## 1506 2021-03-09 01:50:29 0
## 1507 2021-03-08 15:17:14 0
## 1508 2021-03-08 16:31:40 1
## 1509 2021-03-08 16:31:40 1
## 1510 2021-03-08 18:27:28 0
244
## 1511 2021-03-09 12:46:23 0
## 1512 2021-03-09 15:24:46 1
## 1513 2021-03-11 03:46:10 1
## 1514 2021-03-04 18:00:09 0
## 1515 2021-03-08 18:06:53 2
## 1516 2021-03-09 11:20:45 0
## 1517 2021-03-09 11:20:45 0
## 1518 2021-03-09 11:20:45 0
## 1519 2021-03-08 13:18:51 0
## 1520 2021-03-09 05:34:23 0
## 1521 2021-03-09 05:34:23 0
## 1522 2021-03-10 13:04:01 1
## 1523 2021-03-08 01:43:35 3
## 1524 2021-03-08 08:45:50 0
## 1525 2021-03-08 03:40:40 1
## 1526 2021-03-08 03:40:40 1
## 1527 2021-03-05 17:47:54 0
## 1528 2021-03-08 21:29:33 0
## 1529 2021-03-08 07:39:45 0
## 1530 2021-03-06 12:00:27 0
## 1531 2021-03-11 00:06:29 0
## 1532 2021-03-11 15:31:04 0
## 1533 2021-03-11 15:31:04 0
## 1534 2021-03-11 15:31:04 0
## 1535 2021-03-08 21:41:37 0
## 1536 2021-03-08 21:41:37 0
## 1537 2021-03-08 21:41:37 0
## 1538 2021-03-08 14:21:32 0
## 1539 2021-03-09 15:13:46 0
## 1540 2021-03-05 20:56:49 0
## 1541 2021-03-08 03:01:26 0
## 1542 2021-03-10 01:00:04 0
## 1543 2021-03-08 04:42:24 0
## 1544 2021-03-08 18:48:41 0
## 1545 2021-03-08 01:59:49 0
## 1546 2021-03-08 16:04:58 1
## 1547 2021-03-08 05:38:36 0
## 1548 2021-03-08 01:59:07 0
## 1549 2021-03-08 01:59:07 0
## 1550 2021-03-08 06:23:27 0
## 1551 2021-03-08 13:20:27 0
## 1552 2021-03-07 19:36:00 6
## 1553 2021-03-08 13:39:27 0
## 1554 2021-03-08 13:39:27 0
## 1555 2021-03-10 11:54:57 0
## 1556 2021-03-10 11:54:57 0
## 1557 2021-03-10 11:54:57 0
## 1558 2021-03-10 11:54:57 0
## 1559 2021-03-05 17:54:09 0
## 1560 2021-03-08 19:27:32 0
## 1561 2021-03-08 19:27:32 0
## 1562 2021-03-08 19:27:32 0
## 1563 2021-03-08 19:27:32 0
## 1564 2021-03-11 00:05:29 0
245
## 1565 2021-03-09 19:08:56 0
## 1566 2021-03-10 18:09:41 0
## 1567 2021-03-08 15:19:05 0
## 1568 2021-03-09 10:42:48 0
## 1569 2021-03-09 10:42:48 0
## 1570 2021-03-08 02:21:18 0
## 1571 2021-03-04 16:29:07 0
## 1572 2021-03-07 02:07:27 0
## 1573 2021-03-09 10:15:42 1
## 1574 2021-03-09 02:31:26 0
## 1575 2021-03-08 15:30:56 0
## 1576 2021-03-09 08:36:55 0
## 1577 2021-03-07 12:08:13 1
## 1578 2021-03-07 12:08:13 1
## 1579 2021-03-08 12:16:36 0
## 1580 2021-03-08 12:16:36 0
## 1581 2021-03-08 12:16:36 0
## 1582 2021-03-08 12:16:36 0
## 1583 2021-03-08 08:40:28 14
## 1584 2021-03-08 08:40:28 14
## 1585 2021-03-08 21:08:52 0
## 1586 2021-03-08 21:08:52 0
## 1587 2021-03-08 21:08:52 0
## 1588 2021-03-08 21:08:52 0
## 1589 2021-03-10 15:28:23 0
## 1590 2021-03-10 15:28:23 0
## 1591 2021-03-08 14:14:48 0
## 1592 2021-03-09 12:02:43 0
## 1593 2021-03-08 19:45:58 0
## 1594 2021-03-08 12:57:16 0
## 1595 2021-03-09 18:16:20 0
## 1596 2021-03-10 15:16:58 0
## 1597 2021-03-09 15:20:09 0
## 1598 2021-03-09 15:20:09 0
## 1599 2021-03-08 12:09:02 1
## 1600 2021-03-08 12:09:02 1
## 1601 2021-03-11 11:05:41 1
## 1602 2021-03-10 02:07:18 1
## 1603 2021-03-10 04:13:10 0
## 1604 2021-03-11 12:05:53 0
## 1605 2021-03-08 17:34:10 0
## 1606 2021-03-10 12:50:00 0
## 1607 2021-03-10 12:50:00 0
## 1608 2021-03-11 08:00:25 0
## 1609 2021-03-11 08:00:25 0
## 1610 2021-03-08 02:29:25 0
## 1611 2021-03-08 03:00:23 5
## 1612 2021-03-08 02:27:41 0
## 1613 2021-03-10 07:25:07 0
## 1614 2021-03-10 17:12:14 0
## 1615 2021-03-08 08:20:51 0
## 1616 2021-03-08 08:20:51 0
## 1617 2021-03-08 08:20:51 0
## 1618 2021-03-08 09:42:17 0
246
## 1619 2021-03-08 05:21:44 0
## 1620 2021-03-08 05:21:44 0
## 1621 2021-03-08 01:35:22 0
## 1622 2021-03-08 13:11:48 0
## 1623 2021-03-08 13:15:23 0
## 1624 2021-03-08 02:19:22 0
## 1625 2021-03-08 09:32:07 0
## 1626 2021-03-08 17:04:50 0
## 1627 2021-03-10 17:25:58 0
## 1628 2021-03-07 20:40:18 0
## 1629 2021-03-08 18:48:47 0
## 1630 2021-03-08 18:48:47 0
## 1631 2021-03-09 19:41:10 1
## 1632 2021-03-08 23:00:06 1
## 1633 2021-03-08 23:00:06 1
## 1634 2021-03-08 02:33:10 0
## 1635 2021-03-09 02:12:50 0
## 1636 2021-03-08 08:35:28 0
## 1637 2021-03-08 08:35:28 0
## 1638 2021-03-08 07:45:57 0
## 1639 2021-03-11 15:11:32 0
## 1640 2021-03-07 18:24:38 1
## 1641 2021-03-07 18:24:38 1
## 1642 2021-03-07 18:24:38 1
## 1643 2021-03-07 18:24:38 1
## 1644 2021-03-09 11:23:09 0
## 1645 2021-03-08 11:42:40 4
## 1646 2021-03-08 10:09:12 0
## 1647 2021-03-08 01:47:04 0
## 1648 2021-03-09 14:30:04 0
## 1649 2021-03-11 03:53:50 0
## 1650 2021-03-08 04:25:15 1
## 1651 2021-03-08 18:13:20 0
## 1652 2021-03-07 07:01:10 0
## 1653 2021-03-07 07:01:10 0
## 1654 2021-03-07 07:01:10 0
## 1655 2021-03-07 07:01:10 0
## 1656 2021-03-09 01:14:29 0
## 1657 2021-03-09 01:14:29 0
## 1658 2021-03-08 02:38:17 0
## 1659 2021-03-09 09:01:36 0
## 1660 2021-03-10 21:29:41 0
## 1661 2021-03-10 21:29:41 0
## 1662 2021-03-10 21:29:41 0
## 1663 2021-03-10 21:29:41 0
## 1664 2021-03-10 21:29:41 0
## 1665 2021-03-08 02:37:19 2
## 1666 2021-03-10 01:23:28 0
## 1667 2021-03-09 20:44:18 0
## 1668 2021-03-08 03:49:22 0
## 1669 2021-03-04 16:32:41 2
## 1670 2021-03-04 16:32:41 2
## 1671 2021-03-08 02:40:53 1
## 1672 2021-03-08 02:40:53 1
247
## 1673 2021-03-08 02:40:53 1
## 1674 2021-03-08 02:40:53 1
## 1675 2021-03-08 18:29:29 0
## 1676 2021-03-08 18:29:29 0
## 1677 2021-03-08 18:29:29 0
## 1678 2021-03-08 03:55:23 1
## 1679 2021-03-08 03:55:23 1
## 1680 2021-03-08 13:26:54 0
## 1681 2021-03-08 02:35:23 0
## 1682 2021-03-07 18:24:11 0
## 1683 2021-03-07 18:24:11 0
## 1684 2021-03-05 14:47:59 0
## 1685 2021-03-11 12:48:24 0
## 1686 2021-03-08 02:29:00 0
## 1687 2021-03-08 01:52:48 0
## 1688 2021-03-08 01:52:48 0
## 1689 2021-03-07 08:19:40 43
## 1690 2021-03-08 07:52:41 0
## 1691 2021-03-09 17:51:32 0
## 1692 2021-03-05 17:11:43 0
## 1693 2021-03-09 19:08:58 0
## 1694 2021-03-09 20:32:08 0
## 1695 2021-03-08 02:36:03 0
## 1696 2021-03-06 00:28:49 0
## 1697 2021-03-09 15:57:11 0
## 1698 2021-03-08 23:39:39 0
## 1699 2021-03-08 23:39:39 0
## 1700 2021-03-08 11:16:03 0
## 1701 2021-03-09 15:31:55 1
## 1702 2021-03-11 21:52:59 0
## 1703 2021-03-08 07:17:02 0
## 1704 2021-03-09 17:12:44 0
## 1705 2021-03-09 01:47:07 1
## 1706 2021-03-04 15:18:08 0
## 1707 2021-03-07 11:02:14 0
## 1708 2021-03-10 18:16:02 1
## 1709 2021-03-08 01:42:41 0
## 1710 2021-03-07 15:25:20 0
## 1711 2021-03-08 14:37:19 0
## 1712 2021-03-08 14:37:19 0
## 1713 2021-03-09 19:39:17 0
## 1714 2021-03-09 19:39:17 0
## 1715 2021-03-09 19:39:17 0
## 1716 2021-03-09 19:39:17 0
## 1717 2021-03-08 03:05:40 0
## 1718 2021-03-08 07:15:09 0
## 1719 2021-03-08 02:14:51 0
## 1720 2021-03-10 12:28:13 0
## 1721 2021-03-08 15:54:32 0
## 1722 2021-03-08 14:34:03 0
## 1723 2021-03-08 14:34:03 0
## 1724 2021-03-09 11:35:54 0
## 1725 2021-03-09 11:35:54 0
## 1726 2021-03-08 07:15:02 0
248
## 1727 2021-03-09 21:40:58 0
## 1728 2021-03-09 21:40:58 0
## 1729 2021-03-08 04:47:49 0
## 1730 2021-03-08 10:06:44 0
## 1731 2021-03-10 22:49:14 1
## 1732 2021-03-10 22:49:14 1
## 1733 2021-03-10 22:49:14 1
## 1734 2021-03-10 22:49:14 1
## 1735 2021-03-08 07:30:17 1
## 1736 2021-03-08 18:33:54 0
## 1737 2021-03-08 11:42:34 1
## 1738 2021-03-09 08:16:53 0
## 1739 2021-03-09 08:16:53 0
## 1740 2021-03-08 02:22:02 0
## 1741 2021-03-10 23:55:47 0
## 1742 2021-03-10 23:55:47 0
## 1743 2021-03-05 03:52:22 0
## 1744 2021-03-06 20:07:59 0
## 1745 2021-03-06 20:07:59 0
## 1746 2021-03-06 20:07:59 0
## 1747 2021-03-06 20:07:59 0
## 1748 2021-03-06 20:07:59 0
## 1749 2021-03-06 20:07:59 0
## 1750 2021-03-06 20:07:59 0
## 1751 2021-03-06 20:07:59 0
## 1752 2021-03-10 23:22:47 0
## 1753 2021-03-08 16:16:54 1
## 1754 2021-03-08 16:16:54 1
## 1755 2021-03-08 16:16:54 1
## 1756 2021-03-08 16:16:54 1
## 1757 2021-03-09 08:32:15 0
## 1758 2021-03-09 08:32:15 0
## 1759 2021-03-08 06:43:21 0
## 1760 2021-03-08 06:43:21 0
## 1761 2021-03-08 10:08:11 0
## 1762 2021-03-10 13:27:32 0
## 1763 2021-03-08 18:48:02 0
## 1764 2021-03-09 05:17:26 0
## 1765 2021-03-09 05:17:26 0
## 1766 2021-03-07 22:54:57 0
## 1767 2021-03-07 22:54:57 0
## 1768 2021-03-09 23:04:25 0
## 1769 2021-03-09 23:04:25 0
## 1770 2021-03-08 18:36:29 0
## 1771 2021-03-06 20:02:48 0
## 1772 2021-03-08 03:03:20 1
## 1773 2021-03-05 03:23:53 0
## 1774 2021-03-05 03:23:53 0
## 1775 2021-03-08 13:55:42 0
## 1776 2021-03-08 13:55:42 0
## 1777 2021-03-08 13:55:42 0
## 1778 2021-03-08 13:55:42 0
## 1779 2021-03-08 03:04:16 0
## 1780 2021-03-08 03:04:16 0
249
## 1781 2021-03-08 02:05:20 0
## 1782 2021-03-10 12:48:48 0
## 1783 2021-03-08 06:42:39 0
## 1784 2021-03-05 08:06:56 0
## 1785 2021-03-09 01:18:22 0
## 1786 2021-03-09 07:09:47 0
## 1787 2021-03-10 17:49:41 0
## 1788 2021-03-10 17:49:41 0
## 1789 2021-03-10 17:49:41 0
## 1790 2021-03-10 17:49:41 0
## 1791 2021-03-09 18:34:46 0
## 1792 2021-03-09 18:34:46 0
## 1793 2021-03-04 21:39:24 0
## 1794 2021-03-04 21:39:24 0
## 1795 2021-03-07 00:03:35 0
## 1796 2021-03-09 13:32:45 0
## 1797 2021-03-09 13:32:45 0
## 1798 2021-03-08 05:14:26 0
## 1799 2021-03-08 13:56:22 0
## 1800 2021-03-08 13:56:22 0
## 1801 2021-03-06 06:42:49 0
## 1802 2021-03-08 19:45:45 4
## 1803 2021-03-11 09:59:36 2
## 1804 2021-03-11 09:59:36 2
## 1805 2021-03-08 08:34:19 0
## 1806 2021-03-04 20:22:01 4
## 1807 2021-03-08 03:12:49 0
## 1808 2021-03-10 07:57:38 0
## 1809 2021-03-06 22:21:01 21
## 1810 2021-03-06 22:21:01 21
## 1811 2021-03-07 22:11:57 0
## 1812 2021-03-07 22:11:57 0
## 1813 2021-03-11 04:14:42 0
## 1814 2021-03-08 01:32:30 0
## 1815 2021-03-07 06:06:59 0
## 1816 2021-03-09 22:38:40 0
## 1817 2021-03-08 01:34:54 11
## 1818 2021-03-09 12:52:00 0
## 1819 2021-03-09 12:52:00 0
## 1820 2021-03-09 12:52:00 0
## 1821 2021-03-09 12:52:00 0
## 1822 2021-03-10 18:05:04 0
## 1823 2021-03-10 18:05:04 0
## 1824 2021-03-10 18:05:04 0
## 1825 2021-03-10 18:05:04 0
## 1826 2021-03-08 01:34:46 2
## 1827 2021-03-08 01:50:44 2
## 1828 2021-03-09 23:18:33 0
## 1829 2021-03-09 23:18:33 0
## 1830 2021-03-10 10:17:27 1
## 1831 2021-03-10 10:17:27 1
## 1832 2021-03-08 06:03:03 0
## 1833 2021-03-10 07:29:52 2
## 1834 2021-03-10 07:29:52 2
250
## 1835 2021-03-10 07:29:52 2
## 1836 2021-03-10 07:29:52 2
## 1837 2021-03-09 14:38:12 0
## 1838 2021-03-09 14:38:12 0
## 1839 2021-03-10 07:22:21 0
## 1840 2021-03-06 00:42:10 0
## 1841 2021-03-08 02:09:40 0
## 1842 2021-03-08 02:09:40 0
## 1843 2021-03-09 09:53:15 3
## 1844 2021-03-05 17:22:37 0
## 1845 2021-03-08 08:38:15 0
## 1846 2021-03-08 08:38:15 0
## 1847 2021-03-08 02:52:40 0
## 1848 2021-03-07 15:00:18 0
## 1849 2021-03-07 15:00:18 0
## 1850 2021-03-07 15:00:18 0
## 1851 2021-03-07 15:00:18 0
## 1852 2021-03-07 15:00:18 0
## 1853 2021-03-07 15:00:18 0
## 1854 2021-03-07 15:00:18 0
## 1855 2021-03-07 15:00:18 0
## 1856 2021-03-08 12:59:08 0
## 1857 2021-03-08 12:59:08 0
## 1858 2021-03-10 14:15:05 0
## 1859 2021-03-06 20:12:50 0
## 1860 2021-03-06 20:12:50 0
## 1861 2021-03-05 12:47:40 0
## 1862 2021-03-09 17:33:45 0
## 1863 2021-03-09 00:18:59 5
## 1864 2021-03-09 00:18:59 5
## 1865 2021-03-09 18:47:54 0
## 1866 2021-03-08 01:01:05 0
## 1867 2021-03-05 18:59:44 0
## 1868 2021-03-05 18:59:44 0
## 1869 2021-03-09 16:50:44 0
## 1870 2021-03-09 16:50:44 0
## 1871 2021-03-08 13:05:47 0
## 1872 2021-03-09 18:26:05 0
## 1873 2021-03-06 22:46:06 0
## 1874 2021-03-06 22:46:06 0
## 1875 2021-03-06 22:46:06 0
## 1876 2021-03-06 22:46:06 0
## 1877 2021-03-05 14:55:23 3
## 1878 2021-03-08 16:14:53 0
## 1879 2021-03-08 19:30:23 0
## 1880 2021-03-09 20:06:11 0
## 1881 2021-03-05 16:57:28 0
## 1882 2021-03-10 12:43:28 0
## 1883 2021-03-08 16:51:06 0
## 1884 2021-03-08 04:43:01 0
## 1885 2021-03-08 04:43:01 0
## 1886 2021-03-11 12:58:30 3
## 1887 2021-03-08 21:11:34 0
## 1888 2021-03-05 11:50:28 0
251
## 1889 2021-03-08 12:29:16 0
## 1890 2021-03-09 10:18:55 0
## 1891 2021-03-08 01:24:14 0
## 1892 2021-03-05 21:21:41 0
## 1893 2021-03-07 08:06:08 2
## 1894 2021-03-08 11:21:54 0
## 1895 2021-03-09 08:12:25 0
## 1896 2021-03-09 08:12:25 0
## 1897 2021-03-09 04:39:36 0
## 1898 2021-03-08 07:49:33 0
## 1899 2021-03-08 02:09:28 0
## 1900 2021-03-07 14:19:08 0
## 1901 2021-03-08 06:57:08 0
## 1902 2021-03-08 06:57:08 0
## 1903 2021-03-08 03:37:07 0
## 1904 2021-03-10 01:21:14 0
## 1905 2021-03-10 01:21:14 0
## 1906 2021-03-07 10:59:29 0
## 1907 2021-03-08 13:34:59 0
## 1908 2021-03-07 18:00:39 0
## 1909 2021-03-09 18:59:32 0
## 1910 2021-03-09 18:59:32 0
## 1911 2021-03-09 19:20:18 0
## 1912 2021-03-04 17:58:28 7
## 1913 2021-03-04 17:58:28 7
## 1914 2021-03-08 17:50:11 0
## 1915 2021-03-08 17:50:11 0
## 1916 2021-03-10 21:08:32 0
## 1917 2021-03-10 21:08:32 0
## 1918 2021-03-10 13:37:42 0
## 1919 2021-03-10 13:37:42 0
## 1920 2021-03-08 23:05:36 1
## 1921 2021-03-09 01:51:09 0
## 1922 2021-03-08 05:24:20 0
## 1923 2021-03-09 19:24:06 0
## 1924 2021-03-05 00:23:43 0
## 1925 2021-03-08 17:29:54 0
## 1926 2021-03-09 06:27:47 1
## 1927 2021-03-09 06:27:47 1
## 1928 2021-03-09 17:47:35 0
## 1929 2021-03-07 11:05:36 1
## 1930 2021-03-07 11:05:36 1
## 1931 2021-03-10 11:59:20 0
## 1932 2021-03-09 13:30:00 2
## 1933 2021-03-08 08:56:03 0
## 1934 2021-03-08 08:56:03 0
## 1935 2021-03-08 12:21:55 1
## 1936 2021-03-08 03:43:34 0
## 1937 2021-03-08 02:17:15 0
## 1938 2021-03-08 02:17:15 0
## 1939 2021-03-10 08:17:54 3
## 1940 2021-03-10 08:17:54 3
## 1941 2021-03-08 02:10:21 2
## 1942 2021-03-07 13:51:09 0
252
## 1943 2021-03-07 13:51:09 0
## 1944 2021-03-07 13:51:09 0
## 1945 2021-03-07 15:48:02 1
## 1946 2021-03-07 15:51:13 0
## 1947 2021-03-06 10:51:46 0
## 1948 2021-03-08 12:22:48 0
## 1949 2021-03-08 20:22:33 0
## 1950 2021-03-08 20:22:33 0
## 1951 2021-03-08 20:22:33 0
## 1952 2021-03-08 20:22:33 0
## 1953 2021-03-04 17:03:50 0
## 1954 2021-03-04 17:03:50 0
## 1955 2021-03-08 02:39:37 0
## 1956 2021-03-11 13:42:49 0
## 1957 2021-03-11 13:42:49 0
## 1958 2021-03-10 15:02:39 0
## 1959 2021-03-10 15:02:39 0
## 1960 2021-03-08 22:53:06 0
## 1961 2021-03-08 17:33:53 0
## 1962 2021-03-11 13:50:39 1
## 1963 2021-03-09 20:42:28 1
## 1964 2021-03-08 21:54:48 0
## 1965 2021-03-09 18:19:07 0
## 1966 2021-03-09 18:19:07 0
## 1967 2021-03-09 06:44:31 0
## 1968 2021-03-09 06:44:31 0
## 1969 2021-03-08 19:22:53 0
## 1970 2021-03-08 19:22:53 0
## 1971 2021-03-09 00:02:42 0
## 1972 2021-03-09 00:02:42 0
## 1973 2021-03-10 20:12:34 0
## 1974 2021-03-10 20:12:34 0
## 1975 2021-03-10 20:12:34 0
## 1976 2021-03-10 20:12:34 0
## 1977 2021-03-10 20:12:34 0
## 1978 2021-03-08 01:27:05 0
## 1979 2021-03-08 02:27:07 0
## 1980 2021-03-04 19:40:10 0
## 1981 2021-03-04 19:40:10 0
## 1982 2021-03-04 19:40:10 0
## 1983 2021-03-07 20:10:09 0
## 1984 2021-03-08 21:49:18 0
## 1985 2021-03-07 14:51:20 0
## 1986 2021-03-08 17:52:07 0
## 1987 2021-03-09 22:13:40 1
## 1988 2021-03-08 15:07:07 0
## 1989 2021-03-10 10:12:02 0
## 1990 2021-03-10 10:12:02 0
## 1991 2021-03-08 02:25:53 0
## 1992 2021-03-08 17:54:52 0
## 1993 2021-03-07 13:52:11 0
## 1994 2021-03-07 13:52:11 0
## 1995 2021-03-09 07:31:37 0
## 1996 2021-03-09 06:35:49 0
253
## 1997 2021-03-11 12:28:19 0
## 1998 2021-03-11 12:28:19 0
## 1999 2021-03-09 12:52:49 0
## 2000 2021-03-09 12:52:49 0
## 2001 2021-03-09 12:52:49 0
## 2002 2021-03-09 12:52:49 0
## 2003 2021-03-09 12:52:49 0
## 2004 2021-03-08 20:53:26 0
## 2005 2021-03-07 04:41:36 0
## 2006 2021-03-07 04:41:36 0
## 2007 2021-03-08 19:04:06 0
## 2008 2021-03-08 04:49:06 0
## 2009 2021-03-08 07:14:16 0
## 2010 2021-03-08 16:51:36 0
## 2011 2021-03-08 16:51:36 0
## 2012 2021-03-08 16:05:33 0
## 2013 2021-03-08 02:06:23 0
## 2014 2021-03-08 02:06:23 0
## 2015 2021-03-08 02:06:23 0
## 2016 2021-03-09 23:59:18 0
## 2017 2021-03-07 10:24:36 2
## 2018 2021-03-10 08:29:30 0
## 2019 2021-03-09 19:19:39 0
## 2020 2021-03-08 13:31:36 0
## 2021 2021-03-09 08:32:36 0
## 2022 2021-03-11 14:11:28 1
## 2023 2021-03-10 13:35:17 0
## 2024 2021-03-10 17:02:11 0
## 2025 2021-03-08 16:38:24 0
## 2026 2021-03-08 07:48:39 1
## 2027 2021-03-06 21:07:31 0
## 2028 2021-03-06 21:07:31 0
## 2029 2021-03-08 04:57:43 0
## 2030 2021-03-08 20:22:46 0
## 2031 2021-03-10 04:41:07 0
## 2032 2021-03-11 10:09:31 4
## 2033 2021-03-11 10:09:31 4
## 2034 2021-03-08 09:28:53 5
## 2035 2021-03-08 20:14:36 1
## 2036 2021-03-08 20:17:42 0
## 2037 2021-03-08 20:17:42 0
## 2038 2021-03-09 18:46:32 0
## 2039 2021-03-09 18:46:32 0
## 2040 2021-03-04 16:42:50 0
## 2041 2021-03-04 16:42:50 0
## 2042 2021-03-04 16:42:50 0
## 2043 2021-03-10 08:10:59 0
## 2044 2021-03-10 08:10:59 0
## 2045 2021-03-10 07:04:21 0
## 2046 2021-03-10 07:04:21 0
## 2047 2021-03-10 07:04:21 0
## 2048 2021-03-08 13:37:39 0
## 2049 2021-03-09 19:11:23 0
## 2050 2021-03-08 03:11:24 1
254
## 2051 2021-03-08 03:11:24 1
## 2052 2021-03-08 14:38:11 0
## 2053 2021-03-08 12:35:43 0
## 2054 2021-03-10 15:12:49 0
## 2055 2021-03-08 03:29:22 0
## 2056 2021-03-09 18:59:43 0
## 2057 2021-03-09 18:59:43 0
## 2058 2021-03-09 18:59:43 0
## 2059 2021-03-09 18:59:43 0
## 2060 2021-03-08 13:11:56 1
## 2061 2021-03-07 14:50:40 0
## 2062 2021-03-07 17:04:54 0
## 2063 2021-03-08 04:06:13 0
## 2064 2021-03-10 03:33:15 2
## 2065 2021-03-08 21:25:33 0
## 2066 2021-03-09 13:44:23 0
## 2067 2021-03-09 13:44:23 0
## 2068 2021-03-08 01:55:23 1
## 2069 2021-03-08 03:02:13 0
## 2070 2021-03-09 09:59:15 0
## 2071 2021-03-09 09:59:15 0
## 2072 2021-03-09 09:59:15 0
## 2073 2021-03-09 09:59:15 0
## 2074 2021-03-09 09:59:15 0
## 2075 2021-03-09 21:01:28 0
## 2076 2021-03-11 22:07:56 0
## 2077 2021-03-11 22:07:56 0
## 2078 2021-03-08 01:43:25 0
## 2079 2021-03-08 01:43:25 0
## 2080 2021-03-08 01:43:25 0
## 2081 2021-03-08 01:43:25 0
## 2082 2021-03-08 01:43:25 0
## 2083 2021-03-10 07:38:03 0
## 2084 2021-03-10 07:38:03 0
## 2085 2021-03-08 02:12:19 0
## 2086 2021-03-11 13:19:51 0
## 2087 2021-03-11 01:34:56 0
## 2088 2021-03-06 11:56:04 0
## 2089 2021-03-08 02:54:06 3
## 2090 2021-03-09 23:38:33 0
## 2091 2021-03-09 23:38:33 0
## 2092 2021-03-09 23:38:33 0
## 2093 2021-03-08 17:34:45 1
## 2094 2021-03-08 03:28:23 1
## 2095 2021-03-11 11:27:20 0
## 2096 2021-03-08 04:17:24 0
## 2097 2021-03-08 04:17:24 0
## 2098 2021-03-08 13:47:35 0
## 2099 2021-03-08 16:56:24 0
## 2100 2021-03-08 16:56:24 0
## 2101 2021-03-08 20:02:02 0
## 2102 2021-03-08 20:02:02 0
## 2103 2021-03-09 13:33:43 1
## 2104 2021-03-08 03:06:57 0
255
## 2105 2021-03-08 21:41:00 1
## 2106 2021-03-09 17:09:43 1
## 2107 2021-03-11 14:33:50 1
## 2108 2021-03-11 14:33:50 1
## 2109 2021-03-10 16:02:22 1
## 2110 2021-03-10 16:02:22 1
## 2111 2021-03-11 13:24:56 1
## 2112 2021-03-11 13:24:56 1
## 2113 2021-03-11 00:17:44 0
## 2114 2021-03-06 16:34:15 0
## 2115 2021-03-06 16:34:15 0
## 2116 2021-03-06 16:34:15 0
## 2117 2021-03-06 16:34:15 0
## 2118 2021-03-06 16:34:15 0
## 2119 2021-03-06 16:34:15 0
## 2120 2021-03-06 16:34:15 0
## 2121 2021-03-06 16:34:15 0
## 2122 2021-03-08 04:00:19 0
## 2123 2021-03-08 03:51:49 0
## 2124 2021-03-10 06:24:19 0
## 2125 2021-03-10 06:24:19 0
## 2126 2021-03-10 06:24:19 0
## 2127 2021-03-06 14:49:14 1
## 2128 2021-03-08 07:45:24 1
## 2129 2021-03-09 07:40:00 0
## 2130 2021-03-09 17:44:42 0
## 2131 2021-03-09 18:03:39 0
## 2132 2021-03-08 21:31:02 0
## 2133 2021-03-08 02:45:27 0
## 2134 2021-03-08 02:45:27 0
## 2135 2021-03-09 17:23:53 1
## 2136 2021-03-09 17:23:53 1
## 2137 2021-03-09 17:23:53 1
## 2138 2021-03-09 19:52:49 0
## 2139 2021-03-09 19:52:49 0
## 2140 2021-03-09 17:56:00 0
## 2141 2021-03-09 18:43:26 1
## 2142 2021-03-09 21:51:18 0
## 2143 2021-03-09 21:51:18 0
## 2144 2021-03-09 21:51:18 0
## 2145 2021-03-09 21:51:18 0
## 2146 2021-03-08 14:22:49 0
## 2147 2021-03-09 19:00:40 0
## 2148 2021-03-08 21:57:50 1
## 2149 2021-03-08 21:57:50 1
## 2150 2021-03-06 11:15:48 0
## 2151 2021-03-11 15:52:13 0
## 2152 2021-03-08 17:53:48 0
## 2153 2021-03-10 21:49:44 1
## 2154 2021-03-09 16:36:35 0
## 2155 2021-03-09 06:03:08 74
## 2156 2021-03-08 06:03:18 0
## 2157 2021-03-08 02:15:05 0
## 2158 2021-03-08 02:15:05 0
256
## 2159 2021-03-08 02:00:39 0
## 2160 2021-03-08 02:00:39 0
## 2161 2021-03-11 18:00:00 0
## 2162 2021-03-10 05:38:09 4
## 2163 2021-03-10 05:38:09 4
## 2164 2021-03-08 10:42:21 0
## 2165 2021-03-07 13:07:00 0
## 2166 2021-03-09 07:57:28 0
## 2167 2021-03-08 12:23:39 0
## 2168 2021-03-05 18:46:11 0
## 2169 2021-03-07 18:00:45 0
## 2170 2021-03-08 12:35:05 0
## 2171 2021-03-08 12:35:05 0
## 2172 2021-03-09 21:36:18 0
## 2173 2021-03-09 21:36:18 0
## 2174 2021-03-09 21:36:18 0
## 2175 2021-03-06 19:19:37 0
## 2176 2021-03-06 19:19:37 0
## 2177 2021-03-06 19:19:37 0
## 2178 2021-03-08 11:46:57 1
## 2179 2021-03-08 01:36:39 0
## 2180 2021-03-09 17:08:25 0
## 2181 2021-03-09 17:08:25 0
## 2182 2021-03-08 02:20:30 0
## 2183 2021-03-09 07:39:43 0
## 2184 2021-03-08 01:59:10 0
## 2185 2021-03-08 17:21:41 0
## 2186 2021-03-08 17:21:41 0
## 2187 2021-03-08 17:21:41 0
## 2188 2021-03-08 17:21:41 0
## 2189 2021-03-10 12:18:31 0
## 2190 2021-03-08 07:48:06 0
## 2191 2021-03-08 07:48:06 0
## 2192 2021-03-09 23:55:57 0
## 2193 2021-03-11 07:59:17 0
## 2194 2021-03-09 17:57:07 0
## 2195 2021-03-09 07:50:09 0
## 2196 2021-03-09 07:50:09 0
## 2197 2021-03-09 07:50:09 0
## 2198 2021-03-08 03:01:47 0
## 2199 2021-03-08 00:27:26 0
## 2200 2021-03-08 00:27:26 0
## 2201 2021-03-09 04:30:00 2
## 2202 2021-03-09 04:30:00 2
## 2203 2021-03-08 08:52:45 0
## 2204 2021-03-08 02:25:54 0
## 2205 2021-03-11 12:28:18 0
## 2206 2021-03-09 01:51:25 0
## 2207 2021-03-10 23:05:31 0
## 2208 2021-03-10 23:05:31 0
## 2209 2021-03-07 17:58:29 0
## 2210 2021-03-08 18:20:52 0
## 2211 2021-03-07 01:32:07 0
## 2212 2021-03-07 13:54:07 0
257
## 2213 2021-03-10 23:19:43 0
## 2214 2021-03-08 04:44:19 0
## 2215 2021-03-08 04:44:19 0
## 2216 2021-03-08 04:44:19 0
## 2217 2021-03-08 04:44:19 0
## 2218 2021-03-09 05:52:16 0
## 2219 2021-03-04 20:47:18 0
## 2220 2021-03-08 01:32:21 0
## 2221 2021-03-09 03:11:39 0
## 2222 2021-03-09 03:11:39 0
## 2223 2021-03-04 18:55:11 0
## 2224 2021-03-04 18:55:11 0
## 2225 2021-03-04 18:55:11 0
## 2226 2021-03-08 04:34:54 0
## 2227 2021-03-09 08:12:15 0
## 2228 2021-03-08 19:04:09 0
## 2229 2021-03-10 22:21:54 0
## 2230 2021-03-08 02:46:34 0
## 2231 2021-03-08 02:46:34 0
## 2232 2021-03-08 01:21:28 0
## 2233 2021-03-09 05:05:47 5
## 2234 2021-03-09 05:05:47 5
## 2235 2021-03-09 05:05:47 5
## 2236 2021-03-09 05:05:47 5
## 2237 2021-03-10 03:38:41 0
## 2238 2021-03-09 07:59:32 0
## 2239 2021-03-09 07:59:32 0
## 2240 2021-03-11 19:25:22 0
## 2241 2021-03-10 06:50:55 0
## 2242 2021-03-10 06:50:55 0
## 2243 2021-03-10 02:53:41 0
## 2244 2021-03-10 02:53:41 0
## 2245 2021-03-05 16:35:17 0
## 2246 2021-03-09 02:27:54 0
## 2247 2021-03-08 06:41:06 0
## 2248 2021-03-08 08:51:58 0
## 2249 2021-03-10 07:44:46 0
## 2250 2021-03-10 07:44:46 0
## 2251 2021-03-10 07:44:46 0
## 2252 2021-03-08 03:40:11 0
## 2253 2021-03-08 04:50:29 0
## 2254 2021-03-08 04:50:29 0
## 2255 2021-03-08 21:32:29 0
## 2256 2021-03-08 21:32:29 0
## 2257 2021-03-09 12:44:04 0
## 2258 2021-03-09 01:36:35 0
## 2259 2021-03-06 09:05:43 0
## 2260 2021-03-06 09:05:43 0
## 2261 2021-03-05 19:37:32 0
## 2262 2021-03-10 12:05:13 0
## 2263 2021-03-09 19:22:19 0
## 2264 2021-03-09 19:22:19 0
## 2265 2021-03-08 02:03:19 0
## 2266 2021-03-09 12:41:07 1
258
## 2267 2021-03-08 05:11:00 0
## 2268 2021-03-10 17:30:29 0
## 2269 2021-03-10 17:30:29 0
## 2270 2021-03-08 19:01:50 0
## 2271 2021-03-06 04:54:58 0
## 2272 2021-03-06 04:54:58 0
## 2273 2021-03-06 04:54:58 0
## 2274 2021-03-09 10:50:20 0
## 2275 2021-03-07 21:13:34 0
## 2276 2021-03-08 00:54:51 0
## 2277 2021-03-08 04:29:11 0
## 2278 2021-03-11 13:47:54 0
## 2279 2021-03-11 13:47:54 0
## 2280 2021-03-09 15:38:06 0
## 2281 2021-03-08 15:16:28 0
## 2282 2021-03-08 15:16:28 0
## 2283 2021-03-08 15:16:28 0
## 2284 2021-03-08 15:16:28 0
## 2285 2021-03-08 15:16:28 0
## 2286 2021-03-08 15:16:28 0
## 2287 2021-03-09 08:24:18 1
## 2288 2021-03-08 03:06:00 0
## 2289 2021-03-09 13:22:34 1
## 2290 2021-03-06 07:12:35 0
## 2291 2021-03-07 13:12:33 0
## 2292 2021-03-07 23:01:02 0
## 2293 2021-03-09 19:16:18 0
## 2294 2021-03-09 19:16:18 0
## 2295 2021-03-07 15:26:12 1
## 2296 2021-03-07 15:26:12 1
## 2297 2021-03-08 20:25:37 0
## 2298 2021-03-11 13:12:32 0
## 2299 2021-03-11 13:12:32 0
## 2300 2021-03-07 09:29:26 0
## 2301 2021-03-11 13:51:36 0
## 2302 2021-03-09 20:08:13 0
## 2303 2021-03-08 01:11:05 0
## 2304 2021-03-08 06:32:53 0
## 2305 2021-03-08 16:27:48 1
## 2306 2021-03-08 08:56:11 1
## 2307 2021-03-08 08:56:11 1
## 2308 2021-03-11 12:02:13 0
## 2309 2021-03-09 18:37:09 0
## 2310 2021-03-09 18:37:09 0
## 2311 2021-03-09 17:55:16 0
## 2312 2021-03-09 14:16:58 0
## 2313 2021-03-09 14:16:58 0
## 2314 2021-03-08 06:26:50 0
## 2315 2021-03-11 19:35:55 0
## 2316 2021-03-08 16:34:12 0
## 2317 2021-03-08 17:03:24 0
## 2318 2021-03-08 01:28:07 0
## 2319 2021-03-08 17:29:30 0
## 2320 2021-03-08 17:29:30 0
259
## 2321 2021-03-10 21:19:46 0
## 2322 2021-03-08 02:57:33 1
## 2323 2021-03-08 21:23:11 1
## 2324 2021-03-08 21:23:11 1
## 2325 2021-03-09 11:24:40 0
## 2326 2021-03-08 14:55:09 0
## 2327 2021-03-10 05:30:24 0
## 2328 2021-03-10 01:26:50 1
## 2329 2021-03-10 01:26:50 1
## 2330 2021-03-10 01:26:50 1
## 2331 2021-03-10 01:26:50 1
## 2332 2021-03-09 07:31:19 0
## 2333 2021-03-05 19:23:45 0
## 2334 2021-03-11 23:12:25 0
## 2335 2021-03-10 14:45:34 0
## 2336 2021-03-10 14:45:34 0
## 2337 2021-03-10 17:00:52 0
## 2338 2021-03-06 20:16:22 0
## 2339 2021-03-06 20:16:22 0
## 2340 2021-03-06 20:16:22 0
## 2341 2021-03-06 20:16:22 0
## 2342 2021-03-06 20:16:22 0
## 2343 2021-03-06 20:16:22 0
## 2344 2021-03-06 20:16:22 0
## 2345 2021-03-06 20:16:22 0
## 2346 2021-03-09 23:18:59 0
## 2347 2021-03-09 23:18:59 0
## 2348 2021-03-10 16:05:03 0
## 2349 2021-03-09 17:04:04 0
## 2350 2021-03-05 07:33:07 6
## 2351 2021-03-08 02:52:54 0
## 2352 2021-03-08 01:26:55 0
## 2353 2021-03-08 01:26:55 0
## 2354 2021-03-11 18:48:15 0
## 2355 2021-03-09 08:05:28 0
## 2356 2021-03-08 05:18:21 0
## 2357 2021-03-08 03:49:31 0
## 2358 2021-03-08 03:49:31 0
## 2359 2021-03-08 12:36:15 0
## 2360 2021-03-08 12:36:15 0
## 2361 2021-03-08 12:36:15 0
## 2362 2021-03-08 12:36:15 0
## 2363 2021-03-07 12:09:01 0
## 2364 2021-03-10 00:35:58 0
## 2365 2021-03-10 00:35:58 0
## 2366 2021-03-09 13:31:09 0
## 2367 2021-03-09 13:31:09 0
## 2368 2021-03-11 23:24:41 0
## 2369 2021-03-08 02:42:47 0
## 2370 2021-03-08 23:09:48 0
## 2371 2021-03-08 06:30:54 0
## 2372 2021-03-07 14:45:03 1
## 2373 2021-03-07 14:45:03 1
## 2374 2021-03-08 18:44:09 0
260
## 2375 2021-03-08 01:54:41 0
## 2376 2021-03-08 01:03:27 0
## 2377 2021-03-06 21:51:00 0
## 2378 2021-03-06 21:51:00 0
## 2379 2021-03-08 17:05:21 0
## 2380 2021-03-09 02:18:26 0
## 2381 2021-03-09 02:18:26 0
## 2382 2021-03-10 23:54:43 0
## 2383 2021-03-08 18:45:00 0
## 2384 2021-03-09 12:42:26 0
## 2385 2021-03-09 12:42:26 0
## 2386 2021-03-09 12:42:26 0
## 2387 2021-03-11 01:55:24 0
## 2388 2021-03-06 11:02:56 0
## 2389 2021-03-08 02:16:05 0
## 2390 2021-03-09 19:14:59 0
## 2391 2021-03-09 19:14:59 0
## 2392 2021-03-08 07:37:09 0
## 2393 2021-03-09 17:20:20 0
## 2394 2021-03-09 17:20:20 0
## 2395 2021-03-09 17:20:20 0
## 2396 2021-03-10 19:11:00 0
## 2397 2021-03-08 20:38:48 0
## 2398 2021-03-08 20:38:48 0
## 2399 2021-03-08 15:26:58 0
## 2400 2021-03-08 15:26:58 0
## 2401 2021-03-09 16:25:46 2
## 2402 2021-03-09 16:25:46 2
## 2403 2021-03-09 16:25:46 2
## 2404 2021-03-09 16:25:46 2
## 2405 2021-03-09 16:25:46 2
## 2406 2021-03-09 16:25:46 2
## 2407 2021-03-09 16:25:46 2
## 2408 2021-03-09 16:25:46 2
## 2409 2021-03-08 05:21:49 0
## 2410 2021-03-08 05:21:49 0
## 2411 2021-03-08 01:52:34 0
## 2412 2021-03-08 01:52:34 0
## 2413 2021-03-08 01:54:52 0
## 2414 2021-03-08 01:54:52 0
## 2415 2021-03-08 01:54:52 0
## 2416 2021-03-08 01:54:52 0
## 2417 2021-03-08 01:54:52 0
## 2418 2021-03-10 13:34:32 0
## 2419 2021-03-08 07:14:28 0
## 2420 2021-03-10 23:51:51 0
## 2421 2021-03-08 09:06:38 0
## 2422 2021-03-08 09:06:38 0
## 2423 2021-03-09 16:41:52 0
## 2424 2021-03-08 12:58:29 0
## 2425 2021-03-11 20:13:01 0
## 2426 2021-03-11 20:13:01 0
## 2427 2021-03-11 20:13:01 0
## 2428 2021-03-11 20:13:01 0
261
## 2429 2021-03-11 20:13:01 0
## 2430 2021-03-06 03:46:47 0
## 2431 2021-03-07 14:45:29 0
## 2432 2021-03-09 17:19:52 0
## 2433 2021-03-09 07:39:42 3
## 2434 2021-03-09 07:39:42 3
## 2435 2021-03-09 07:39:42 3
## 2436 2021-03-09 07:39:42 3
## 2437 2021-03-09 07:39:42 3
## 2438 2021-03-09 07:39:42 3
## 2439 2021-03-09 07:39:42 3
## 2440 2021-03-09 07:39:42 3
## 2441 2021-03-09 07:39:42 3
## 2442 2021-03-08 16:35:28 0
## 2443 2021-03-11 07:41:54 0
## 2444 2021-03-11 07:41:54 0
## 2445 2021-03-11 07:41:54 0
## 2446 2021-03-10 16:14:51 4
## 2447 2021-03-10 16:14:51 4
## 2448 2021-03-10 02:07:58 3
## 2449 2021-03-09 00:01:18 0
## 2450 2021-03-08 16:26:13 0
## 2451 2021-03-06 01:01:26 0
## 2452 2021-03-10 21:26:51 0
## 2453 2021-03-08 14:42:24 0
## 2454 2021-03-08 02:51:42 1
## 2455 2021-03-09 20:46:28 0
## 2456 2021-03-08 01:27:59 0
## 2457 2021-03-08 13:31:15 0
## 2458 2021-03-09 08:35:28 0
## 2459 2021-03-09 08:35:28 0
## 2460 2021-03-10 11:23:19 0
## 2461 2021-03-08 02:28:40 2
## 2462 2021-03-09 16:32:00 0
## 2463 2021-03-09 16:32:00 0
## 2464 2021-03-08 07:13:25 0
## 2465 2021-03-08 01:58:45 0
## 2466 2021-03-08 02:50:36 1
## 2467 2021-03-08 02:50:36 1
## 2468 2021-03-10 13:24:41 0
## 2469 2021-03-08 09:36:38 1
## 2470 2021-03-08 03:27:51 0
## 2471 2021-03-08 03:27:51 0
## 2472 2021-03-08 04:49:58 0
## 2473 2021-03-07 08:44:46 0
## 2474 2021-03-10 04:09:43 1
## 2475 2021-03-10 04:09:43 1
## 2476 2021-03-11 23:13:53 0
## 2477 2021-03-11 23:13:53 0
## 2478 2021-03-09 18:29:46 0
## 2479 2021-03-09 18:29:46 0
## 2480 2021-03-08 18:22:50 9
## 2481 2021-03-09 22:55:46 2
## 2482 2021-03-09 22:55:46 2
262
## 2483 2021-03-09 01:33:16 0
## 2484 2021-03-09 01:33:16 0
## 2485 2021-03-08 19:10:06 0
## 2486 2021-03-08 03:00:42 0
## 2487 2021-03-08 15:38:48 0
## 2488 2021-03-09 09:03:17 1
## 2489 2021-03-08 00:57:25 0
## 2490 2021-03-08 12:56:07 0
## 2491 2021-03-09 22:49:31 0
## 2492 2021-03-09 22:49:31 0
## 2493 2021-03-09 22:49:31 0
## 2494 2021-03-09 21:15:55 0
## 2495 2021-03-09 20:43:54 1
## 2496 2021-03-09 07:13:39 0
## 2497 2021-03-08 18:35:26 0
## 2498 2021-03-09 19:50:13 0
## 2499 2021-03-09 02:55:22 0
## 2500 2021-03-08 02:57:30 0
## 2501 2021-03-07 10:22:38 2
## 2502 2021-03-10 08:45:22 1
## 2503 2021-03-10 08:45:22 1
## 2504 2021-03-10 08:08:27 0
## 2505 2021-03-10 08:08:27 0
## 2506 2021-03-10 08:08:27 0
## 2507 2021-03-08 17:28:14 0
## 2508 2021-03-06 14:40:30 41
## 2509 2021-03-11 22:01:13 0
## 2510 2021-03-11 22:01:13 0
## 2511 2021-03-11 22:01:13 0
## 2512 2021-03-11 22:01:13 0
## 2513 2021-03-08 23:10:35 1
## 2514 2021-03-08 23:10:35 1
## 2515 2021-03-09 01:29:03 0
## 2516 2021-03-09 01:29:03 0
## 2517 2021-03-11 00:15:20 0
## 2518 2021-03-08 18:50:56 0
## 2519 2021-03-08 16:36:32 0
## 2520 2021-03-09 08:56:47 0
## 2521 2021-03-09 08:56:47 0
## 2522 2021-03-09 08:56:47 0
## 2523 2021-03-08 09:27:35 2
## 2524 2021-03-07 16:26:54 0
## 2525 2021-03-11 19:42:21 2
## 2526 2021-03-11 19:42:21 2
## 2527 2021-03-08 11:26:25 1
## 2528 2021-03-08 02:18:24 0
## 2529 2021-03-07 01:58:32 0
## 2530 2021-03-07 01:58:32 0
## 2531 2021-03-08 20:55:27 0
## 2532 2021-03-10 16:27:51 0
## 2533 2021-03-08 00:08:53 0
## 2534 2021-03-08 00:08:53 0
## 2535 2021-03-11 08:51:00 0
## 2536 2021-03-11 08:51:00 0
263
## 2537 2021-03-11 08:51:00 0
## 2538 2021-03-11 08:51:00 0
## 2539 2021-03-09 20:05:16 2
## 2540 2021-03-09 20:05:16 2
## 2541 2021-03-08 03:01:31 0
## 2542 2021-03-08 03:01:31 0
## 2543 2021-03-08 13:27:59 0
## 2544 2021-03-08 01:47:27 0
## 2545 2021-03-08 01:47:27 0
## 2546 2021-03-08 01:47:27 0
## 2547 2021-03-08 01:47:27 0
## 2548 2021-03-08 01:47:27 0
## 2549 2021-03-08 22:12:13 0
## 2550 2021-03-08 22:12:13 0
## 2551 2021-03-09 19:26:55 0
## 2552 2021-03-09 19:26:55 0
## 2553 2021-03-08 15:51:35 1
## 2554 2021-03-05 06:50:36 0
## 2555 2021-03-05 06:50:36 0
## 2556 2021-03-07 09:29:15 0
## 2557 2021-03-09 08:28:35 0
## 2558 2021-03-09 08:28:35 0
## 2559 2021-03-09 08:28:35 0
## 2560 2021-03-08 14:40:57 0
## 2561 2021-03-07 11:10:34 0
## 2562 2021-03-07 11:10:34 0
## 2563 2021-03-08 16:27:27 0
## 2564 2021-03-10 14:47:35 0
## 2565 2021-03-09 18:59:16 0
## 2566 2021-03-09 18:59:16 0
## 2567 2021-03-10 12:59:22 0
## 2568 2021-03-08 02:05:53 1
## 2569 2021-03-08 02:05:53 1
## 2570 2021-03-08 02:05:53 1
## 2571 2021-03-10 02:00:45 0
## 2572 2021-03-10 02:00:45 0
## 2573 2021-03-08 12:27:19 0
## 2574 2021-03-09 18:33:17 0
## 2575 2021-03-08 05:08:48 0
## 2576 2021-03-08 05:08:48 0
## 2577 2021-03-08 07:39:23 0
## 2578 2021-03-05 18:30:00 0
## 2579 2021-03-08 12:21:39 1
## 2580 2021-03-08 01:49:10 2
## 2581 2021-03-08 01:49:10 2
## 2582 2021-03-08 01:49:10 2
## 2583 2021-03-08 01:49:10 2
## 2584 2021-03-08 01:49:10 2
## 2585 2021-03-08 01:49:10 2
## 2586 2021-03-08 01:49:10 2
## 2587 2021-03-08 01:49:10 2
## 2588 2021-03-06 03:01:27 0
## 2589 2021-03-10 03:46:32 0
## 2590 2021-03-11 12:24:21 2
264
## 2591 2021-03-08 21:18:24 0
## 2592 2021-03-09 20:36:25 0
## 2593 2021-03-06 18:21:36 0
## 2594 2021-03-06 18:21:36 0
## 2595 2021-03-06 18:21:36 0
## 2596 2021-03-06 18:21:36 0
## 2597 2021-03-08 08:52:50 0
## 2598 2021-03-08 08:52:50 0
## 2599 2021-03-09 12:06:11 0
## 2600 2021-03-09 12:06:11 0
## 2601 2021-03-09 12:06:11 0
## 2602 2021-03-07 11:11:03 0
## 2603 2021-03-07 11:11:03 0
## 2604 2021-03-08 17:57:43 0
## 2605 2021-03-07 15:59:43 0
## 2606 2021-03-09 21:32:11 0
## 2607 2021-03-09 21:32:11 0
## 2608 2021-03-08 23:08:19 1
## 2609 2021-03-09 10:17:21 2
## 2610 2021-03-07 19:01:06 0
## 2611 2021-03-09 08:32:26 0
## 2612 2021-03-09 08:32:26 0
## 2613 2021-03-09 02:50:35 0
## 2614 2021-03-09 02:50:35 0
## 2615 2021-03-09 02:50:35 0
## 2616 2021-03-09 02:50:35 0
## 2617 2021-03-09 02:50:35 0
## 2618 2021-03-08 03:39:49 0
## 2619 2021-03-08 03:39:49 0
## 2620 2021-03-09 18:39:43 0
## 2621 2021-03-08 02:19:38 1
## 2622 2021-03-08 02:19:38 1
## 2623 2021-03-08 09:33:18 2
## 2624 2021-03-09 21:15:13 0
## 2625 2021-03-09 07:31:21 14
## 2626 2021-03-08 04:43:11 0
## 2627 2021-03-08 04:43:11 0
## 2628 2021-03-06 20:21:06 5
## 2629 2021-03-09 06:14:00 0
## 2630 2021-03-09 06:14:00 0
## 2631 2021-03-09 06:14:00 0
## 2632 2021-03-07 11:06:25 0
## 2633 2021-03-08 08:26:58 1
## 2634 2021-03-05 10:37:27 0
## 2635 2021-03-05 10:37:27 0
## 2636 2021-03-05 10:37:27 0
## 2637 2021-03-09 09:24:10 0
## 2638 2021-03-09 09:24:10 0
## 2639 2021-03-09 09:24:10 0
## 2640 2021-03-09 09:24:10 0
## 2641 2021-03-09 09:24:10 0
## 2642 2021-03-08 02:02:13 0
## 2643 2021-03-09 21:28:46 0
## 2644 2021-03-09 17:57:21 0
265
## 2645 2021-03-09 17:57:21 0
## 2646 2021-03-09 17:57:21 0
## 2647 2021-03-07 15:03:38 1
## 2648 2021-03-09 14:47:27 0
## 2649 2021-03-09 05:16:25 0
## 2650 2021-03-05 22:47:25 0
## 2651 2021-03-10 14:52:10 0
## 2652 2021-03-10 14:52:10 0
## 2653 2021-03-10 14:52:10 0
## 2654 2021-03-08 03:28:14 0
## 2655 2021-03-08 02:15:23 0
## 2656 2021-03-06 11:45:08 0
## 2657 2021-03-06 11:45:08 0
## 2658 2021-03-08 06:43:50 0
## 2659 2021-03-09 00:31:34 1
## 2660 2021-03-10 00:32:41 0
## 2661 2021-03-09 23:45:57 0
## 2662 2021-03-09 23:45:57 0
## 2663 2021-03-07 03:28:46 0
## 2664 2021-03-08 01:22:33 0
## 2665 2021-03-09 18:55:46 0
## 2666 2021-03-08 10:04:22 0
## 2667 2021-03-07 19:27:16 0
## 2668 2021-03-07 19:27:16 0
## 2669 2021-03-08 22:57:47 0
## 2670 2021-03-08 22:57:47 0
## 2671 2021-03-08 12:42:39 0
## 2672 2021-03-09 13:29:38 0
## 2673 2021-03-07 14:24:29 0
## 2674 2021-03-07 14:24:29 0
## 2675 2021-03-07 14:24:29 0
## 2676 2021-03-07 14:24:29 0
## 2677 2021-03-10 15:02:28 0
## 2678 2021-03-10 15:02:28 0
## 2679 2021-03-10 15:02:28 0
## 2680 2021-03-08 18:22:41 0
## 2681 2021-03-08 18:22:41 0
## 2682 2021-03-08 01:45:32 0
## 2683 2021-03-07 14:19:26 0
## 2684 2021-03-07 14:19:26 0
## 2685 2021-03-09 20:19:21 0
## 2686 2021-03-09 20:19:21 0
## 2687 2021-03-09 20:19:21 0
## 2688 2021-03-08 07:09:12 0
## 2689 2021-03-08 02:49:32 1
## 2690 2021-03-08 02:49:32 1
## 2691 2021-03-08 17:18:13 1
## 2692 2021-03-07 09:41:37 0
## 2693 2021-03-07 09:41:37 0
## 2694 2021-03-08 19:51:20 0
## 2695 2021-03-10 16:20:36 0
## 2696 2021-03-08 20:11:18 2
## 2697 2021-03-09 21:44:56 0
## 2698 2021-03-09 21:44:56 0
266
## 2699 2021-03-09 16:50:18 0
## 2700 2021-03-04 19:03:00 0
## 2701 2021-03-08 03:32:58 0
## 2702 2021-03-05 12:20:21 15
## 2703 2021-03-08 02:00:49 0
## 2704 2021-03-11 10:53:12 0
## 2705 2021-03-11 10:53:12 0
## 2706 2021-03-07 16:22:26 0
## 2707 2021-03-08 05:42:49 0
## 2708 2021-03-08 13:39:26 0
## 2709 2021-03-08 09:30:57 0
## 2710 2021-03-07 13:46:17 0
## 2711 2021-03-07 19:59:49 0
## 2712 2021-03-07 19:59:49 0
## 2713 2021-03-06 00:53:42 0
## 2714 2021-03-06 00:53:42 0
## 2715 2021-03-08 17:28:03 0
## 2716 2021-03-08 17:28:03 0
## 2717 2021-03-09 01:48:49 0
## 2718 2021-03-05 11:13:51 0
## 2719 2021-03-06 09:46:43 0
## 2720 2021-03-08 21:15:10 0
## 2721 2021-03-08 21:15:10 0
## 2722 2021-03-08 17:23:30 0
## 2723 2021-03-09 05:09:41 0
## 2724 2021-03-07 10:08:32 1
## 2725 2021-03-08 12:56:58 0
## 2726 2021-03-09 06:38:42 0
## 2727 2021-03-08 00:39:23 0
## 2728 2021-03-08 00:39:23 0
## 2729 2021-03-09 19:14:08 0
## 2730 2021-03-08 01:45:26 0
## 2731 2021-03-09 16:40:41 0
## 2732 2021-03-07 20:40:56 0
## 2733 2021-03-07 20:40:56 0
## 2734 2021-03-07 20:40:56 0
## 2735 2021-03-08 00:23:07 0
## 2736 2021-03-08 22:09:09 2
## 2737 2021-03-10 17:07:32 0
## 2738 2021-03-06 20:49:23 1
## 2739 2021-03-08 15:03:20 0
## 2740 2021-03-08 13:31:49 0
## 2741 2021-03-05 22:14:23 0
## 2742 2021-03-08 12:24:17 1
## 2743 2021-03-10 17:34:42 0
## 2744 2021-03-10 15:44:54 0
## 2745 2021-03-11 10:22:32 0
## 2746 2021-03-08 21:31:20 0
## 2747 2021-03-10 13:03:41 0
## 2748 2021-03-10 15:17:07 0
## 2749 2021-03-08 10:11:53 0
## 2750 2021-03-08 20:39:29 0
## 2751 2021-03-08 20:39:29 0
## 2752 2021-03-11 13:57:57 0
267
## 2753 2021-03-08 13:54:01 0
## 2754 2021-03-08 01:29:47 7
## 2755 2021-03-08 22:56:29 0
## 2756 2021-03-07 17:36:29 1
## 2757 2021-03-07 17:36:29 1
## 2758 2021-03-07 17:36:29 1
## 2759 2021-03-08 16:24:38 0
## 2760 2021-03-06 08:32:35 0
## 2761 2021-03-06 08:32:35 0
## 2762 2021-03-06 08:32:35 0
## 2763 2021-03-06 08:32:35 0
## 2764 2021-03-08 14:32:00 0
## 2765 2021-03-07 11:04:26 0
## 2766 2021-03-07 11:04:26 0
## 2767 2021-03-08 01:28:28 0
## 2768 2021-03-07 01:50:34 1
## 2769 2021-03-07 01:50:34 1
## 2770 2021-03-07 01:50:34 1
## 2771 2021-03-10 16:51:58 1
## 2772 2021-03-08 12:08:47 0
## 2773 2021-03-08 12:08:47 0
## 2774 2021-03-08 11:53:06 0
## 2775 2021-03-08 11:53:06 0
## 2776 2021-03-08 11:53:06 0
## 2777 2021-03-11 07:11:47 0
## 2778 2021-03-11 07:11:47 0
## 2779 2021-03-08 11:58:23 1
## 2780 2021-03-08 11:58:23 1
## 2781 2021-03-08 13:04:37 0
## 2782 2021-03-08 23:19:51 0
## 2783 2021-03-08 21:36:42 0
## 2784 2021-03-08 07:59:11 0
## 2785 2021-03-11 16:33:42 0
## 2786 2021-03-11 16:33:42 0
## 2787 2021-03-08 01:05:25 0
## 2788 2021-03-09 08:51:58 0
## 2789 2021-03-10 10:08:01 0
## 2790 2021-03-10 10:08:01 0
## 2791 2021-03-08 03:25:23 0
## 2792 2021-03-08 12:46:38 0
## 2793 2021-03-08 12:46:38 0
## 2794 2021-03-08 12:46:38 0
## 2795 2021-03-11 19:31:47 0
## 2796 2021-03-11 19:31:47 0
## 2797 2021-03-08 16:34:08 0
## 2798 2021-03-08 16:34:08 0
## 2799 2021-03-08 16:34:08 0
## 2800 2021-03-09 15:31:01 0
## 2801 2021-03-09 15:31:01 0
## 2802 2021-03-09 19:35:24 0
## 2803 2021-03-10 04:37:22 0
## 2804 2021-03-08 01:48:16 0
## 2805 2021-03-11 00:25:22 0
## 2806 2021-03-08 01:33:18 1
268
## 2807 2021-03-08 04:50:24 0
## 2808 2021-03-04 20:56:25 0
## 2809 2021-03-08 04:17:04 0
## 2810 2021-03-11 18:07:20 0
## 2811 2021-03-09 19:45:52 0
## 2812 2021-03-08 09:55:00 2
## 2813 2021-03-08 21:56:20 0
## 2814 2021-03-08 20:13:10 1
## 2815 2021-03-08 20:13:10 1
## 2816 2021-03-09 08:10:40 0
## 2817 2021-03-09 08:10:40 0
## 2818 2021-03-07 15:28:11 0
## 2819 2021-03-10 01:55:28 0
## 2820 2021-03-10 01:55:28 0
## 2821 2021-03-10 01:55:28 0
## 2822 2021-03-10 01:55:28 0
## 2823 2021-03-10 01:55:28 0
## 2824 2021-03-08 09:34:07 0
## 2825 2021-03-10 12:47:26 0
## 2826 2021-03-10 12:47:26 0
## 2827 2021-03-08 08:23:31 0
## 2828 2021-03-09 19:36:08 0
## 2829 2021-03-08 06:40:17 0
## 2830 2021-03-07 14:54:28 1
## 2831 2021-03-08 02:03:34 0
## 2832 2021-03-09 20:26:48 0
## 2833 2021-03-07 05:52:26 4
## 2834 2021-03-08 17:36:23 0
## 2835 2021-03-11 12:16:46 0
## 2836 2021-03-06 18:20:06 0
## 2837 2021-03-06 18:20:06 0
## 2838 2021-03-08 10:06:51 0
## 2839 2021-03-08 10:06:51 0
## 2840 2021-03-04 23:03:13 0
## 2841 2021-03-04 23:03:13 0
## 2842 2021-03-08 07:28:34 0
## 2843 2021-03-09 12:48:57 1
## 2844 2021-03-08 03:21:21 0
## 2845 2021-03-09 16:39:30 0
## 2846 2021-03-05 18:42:52 1
## 2847 2021-03-10 22:37:11 0
## 2848 2021-03-08 12:33:05 0
## 2849 2021-03-08 12:33:05 0
## 2850 2021-03-08 04:07:37 0
## 2851 2021-03-08 04:07:37 0
## 2852 2021-03-08 04:07:37 0
## 2853 2021-03-08 04:07:37 0
## 2854 2021-03-09 20:20:43 0
## 2855 2021-03-09 20:06:57 0
## 2856 2021-03-09 20:06:57 0
## 2857 2021-03-05 20:41:52 0
## 2858 2021-03-08 13:03:04 0
## 2859 2021-03-08 13:03:04 0
## 2860 2021-03-08 18:59:31 0
269
## 2861 2021-03-08 18:59:31 0
## 2862 2021-03-08 04:24:36 0
## 2863 2021-03-08 04:24:36 0
## 2864 2021-03-08 04:24:36 0
## 2865 2021-03-11 14:18:36 0
## 2866 2021-03-08 15:44:08 1
## 2867 2021-03-10 11:59:26 0
## 2868 2021-03-09 05:22:57 0
## 2869 2021-03-08 09:09:20 0
## 2870 2021-03-08 09:09:20 0
## 2871 2021-03-08 19:00:39 0
## 2872 2021-03-08 19:00:39 0
## 2873 2021-03-08 19:00:39 0
## 2874 2021-03-08 09:45:52 0
## 2875 2021-03-10 13:12:13 4
## 2876 2021-03-10 13:12:13 4
## 2877 2021-03-10 13:12:13 4
## 2878 2021-03-09 16:50:07 0
## 2879 2021-03-11 20:42:35 0
## 2880 2021-03-09 07:56:45 0
## 2881 2021-03-05 14:49:49 0
## 2882 2021-03-05 14:49:49 0
## 2883 2021-03-05 14:49:49 0
## 2884 2021-03-05 14:49:49 0
## 2885 2021-03-09 23:33:11 0
## 2886 2021-03-10 13:36:10 0
## 2887 2021-03-10 13:36:10 0
## 2888 2021-03-10 13:36:10 0
## 2889 2021-03-08 09:36:03 0
## 2890 2021-03-08 05:25:41 0
## 2891 2021-03-08 07:34:31 0
## 2892 2021-03-04 16:41:40 0
## 2893 2021-03-04 16:41:40 0
## 2894 2021-03-04 16:41:40 0
## 2895 2021-03-08 05:59:50 7
## 2896 2021-03-08 05:59:50 7
## 2897 2021-03-07 23:04:56 0
## 2898 2021-03-08 01:33:24 0
## 2899 2021-03-11 16:15:40 0
## 2900 2021-03-10 10:19:27 0
## 2901 2021-03-10 18:49:48 0
## 2902 2021-03-08 05:18:17 0
## 2903 2021-03-08 05:18:17 0
## 2904 2021-03-08 05:18:17 0
## 2905 2021-03-10 00:44:47 0
## 2906 2021-03-08 05:06:17 0
## 2907 2021-03-08 16:01:15 0
## 2908 2021-03-08 16:01:15 0
## 2909 2021-03-11 08:49:19 0
## 2910 2021-03-08 02:12:44 0
## 2911 2021-03-10 23:14:57 0
## 2912 2021-03-10 23:14:57 0
## 2913 2021-03-08 04:28:47 0
## 2914 2021-03-10 18:21:21 0
270
## 2915 2021-03-08 19:32:38 0
## 2916 2021-03-08 19:32:38 0
## 2917 2021-03-04 17:08:33 0
## 2918 2021-03-09 16:49:20 0
## 2919 2021-03-08 02:36:31 0
## 2920 2021-03-07 13:39:27 0
## 2921 2021-03-07 13:39:27 0
## 2922 2021-03-07 13:39:27 0
## 2923 2021-03-07 13:39:27 0
## 2924 2021-03-07 13:39:27 0
## 2925 2021-03-07 01:14:21 0
## 2926 2021-03-08 21:30:45 0
## 2927 2021-03-09 03:23:34 4
## 2928 2021-03-09 03:23:34 4
## 2929 2021-03-11 15:46:04 0
## 2930 2021-03-11 15:46:04 0
## 2931 2021-03-08 05:40:41 0
## 2932 2021-03-08 05:40:41 0
## 2933 2021-03-10 07:21:24 13
## 2934 2021-03-06 19:13:22 0
## 2935 2021-03-06 19:13:22 0
## 2936 2021-03-08 00:48:26 6
## 2937 2021-03-04 19:47:21 4
## 2938 2021-03-04 19:47:21 4
## 2939 2021-03-04 19:47:21 4
## 2940 2021-03-04 19:47:21 4
## 2941 2021-03-09 07:03:11 0
## 2942 2021-03-09 07:03:11 0
## 2943 2021-03-09 07:03:11 0
## 2944 2021-03-08 03:13:34 0
## 2945 2021-03-05 14:23:32 0
## 2946 2021-03-05 14:23:32 0
## 2947 2021-03-08 02:30:11 0
## 2948 2021-03-09 21:24:18 0
## 2949 2021-03-09 19:12:05 0
## 2950 2021-03-09 19:12:05 0
## 2951 2021-03-09 19:12:05 0
## 2952 2021-03-10 15:28:43 5
## 2953 2021-03-08 18:50:43 0
## 2954 2021-03-08 18:50:43 0
## 2955 2021-03-08 02:01:41 0
## 2956 2021-03-09 22:32:42 0
## 2957 2021-03-04 18:08:37 0
## 2958 2021-03-11 14:02:00 0
## 2959 2021-03-08 12:13:49 1
## 2960 2021-03-08 18:43:10 0
## 2961 2021-03-08 18:43:10 0
## 2962 2021-03-08 18:43:10 0
## 2963 2021-03-08 16:45:20 1
## 2964 2021-03-04 17:35:25 0
## 2965 2021-03-04 17:35:25 0
## 2966 2021-03-04 17:35:25 0
## 2967 2021-03-08 15:29:56 0
## 2968 2021-03-07 10:58:32 0
271
## 2969 2021-03-08 01:54:35 0
## 2970 2021-03-08 01:38:32 3
## 2971 2021-03-08 03:50:56 0
## 2972 2021-03-10 01:37:28 0
## 2973 2021-03-08 02:53:22 0
## 2974 2021-03-09 17:24:43 0
## 2975 2021-03-08 01:48:57 0
## 2976 2021-03-09 00:24:27 0
## 2977 2021-03-11 07:56:38 3
## 2978 2021-03-09 01:16:47 0
## 2979 2021-03-09 01:16:47 0
## 2980 2021-03-09 01:16:47 0
## 2981 2021-03-09 01:16:47 0
## 2982 2021-03-08 12:29:19 2
## 2983 2021-03-08 12:29:19 2
## 2984 2021-03-08 02:13:40 0
## 2985 2021-03-08 09:50:54 0
## 2986 2021-03-08 13:54:48 2
## 2987 2021-03-08 13:09:43 0
## 2988 2021-03-08 07:11:49 0
## 2989 2021-03-08 02:07:27 0
## 2990 2021-03-08 03:57:44 0
## 2991 2021-03-10 19:23:48 0
## 2992 2021-03-08 06:30:38 0
## 2993 2021-03-07 14:04:07 0
## 2994 2021-03-10 06:46:57 0
## 2995 2021-03-08 04:50:58 0
## 2996 2021-03-10 01:11:12 0
## 2997 2021-03-10 01:11:12 0
## 2998 2021-03-09 18:51:20 2
## 2999 2021-03-08 12:22:18 0
## 3000 2021-03-09 16:39:07 0
## 3001 2021-03-09 16:39:07 0
## 3002 2021-03-09 16:48:49 0
## 3003 2021-03-08 02:50:18 0
## 3004 2021-03-09 00:44:42 2
## 3005 2021-03-08 05:45:16 0
## 3006 2021-03-11 13:03:48 0
## 3007 2021-03-09 18:26:03 0
## 3008 2021-03-09 18:26:03 0
## 3009 2021-03-08 09:27:30 0
## 3010 2021-03-09 07:43:56 2
## 3011 2021-03-09 07:43:56 2
## 3012 2021-03-06 16:28:42 0
## 3013 2021-03-08 02:42:53 0
## 3014 2021-03-07 06:28:36 0
## 3015 2021-03-07 06:28:36 0
## 3016 2021-03-10 16:54:06 1
## 3017 2021-03-09 20:03:30 0
## 3018 2021-03-09 20:03:30 0
## 3019 2021-03-08 02:19:03 0
## 3020 2021-03-10 11:59:57 1
## 3021 2021-03-09 08:27:47 0
## 3022 2021-03-09 08:27:47 0
272
## 3023 2021-03-11 20:06:12 0
## 3024 2021-03-08 01:23:30 1
## 3025 2021-03-08 01:23:30 1
## 3026 2021-03-08 12:30:33 0
## 3027 2021-03-08 10:41:28 0
## 3028 2021-03-09 20:13:26 1
## 3029 2021-03-08 02:26:24 0
## 3030 2021-03-08 07:12:58 1
## 3031 2021-03-08 07:12:58 1
## 3032 2021-03-08 21:21:10 0
## 3033 2021-03-08 13:05:34 0
## 3034 2021-03-08 13:05:34 0
## 3035 2021-03-04 23:00:57 2
## 3036 2021-03-08 21:10:03 1
## 3037 2021-03-05 12:56:35 0
## 3038 2021-03-08 18:01:56 0
## 3039 2021-03-08 18:01:56 0
## 3040 2021-03-04 17:33:01 0
## 3041 2021-03-06 14:33:59 0
## 3042 2021-03-04 18:58:50 0
## 3043 2021-03-04 18:58:50 0
## 3044 2021-03-04 18:58:50 0
## 3045 2021-03-04 18:58:50 0
## 3046 2021-03-04 18:58:50 0
## 3047 2021-03-04 18:58:50 0
## 3048 2021-03-04 18:58:50 0
## 3049 2021-03-04 18:58:50 0
## 3050 2021-03-08 05:03:46 0
## 3051 2021-03-10 18:43:31 0
## 3052 2021-03-08 12:18:09 0
## 3053 2021-03-09 15:48:15 0
## 3054 2021-03-08 07:24:04 0
## 3055 2021-03-08 07:24:04 0
## 3056 2021-03-08 04:51:55 0
## 3057 2021-03-08 04:51:55 0
## 3058 2021-03-09 08:25:14 0
## 3059 2021-03-09 23:02:02 0
## 3060 2021-03-08 15:48:41 0
## 3061 2021-03-08 15:48:41 0
## 3062 2021-03-08 15:48:41 0
## 3063 2021-03-08 02:36:09 2
## 3064 2021-03-08 15:42:11 1
## 3065 2021-03-11 12:19:19 0
## 3066 2021-03-11 12:19:19 0
## 3067 2021-03-11 12:19:19 0
## 3068 2021-03-11 12:19:19 0
## 3069 2021-03-11 12:19:19 0
## 3070 2021-03-09 18:35:29 0
## 3071 2021-03-10 21:59:42 0
## 3072 2021-03-07 20:45:29 0
## 3073 2021-03-08 07:27:47 0
## 3074 2021-03-08 07:27:47 0
## 3075 2021-03-08 07:27:47 0
## 3076 2021-03-08 12:49:09 5
273
## 3077 2021-03-08 18:58:04 0
## 3078 2021-03-08 18:58:04 0
## 3079 2021-03-09 11:59:46 0
## 3080 2021-03-09 11:59:46 0
## 3081 2021-03-09 11:59:46 0
## 3082 2021-03-09 11:59:46 0
## 3083 2021-03-11 00:28:08 2
## 3084 2021-03-11 00:28:08 2
## 3085 2021-03-11 00:28:08 2
## 3086 2021-03-09 12:46:20 1
## 3087 2021-03-05 19:52:49 0
## 3088 2021-03-05 19:52:49 0
## 3089 2021-03-11 00:32:04 0
## 3090 2021-03-08 14:58:46 0
## 3091 2021-03-08 04:55:09 0
## 3092 2021-03-08 04:28:45 0
## 3093 2021-03-08 04:28:45 0
## 3094 2021-03-08 02:13:48 0
## 3095 2021-03-10 13:27:23 0
## 3096 2021-03-10 13:27:23 0
## 3097 2021-03-08 19:02:10 0
## 3098 2021-03-09 15:52:09 0
## 3099 2021-03-09 15:52:09 0
## 3100 2021-03-09 13:13:37 0
## 3101 2021-03-09 13:13:37 0
## 3102 2021-03-09 13:13:37 0
## 3103 2021-03-09 14:34:09 0
## 3104 2021-03-09 14:34:09 0
## 3105 2021-03-09 14:34:09 0
## 3106 2021-03-09 16:38:51 0
## 3107 2021-03-07 12:52:59 1
## 3108 2021-03-07 12:52:59 1
## 3109 2021-03-07 12:52:59 1
## 3110 2021-03-08 03:12:10 0
## 3111 2021-03-08 03:12:10 0
## 3112 2021-03-08 13:57:44 0
## 3113 2021-03-08 12:19:10 0
## 3114 2021-03-08 12:19:10 0
## 3115 2021-03-08 12:19:10 0
## 3116 2021-03-07 22:48:44 0
## 3117 2021-03-08 01:25:29 0
## 3118 2021-03-08 14:13:25 0
## 3119 2021-03-08 05:10:16 0
## 3120 2021-03-08 05:10:16 0
## 3121 2021-03-08 16:26:52 0
## 3122 2021-03-11 05:20:32 0
## 3123 2021-03-08 03:07:42 1
## 3124 2021-03-08 04:48:43 0
## 3125 2021-03-09 06:16:57 0
## 3126 2021-03-05 13:06:46 0
## 3127 2021-03-08 02:54:57 1
## 3128 2021-03-08 02:54:57 1
## 3129 2021-03-08 10:17:42 0
## 3130 2021-03-07 07:56:57 0
274
## 3131 2021-03-07 07:56:57 0
## 3132 2021-03-07 13:56:47 0
## 3133 2021-03-07 13:56:47 0
## 3134 2021-03-08 01:35:29 0
## 3135 2021-03-08 01:35:29 0
## 3136 2021-03-10 19:08:37 0
## 3137 2021-03-10 19:08:37 0
## 3138 2021-03-10 19:08:37 0
## 3139 2021-03-08 15:53:48 0
## 3140 2021-03-08 15:53:48 0
## 3141 2021-03-09 02:23:26 0
## 3142 2021-03-08 21:53:25 0
## 3143 2021-03-08 21:53:25 0
## 3144 2021-03-04 19:44:44 0
## 3145 2021-03-04 19:44:44 0
## 3146 2021-03-04 19:44:44 0
## 3147 2021-03-09 08:59:27 0
## 3148 2021-03-09 06:11:58 0
## 3149 2021-03-08 11:21:09 0
## 3150 2021-03-08 11:21:09 0
## 3151 2021-03-05 08:55:16 0
## 3152 2021-03-09 05:16:18 0
## 3153 2021-03-09 06:54:43 0
## 3154 2021-03-11 07:53:59 0
## 3155 2021-03-08 04:02:34 0
## 3156 2021-03-08 15:10:52 0
## 3157 2021-03-08 15:10:52 0
## 3158 2021-03-08 23:34:02 0
## 3159 2021-03-08 19:20:04 0
## 3160 2021-03-08 19:20:04 0
## 3161 2021-03-08 13:29:51 1
## 3162 2021-03-11 00:42:03 1
## 3163 2021-03-08 22:05:45 0
## 3164 2021-03-10 10:27:54 2
## 3165 2021-03-08 23:57:19 0
## 3166 2021-03-07 13:57:18 0
## 3167 2021-03-07 13:57:18 0
## 3168 2021-03-07 13:57:18 0
## 3169 2021-03-08 16:28:47 5
## 3170 2021-03-08 16:28:47 5
## 3171 2021-03-08 10:23:35 0
## 3172 2021-03-08 02:31:59 1
## 3173 2021-03-09 09:05:19 0
## 3174 2021-03-04 19:49:58 0
## 3175 2021-03-04 19:49:58 0
## 3176 2021-03-09 16:07:40 0
## 3177 2021-03-08 05:15:38 0
## 3178 2021-03-09 21:35:41 0
## 3179 2021-03-07 13:29:40 0
## 3180 2021-03-07 13:29:40 0
## 3181 2021-03-07 13:29:40 0
## 3182 2021-03-08 02:36:18 0
## 3183 2021-03-08 02:36:18 0
## 3184 2021-03-10 22:17:12 0
275
## 3185 2021-03-10 22:17:12 0
## 3186 2021-03-08 02:29:50 4
## 3187 2021-03-04 23:27:58 0
## 3188 2021-03-09 03:13:31 1
## 3189 2021-03-08 20:20:47 0
## 3190 2021-03-08 10:10:05 0
## 3191 2021-03-08 11:43:22 0
## 3192 2021-03-08 18:02:20 0
## 3193 2021-03-08 16:25:37 0
## 3194 2021-03-05 16:27:38 0
## 3195 2021-03-09 21:20:30 0
## 3196 2021-03-09 14:55:40 0
## 3197 2021-03-09 14:55:40 0
## 3198 2021-03-09 14:55:40 0
## 3199 2021-03-10 02:40:27 0
## 3200 2021-03-09 19:17:59 0
## 3201 2021-03-08 04:39:53 0
## 3202 2021-03-08 04:39:53 0
## 3203 2021-03-08 16:15:36 0
## 3204 2021-03-08 18:33:43 0
## 3205 2021-03-08 11:15:27 0
## 3206 2021-03-08 11:15:27 0
## 3207 2021-03-08 11:15:27 0
## 3208 2021-03-04 21:05:52 0
## 3209 2021-03-08 22:47:22 0
## 3210 2021-03-08 22:47:22 0
## 3211 2021-03-10 00:47:36 0
## 3212 2021-03-08 02:04:56 1
## 3213 2021-03-08 15:06:04 0
## 3214 2021-03-08 16:25:06 0
## 3215 2021-03-10 21:38:40 0
## 3216 2021-03-06 20:16:55 0
## 3217 2021-03-06 08:33:33 0
## 3218 2021-03-08 08:00:39 0
## 3219 2021-03-08 08:00:39 0
## 3220 2021-03-08 08:00:39 0
## 3221 2021-03-08 21:17:35 0
## 3222 2021-03-10 09:59:55 0
## 3223 2021-03-07 20:24:46 0
## 3224 2021-03-07 05:33:55 0
## 3225 2021-03-10 13:42:50 0
## 3226 2021-03-07 16:49:56 0
## 3227 2021-03-05 15:39:36 0
## 3228 2021-03-05 15:39:36 0
## 3229 2021-03-10 21:23:53 0
## 3230 2021-03-11 05:35:27 0
## 3231 2021-03-09 16:20:05 0
## 3232 2021-03-07 18:06:31 0
## 3233 2021-03-04 19:27:48 1
## 3234 2021-03-04 19:27:48 1
## 3235 2021-03-04 19:38:21 0
## 3236 2021-03-06 01:24:53 4
## 3237 2021-03-06 01:24:53 4
## 3238 2021-03-06 01:24:53 4
276
## 3239 2021-03-06 01:24:53 4
## 3240 2021-03-11 11:46:57 0
## 3241 2021-03-09 10:06:57 0
## 3242 2021-03-08 02:24:58 0
## 3243 2021-03-10 06:35:42 0
## 3244 2021-03-10 06:35:42 0
## 3245 2021-03-10 06:35:42 0
## 3246 2021-03-11 03:57:36 0
## 3247 2021-03-11 03:57:36 0
## 3248 2021-03-08 13:28:58 0
## 3249 2021-03-09 01:37:00 0
## 3250 2021-03-08 11:09:23 0
## 3251 2021-03-10 16:44:15 0
## 3252 2021-03-06 18:57:40 0
## 3253 2021-03-06 18:57:40 0
## 3254 2021-03-07 22:06:06 0
## 3255 2021-03-08 22:58:24 0
## 3256 2021-03-08 07:11:34 2
## 3257 2021-03-08 17:30:01 1
## 3258 2021-03-09 19:14:23 1
## 3259 2021-03-08 01:50:27 0
## 3260 2021-03-08 01:50:27 0
## 3261 2021-03-08 14:36:12 1
## 3262 2021-03-08 14:36:12 1
## 3263 2021-03-08 14:36:12 1
## 3264 2021-03-11 05:37:00 0
## 3265 2021-03-11 05:37:00 0
## 3266 2021-03-08 03:28:25 0
## 3267 2021-03-08 03:28:25 0
## 3268 2021-03-08 03:28:25 0
## 3269 2021-03-11 10:52:16 0
## 3270 2021-03-11 10:52:16 0
## 3271 2021-03-04 21:18:37 0
## 3272 2021-03-08 17:14:51 2
## 3273 2021-03-08 17:14:51 2
## 3274 2021-03-10 04:20:48 0
## 3275 2021-03-10 04:20:48 0
## 3276 2021-03-05 13:45:50 0
## 3277 2021-03-05 13:45:50 0
## 3278 2021-03-05 13:45:50 0
## 3279 2021-03-10 21:04:15 4
## 3280 2021-03-08 02:08:17 2
## 3281 2021-03-08 05:56:20 0
## 3282 2021-03-08 12:25:53 0
## 3283 2021-03-08 05:15:16 0
## 3284 2021-03-08 20:21:41 0
## 3285 2021-03-09 07:19:16 0
## 3286 2021-03-10 01:41:08 0
## 3287 2021-03-10 01:41:08 0
## 3288 2021-03-10 01:41:08 0
## 3289 2021-03-11 13:16:46 0
## 3290 2021-03-11 13:16:46 0
## 3291 2021-03-10 01:46:01 3
## 3292 2021-03-09 19:20:02 0
277
## 3293 2021-03-04 20:12:49 0
## 3294 2021-03-04 20:12:49 0
## 3295 2021-03-04 20:12:49 0
## 3296 2021-03-04 20:12:49 0
## 3297 2021-03-05 18:14:14 0
## 3298 2021-03-08 21:16:09 0
## 3299 2021-03-08 21:16:09 0
## 3300 2021-03-08 21:16:09 0
## 3301 2021-03-08 21:16:09 0
## 3302 2021-03-08 21:16:09 0
## 3303 2021-03-08 21:16:09 0
## 3304 2021-03-08 21:16:09 0
## 3305 2021-03-08 21:16:09 0
## 3306 2021-03-08 09:45:21 0
## 3307 2021-03-11 06:29:17 0
## 3308 2021-03-11 06:29:17 0
## 3309 2021-03-08 09:27:57 0
## 3310 2021-03-08 09:10:06 2
## 3311 2021-03-08 09:10:06 2
## 3312 2021-03-08 00:14:39 0
## 3313 2021-03-08 00:14:39 0
## 3314 2021-03-04 17:03:46 0
## 3315 2021-03-08 21:21:04 0
## 3316 2021-03-08 08:23:25 0
## 3317 2021-03-10 09:44:51 0
## 3318 2021-03-09 08:38:30 0
## 3319 2021-03-06 00:00:23 0
## 3320 2021-03-06 00:00:23 0
## 3321 2021-03-06 00:00:23 0
## 3322 2021-03-08 17:41:50 0
## 3323 2021-03-06 00:15:40 0
## 3324 2021-03-08 11:12:53 0
## 3325 2021-03-09 01:59:08 0
## 3326 2021-03-08 08:47:58 0
## 3327 2021-03-08 08:47:58 0
## 3328 2021-03-08 08:47:58 0
## 3329 2021-03-08 18:06:24 0
## 3330 2021-03-08 18:06:24 0
## 3331 2021-03-08 18:06:24 0
## 3332 2021-03-10 10:14:47 0
## 3333 2021-03-10 18:42:27 0
## 3334 2021-03-11 16:18:26 0
## 3335 2021-03-11 17:49:41 0
## 3336 2021-03-06 18:15:27 4
## 3337 2021-03-06 18:15:27 4
## 3338 2021-03-06 18:15:27 4
## 3339 2021-03-08 08:45:28 0
## 3340 2021-03-11 10:31:40 0
## 3341 2021-03-11 10:31:40 0
## 3342 2021-03-11 10:31:40 0
## 3343 2021-03-11 10:31:40 0
## 3344 2021-03-10 00:49:44 0
## 3345 2021-03-10 00:49:44 0
## 3346 2021-03-11 07:06:04 3
278
## 3347 2021-03-11 07:06:04 3
## 3348 2021-03-08 10:58:50 0
## 3349 2021-03-08 09:57:30 0
## 3350 2021-03-05 19:41:39 0
## 3351 2021-03-08 18:41:10 0
## 3352 2021-03-08 05:37:57 1
## 3353 2021-03-08 05:37:57 1
## 3354 2021-03-08 16:59:00 5
## 3355 2021-03-08 06:56:20 0
## 3356 2021-03-08 01:41:42 0
## 3357 2021-03-08 07:48:49 0
## 3358 2021-03-08 09:01:20 0
## 3359 2021-03-06 15:50:06 1
## 3360 2021-03-08 12:51:22 1
## 3361 2021-03-08 12:51:22 1
## 3362 2021-03-08 12:51:22 1
## 3363 2021-03-09 12:17:48 0
## 3364 2021-03-09 12:17:48 0
## 3365 2021-03-09 12:17:48 0
## 3366 2021-03-07 15:06:13 2
## 3367 2021-03-07 15:06:13 2
## 3368 2021-03-07 15:06:13 2
## 3369 2021-03-07 15:06:13 2
## 3370 2021-03-09 01:41:06 7
## 3371 2021-03-05 21:20:05 0
## 3372 2021-03-08 02:24:17 0
## 3373 2021-03-08 14:03:05 0
## 3374 2021-03-08 21:07:08 0
## 3375 2021-03-10 07:36:59 0
## 3376 2021-03-10 07:36:59 0
## 3377 2021-03-06 13:21:24 0
## 3378 2021-03-06 13:21:24 0
## 3379 2021-03-06 13:21:24 0
## 3380 2021-03-06 13:21:24 0
## 3381 2021-03-06 13:21:24 0
## 3382 2021-03-06 13:21:24 0
## 3383 2021-03-10 14:42:27 37
## 3384 2021-03-08 19:57:02 0
## 3385 2021-03-10 13:19:25 0
## 3386 2021-03-11 15:41:21 0
## 3387 2021-03-11 15:41:21 0
## 3388 2021-03-08 18:33:08 0
## 3389 2021-03-08 15:25:11 0
## 3390 2021-03-08 15:25:11 0
## 3391 2021-03-08 07:29:39 0
## 3392 2021-03-08 21:27:54 0
## 3393 2021-03-08 21:27:54 0
## 3394 2021-03-08 20:33:21 0
## 3395 2021-03-06 00:21:30 0
## 3396 2021-03-06 00:21:30 0
## 3397 2021-03-10 11:27:32 0
## 3398 2021-03-04 15:47:18 0
## 3399 2021-03-06 20:03:45 0
## 3400 2021-03-06 20:03:45 0
279
## 3401 2021-03-09 21:35:14 0
## 3402 2021-03-08 02:04:51 0
## 3403 2021-03-08 02:04:51 0
## 3404 2021-03-08 20:31:44 0
## 3405 2021-03-09 17:17:33 0
## 3406 2021-03-10 10:26:19 0
## 3407 2021-03-09 06:16:05 0
## 3408 2021-03-10 17:16:56 0
## 3409 2021-03-08 02:10:40 0
## 3410 2021-03-09 12:04:41 1
## 3411 2021-03-08 22:42:43 0
## 3412 2021-03-08 02:42:22 1
## 3413 2021-03-07 07:56:33 0
## 3414 2021-03-07 07:56:33 0
## 3415 2021-03-07 07:56:33 0
## 3416 2021-03-07 07:56:33 0
## 3417 2021-03-09 23:38:07 0
## 3418 2021-03-05 21:47:33 0
## 3419 2021-03-08 20:34:29 0
## 3420 2021-03-08 20:34:29 0
## 3421 2021-03-09 22:30:54 0
## 3422 2021-03-09 03:26:41 0
## 3423 2021-03-09 19:55:19 1
## 3424 2021-03-08 11:25:06 0
## 3425 2021-03-09 14:44:00 1
## 3426 2021-03-09 17:12:58 0
## 3427 2021-03-09 17:12:58 0
## 3428 2021-03-09 17:12:58 0
## 3429 2021-03-09 07:38:10 2
## 3430 2021-03-09 07:38:10 2
## 3431 2021-03-09 07:38:10 2
## 3432 2021-03-06 12:32:12 0
## 3433 2021-03-10 14:46:35 12
## 3434 2021-03-05 21:09:45 1
## 3435 2021-03-05 21:09:45 1
## 3436 2021-03-08 04:17:31 0
## 3437 2021-03-08 18:33:35 0
## 3438 2021-03-08 05:04:12 0
## 3439 2021-03-08 05:04:12 0
## 3440 2021-03-10 02:49:28 0
## 3441 2021-03-11 08:20:53 0
## 3442 2021-03-10 12:11:34 0
## 3443 2021-03-10 12:11:34 0
## 3444 2021-03-08 02:50:09 0
## 3445 2021-03-09 06:59:22 0
## 3446 2021-03-11 12:41:10 0
## 3447 2021-03-08 22:14:07 0
## 3448 2021-03-08 22:14:07 0
## 3449 2021-03-08 02:11:55 0
## 3450 2021-03-09 22:21:01 0
## 3451 2021-03-09 22:21:01 0
## 3452 2021-03-08 03:11:01 0
## 3453 2021-03-08 02:56:52 0
## 3454 2021-03-08 02:56:52 0
280
## 3455 2021-03-09 07:12:25 1
## 3456 2021-03-07 13:22:49 0
## 3457 2021-03-05 10:38:49 0
## 3458 2021-03-08 22:44:08 0
## 3459 2021-03-08 22:44:08 0
## 3460 2021-03-08 01:04:19 2
## 3461 2021-03-08 01:04:19 2
## 3462 2021-03-11 07:43:08 0
## 3463 2021-03-11 07:43:08 0
## 3464 2021-03-08 03:36:31 1
## 3465 2021-03-08 03:36:31 1
## 3466 2021-03-09 00:26:38 0
## 3467 2021-03-09 11:19:59 0
## 3468 2021-03-09 11:19:59 0
## 3469 2021-03-09 20:06:33 0
## 3470 2021-03-09 20:06:33 0
## 3471 2021-03-09 20:06:33 0
## 3472 2021-03-09 20:06:33 0
## 3473 2021-03-09 20:06:33 0
## 3474 2021-03-10 19:59:33 0
## 3475 2021-03-07 03:08:57 0
## 3476 2021-03-06 18:40:08 0
## 3477 2021-03-06 18:40:08 0
## 3478 2021-03-09 15:29:09 0
## 3479 2021-03-09 15:29:09 0
## 3480 2021-03-08 05:41:16 0
## 3481 2021-03-08 11:40:58 0
## 3482 2021-03-11 16:01:11 0
## 3483 2021-03-08 01:25:41 0
## 3484 2021-03-09 01:18:14 0
## 3485 2021-03-10 03:57:01 0
## 3486 2021-03-10 15:33:24 1
## 3487 2021-03-08 12:36:51 0
## 3488 2021-03-08 12:36:51 0
## 3489 2021-03-08 15:34:45 0
## 3490 2021-03-08 15:34:45 0
## 3491 2021-03-10 18:14:38 0
## 3492 2021-03-08 01:25:57 0
## 3493 2021-03-08 01:25:57 0
## 3494 2021-03-11 11:55:42 0
## 3495 2021-03-08 11:51:25 0
## 3496 2021-03-10 18:39:04 0
## 3497 2021-03-10 18:39:04 0
## 3498 2021-03-08 09:20:48 0
## 3499 2021-03-08 02:10:19 2
## 3500 2021-03-11 08:53:05 0
## 3501 2021-03-07 19:39:39 0
## 3502 2021-03-07 19:39:39 0
## 3503 2021-03-08 22:33:54 0
## 3504 2021-03-10 00:46:35 0
## 3505 2021-03-07 12:41:41 0
## 3506 2021-03-08 23:30:54 0
## 3507 2021-03-09 07:32:08 0
## 3508 2021-03-08 19:03:40 0
281
## 3509 2021-03-10 04:12:12 0
## 3510 2021-03-08 07:10:24 0
## 3511 2021-03-10 17:05:33 1
## 3512 2021-03-09 10:27:37 0
## 3513 2021-03-08 01:33:38 1
## 3514 2021-03-07 22:51:13 0
## 3515 2021-03-07 22:51:13 0
## 3516 2021-03-09 00:09:19 0
## 3517 2021-03-08 10:00:31 0
## 3518 2021-03-09 10:44:29 0
## 3519 2021-03-04 22:29:37 2
## 3520 2021-03-11 11:53:22 1
## 3521 2021-03-09 04:58:44 0
## 3522 2021-03-09 04:58:44 0
## 3523 2021-03-09 04:58:44 0
## 3524 2021-03-08 05:12:50 2
## 3525 2021-03-08 05:12:50 2
## 3526 2021-03-09 04:29:50 0
## 3527 2021-03-11 13:13:04 0
## 3528 2021-03-08 02:02:58 18
## 3529 2021-03-08 02:02:58 18
## 3530 2021-03-08 19:06:28 0
## 3531 2021-03-08 19:06:28 0
## 3532 2021-03-06 00:20:55 0
## 3533 2021-03-09 01:28:14 0
## 3534 2021-03-09 08:02:28 0
## 3535 2021-03-09 08:02:28 0
## 3536 2021-03-09 08:02:28 0
## 3537 2021-03-08 10:15:28 0
## 3538 2021-03-08 10:15:28 0
## 3539 2021-03-08 03:22:17 0
## 3540 2021-03-08 03:22:17 0
## 3541 2021-03-07 10:11:42 2
## 3542 2021-03-08 12:22:26 1
## 3543 2021-03-06 01:12:57 0
## 3544 2021-03-10 07:39:50 0
## 3545 2021-03-10 07:39:50 0
## 3546 2021-03-07 17:41:05 0
## 3547 2021-03-07 17:41:05 0
## 3548 2021-03-07 16:02:22 3
## 3549 2021-03-08 05:44:58 0
## 3550 2021-03-08 05:44:58 0
## 3551 2021-03-10 11:38:08 1
## 3552 2021-03-08 08:44:36 0
## 3553 2021-03-08 08:44:36 0
## 3554 2021-03-08 13:55:37 0
## 3555 2021-03-08 02:54:29 0
## 3556 2021-03-08 02:54:29 0
## 3557 2021-03-07 09:33:55 0
## 3558 2021-03-10 22:29:35 0
## 3559 2021-03-10 22:29:35 0
## 3560 2021-03-10 22:29:35 0
## 3561 2021-03-08 10:49:56 1
## 3562 2021-03-08 10:49:56 1
282
## 3563 2021-03-08 19:55:57 0
## 3564 2021-03-10 12:03:53 0
## 3565 2021-03-10 12:03:53 0
## 3566 2021-03-09 12:18:55 1
## 3567 2021-03-09 15:08:14 0
## 3568 2021-03-08 04:34:05 0
## 3569 2021-03-07 15:37:17 0
## 3570 2021-03-09 19:27:15 0
## 3571 2021-03-08 12:53:58 3
## 3572 2021-03-08 03:34:38 0
## 3573 2021-03-08 03:34:38 0
## 3574 2021-03-08 03:34:38 0
## 3575 2021-03-08 02:52:37 0
## 3576 2021-03-09 01:49:28 0
## 3577 2021-03-07 18:01:15 0
## 3578 2021-03-07 18:01:15 0
## 3579 2021-03-09 00:09:31 5
## 3580 2021-03-08 17:12:26 0
## 3581 2021-03-06 18:05:59 1
## 3582 2021-03-06 18:05:59 1
## 3583 2021-03-05 17:41:50 0
## 3584 2021-03-05 17:41:50 0
## 3585 2021-03-05 17:41:50 0
## 3586 2021-03-05 17:41:50 0
## 3587 2021-03-10 16:01:47 0
## 3588 2021-03-09 11:26:34 0
## 3589 2021-03-09 11:26:34 0
## 3590 2021-03-09 11:26:34 0
## 3591 2021-03-08 01:53:37 0
## 3592 2021-03-08 02:42:07 0
## 3593 2021-03-08 06:40:25 0
## 3594 2021-03-08 18:26:40 0
## 3595 2021-03-08 18:26:40 0
## 3596 2021-03-08 18:26:40 0
## 3597 2021-03-08 16:03:03 0
## 3598 2021-03-08 16:03:03 0
## 3599 2021-03-08 16:03:03 0
## 3600 2021-03-09 18:50:50 0
## 3601 2021-03-06 14:23:15 0
## 3602 2021-03-09 21:35:44 0
## 3603 2021-03-09 21:35:44 0
## 3604 2021-03-09 21:35:44 0
## 3605 2021-03-08 09:11:25 0
## 3606 2021-03-11 12:16:29 0
## 3607 2021-03-08 18:35:29 0
## 3608 2021-03-08 01:02:06 0
## 3609 2021-03-08 01:02:06 0
## 3610 2021-03-08 03:51:47 0
## 3611 2021-03-08 05:52:08 1
## 3612 2021-03-10 21:38:47 0
## 3613 2021-03-10 21:38:47 0
## 3614 2021-03-10 21:38:47 0
## 3615 2021-03-10 21:38:47 0
## 3616 2021-03-10 21:38:47 0
283
## 3617 2021-03-08 15:41:02 1
## 3618 2021-03-08 01:57:14 0
## 3619 2021-03-08 17:46:31 0
## 3620 2021-03-08 17:46:31 0
## 3621 2021-03-10 20:59:00 1
## 3622 2021-03-10 20:59:00 1
## 3623 2021-03-09 20:19:53 0
## 3624 2021-03-07 22:50:40 0
## 3625 2021-03-07 22:50:40 0
## 3626 2021-03-10 12:38:30 384
## 3627 2021-03-08 19:23:57 0
## 3628 2021-03-10 15:12:36 25
## 3629 2021-03-09 19:29:24 0
## 3630 2021-03-07 15:51:32 0
## 3631 2021-03-07 15:51:32 0
## 3632 2021-03-07 15:51:32 0
## 3633 2021-03-07 15:51:32 0
## 3634 2021-03-06 14:25:19 0
## 3635 2021-03-06 14:25:19 0
## 3636 2021-03-09 01:05:40 0
## 3637 2021-03-09 00:50:19 0
## 3638 2021-03-08 19:52:05 0
## 3639 2021-03-08 15:36:25 0
## 3640 2021-03-08 18:02:14 0
## 3641 2021-03-08 18:02:14 0
## 3642 2021-03-08 18:02:14 0
## 3643 2021-03-08 18:02:14 0
## 3644 2021-03-08 18:02:14 0
## 3645 2021-03-11 00:58:10 0
## 3646 2021-03-11 00:58:10 0
## 3647 2021-03-11 00:58:10 0
## 3648 2021-03-11 00:58:10 0
## 3649 2021-03-11 00:58:10 0
## 3650 2021-03-11 00:58:10 0
## 3651 2021-03-11 00:58:10 0
## 3652 2021-03-11 00:58:10 0
## 3653 2021-03-11 00:58:10 0
## 3654 2021-03-10 17:37:58 0
## 3655 2021-03-08 11:31:36 0
## 3656 2021-03-08 11:31:36 0
## 3657 2021-03-06 21:06:54 0
## 3658 2021-03-04 22:49:28 1
## 3659 2021-03-04 22:49:28 1
## 3660 2021-03-08 11:35:46 0
## 3661 2021-03-08 02:32:17 0
## 3662 2021-03-08 02:08:27 0
## 3663 2021-03-09 15:35:49 0
## 3664 2021-03-10 15:36:05 0
## 3665 2021-03-10 15:36:05 0
## 3666 2021-03-10 15:36:05 0
## 3667 2021-03-10 15:36:05 0
## 3668 2021-03-10 15:36:05 0
## 3669 2021-03-10 15:36:05 0
## 3670 2021-03-10 15:36:05 0
284
## 3671 2021-03-10 15:36:05 0
## 3672 2021-03-09 16:49:48 0
## 3673 2021-03-11 00:32:50 0
## 3674 2021-03-10 07:04:15 0
## 3675 2021-03-10 07:04:15 0
## 3676 2021-03-10 07:04:15 0
## 3677 2021-03-09 13:08:17 1
## 3678 2021-03-08 09:54:08 0
## 3679 2021-03-08 09:54:08 0
## 3680 2021-03-08 10:44:50 0
## 3681 2021-03-08 05:32:15 0
## 3682 2021-03-09 13:31:29 0
## 3683 2021-03-09 13:31:29 0
## 3684 2021-03-08 13:16:44 0
## 3685 2021-03-08 13:16:44 0
## 3686 2021-03-09 03:48:26 0
## 3687 2021-03-08 15:45:22 0
## 3688 2021-03-08 02:35:38 0
## 3689 2021-03-09 18:34:29 0
## 3690 2021-03-08 15:12:26 0
## 3691 2021-03-08 04:40:44 0
## 3692 2021-03-08 04:40:44 0
## 3693 2021-03-08 04:40:44 0
## 3694 2021-03-08 05:25:26 0
## 3695 2021-03-08 05:25:26 0
## 3696 2021-03-08 04:40:48 0
## 3697 2021-03-07 19:55:50 0
## 3698 2021-03-09 20:07:43 0
## 3699 2021-03-09 21:16:44 0
## 3700 2021-03-08 02:25:12 1
## 3701 2021-03-08 02:25:12 1
## 3702 2021-03-08 02:25:12 1
## 3703 2021-03-08 02:25:12 1
## 3704 2021-03-08 02:25:12 1
## 3705 2021-03-10 17:12:06 10
## 3706 2021-03-08 05:56:12 0
## 3707 2021-03-08 08:54:23 0
## 3708 2021-03-08 08:54:23 0
## 3709 2021-03-09 06:51:29 0
## 3710 2021-03-09 06:51:29 0
## 3711 2021-03-09 06:51:29 0
## 3712 2021-03-06 23:55:34 0
## 3713 2021-03-04 18:27:47 0
## 3714 2021-03-04 18:27:47 0
## 3715 2021-03-09 22:36:42 0
## 3716 2021-03-08 09:46:51 0
## 3717 2021-03-09 00:24:31 0
## 3718 2021-03-04 15:51:54 0
## 3719 2021-03-05 12:43:43 0
## 3720 2021-03-05 12:43:43 0
## 3721 2021-03-08 02:18:38 0
## 3722 2021-03-04 22:20:19 0
## 3723 2021-03-10 18:31:10 0
## 3724 2021-03-05 19:19:25 0
285
## 3725 2021-03-05 19:19:25 0
## 3726 2021-03-05 19:19:25 0
## 3727 2021-03-05 19:19:25 0
## 3728 2021-03-08 20:07:20 0
## 3729 2021-03-08 03:20:25 1
## 3730 2021-03-06 09:53:27 0
## 3731 2021-03-10 16:57:57 1
## 3732 2021-03-10 19:15:47 1
## 3733 2021-03-07 14:17:55 0
## 3734 2021-03-07 15:34:17 1
## 3735 2021-03-08 16:11:40 0
## 3736 2021-03-08 16:11:40 0
## 3737 2021-03-08 01:48:45 0
## 3738 2021-03-08 17:21:03 0
## 3739 2021-03-08 01:44:04 4
## 3740 2021-03-05 19:00:15 0
## 3741 2021-03-05 19:00:15 0
## 3742 2021-03-08 20:03:38 0
## 3743 2021-03-07 16:26:56 1
## 3744 2021-03-08 02:11:51 0
## 3745 2021-03-11 02:19:44 0
## 3746 2021-03-08 08:50:52 0
## 3747 2021-03-09 07:56:52 0
## 3748 2021-03-09 07:56:52 0
## 3749 2021-03-10 00:41:14 0
## 3750 2021-03-09 01:06:53 0
## 3751 2021-03-08 12:19:43 0
## 3752 2021-03-10 22:27:18 0
## 3753 2021-03-07 11:17:17 0
## 3754 2021-03-10 14:50:44 0
## 3755 2021-03-09 16:49:27 0
## 3756 2021-03-09 16:49:27 0
## 3757 2021-03-08 04:06:31 0
## 3758 2021-03-08 01:06:45 2
## 3759 2021-03-08 15:13:11 0
## 3760 2021-03-08 09:41:48 0
## 3761 2021-03-10 17:06:05 2
## 3762 2021-03-10 17:06:05 2
## 3763 2021-03-10 17:06:05 2
## 3764 2021-03-10 17:06:05 2
## 3765 2021-03-08 03:19:06 5
## 3766 2021-03-10 18:37:52 0
## 3767 2021-03-09 12:22:28 0
## 3768 2021-03-10 06:47:00 0
## 3769 2021-03-09 07:20:36 0
## 3770 2021-03-08 03:38:39 0
## 3771 2021-03-08 14:23:26 0
## 3772 2021-03-09 20:16:43 0
## 3773 2021-03-11 15:51:46 0
## 3774 2021-03-08 07:20:52 0
## 3775 2021-03-08 01:29:58 0
## 3776 2021-03-08 06:46:13 0
## 3777 2021-03-09 18:02:14 0
## 3778 2021-03-06 00:01:24 0
286
## 3779 2021-03-06 00:01:24 0
## 3780 2021-03-06 00:01:24 0
## 3781 2021-03-07 11:06:45 0
## 3782 2021-03-11 01:04:17 0
## 3783 2021-03-09 00:36:18 1
## 3784 2021-03-10 22:05:26 0
## 3785 2021-03-10 22:05:26 0
## 3786 2021-03-08 08:04:17 0
## 3787 2021-03-07 21:17:25 0
## 3788 2021-03-08 04:45:04 0
## 3789 2021-03-08 04:45:04 0
## 3790 2021-03-10 03:19:05 0
## 3791 2021-03-11 08:42:28 0
## 3792 2021-03-11 08:42:28 0
## 3793 2021-03-11 08:42:28 0
## 3794 2021-03-08 02:23:35 0
## 3795 2021-03-09 15:25:35 0
## 3796 2021-03-06 00:03:19 0
## 3797 2021-03-06 00:03:19 0
## 3798 2021-03-06 00:03:19 0
## 3799 2021-03-08 07:11:10 0
## 3800 2021-03-08 02:17:01 1
## 3801 2021-03-08 02:17:01 1
## 3802 2021-03-08 02:17:01 1
## 3803 2021-03-08 16:20:15 0
## 3804 2021-03-06 15:51:52 0
## 3805 2021-03-06 03:15:08 0
## 3806 2021-03-10 09:26:09 0
## 3807 2021-03-09 20:10:23 1
## 3808 2021-03-09 20:10:23 1
## 3809 2021-03-09 23:15:30 0
## 3810 2021-03-08 21:19:01 0
## 3811 2021-03-08 21:19:01 0
## 3812 2021-03-08 21:19:01 0
## 3813 2021-03-08 09:51:27 0
## 3814 2021-03-09 22:21:15 0
## 3815 2021-03-09 22:21:15 0
## 3816 2021-03-08 07:58:58 0
## 3817 2021-03-10 09:57:05 0
## 3818 2021-03-10 09:57:05 0
## 3819 2021-03-08 19:35:22 0
## 3820 2021-03-09 23:26:10 0
## 3821 2021-03-09 23:26:10 0
## 3822 2021-03-09 23:26:10 0
## 3823 2021-03-08 06:13:05 4
## 3824 2021-03-08 06:13:05 4
## 3825 2021-03-08 06:17:34 0
## 3826 2021-03-10 02:37:24 0
## 3827 2021-03-08 03:25:13 1
## 3828 2021-03-09 12:24:13 1
## 3829 2021-03-09 12:24:13 1
## 3830 2021-03-08 04:09:01 1
## 3831 2021-03-11 10:04:43 0
## 3832 2021-03-11 09:23:29 0
287
## 3833 2021-03-09 20:50:40 0
## 3834 2021-03-09 11:40:41 0
## 3835 2021-03-09 11:40:41 0
## 3836 2021-03-08 02:21:36 0
## 3837 2021-03-08 06:30:08 0
## 3838 2021-03-08 06:30:08 0
## 3839 2021-03-11 14:18:21 0
## 3840 2021-03-11 04:01:55 0
## 3841 2021-03-11 04:01:55 0
## 3842 2021-03-11 04:01:55 0
## 3843 2021-03-10 21:50:51 0
## 3844 2021-03-10 21:50:51 0
## 3845 2021-03-10 21:50:51 0
## 3846 2021-03-10 21:50:51 0
## 3847 2021-03-08 00:35:55 0
## 3848 2021-03-08 01:41:45 0
## 3849 2021-03-08 01:37:29 0
## 3850 2021-03-09 09:27:49 0
## 3851 2021-03-09 01:13:35 0
## 3852 2021-03-09 01:13:35 0
## 3853 2021-03-09 02:15:59 0
## 3854 2021-03-09 02:15:59 0
## 3855 2021-03-09 21:39:52 0
## 3856 2021-03-07 15:33:04 0
## 3857 2021-03-08 17:11:03 0
## 3858 2021-03-10 23:32:27 1
## 3859 2021-03-07 14:26:36 0
## 3860 2021-03-08 07:33:49 0
## 3861 2021-03-08 07:33:49 0
## 3862 2021-03-08 07:33:49 0
## 3863 2021-03-09 02:22:05 4
## 3864 2021-03-08 03:38:02 0
## 3865 2021-03-10 05:21:55 0
## 3866 2021-03-10 05:21:55 0
## 3867 2021-03-10 05:21:55 0
## 3868 2021-03-11 08:17:52 0
## 3869 2021-03-11 08:17:52 0
## 3870 2021-03-11 08:17:52 0
## 3871 2021-03-11 12:09:20 0
## 3872 2021-03-10 14:35:37 0
## 3873 2021-03-09 08:16:47 3
## 3874 2021-03-09 03:55:17 0
## 3875 2021-03-09 15:30:00 7
## 3876 2021-03-08 22:19:31 0
## 3877 2021-03-10 06:39:16 0
## 3878 2021-03-09 22:18:57 0
## 3879 2021-03-10 20:04:45 0
## 3880 2021-03-10 20:04:45 0
## 3881 2021-03-10 20:04:45 0
## 3882 2021-03-10 20:04:45 0
## 3883 2021-03-10 20:04:45 0
## 3884 2021-03-08 14:12:16 0
## 3885 2021-03-08 01:39:05 0
## 3886 2021-03-06 21:11:24 0
288
## 3887 2021-03-06 21:11:24 0
## 3888 2021-03-09 17:56:57 0
## 3889 2021-03-09 00:19:35 9
## 3890 2021-03-09 00:19:35 9
## 3891 2021-03-10 22:12:40 0
## 3892 2021-03-10 22:12:40 0
## 3893 2021-03-11 17:10:53 0
## 3894 2021-03-11 17:10:53 0
## 3895 2021-03-09 07:34:49 0
## 3896 2021-03-08 01:34:23 1
## 3897 2021-03-08 01:34:23 1
## 3898 2021-03-08 01:34:23 1
## 3899 2021-03-08 01:34:23 1
## 3900 2021-03-08 01:34:23 1
## 3901 2021-03-08 01:34:23 1
## 3902 2021-03-08 01:34:23 1
## 3903 2021-03-08 01:34:23 1
## 3904 2021-03-09 20:09:35 0
## 3905 2021-03-08 04:18:37 0
## 3906 2021-03-08 14:52:22 0
## 3907 2021-03-08 13:05:37 0
## 3908 2021-03-09 08:47:32 39
## 3909 2021-03-09 08:47:32 39
## 3910 2021-03-09 07:18:08 0
## 3911 2021-03-06 02:53:58 0
## 3912 2021-03-06 02:53:58 0
## 3913 2021-03-06 02:53:58 0
## 3914 2021-03-06 02:53:58 0
## 3915 2021-03-08 06:28:34 0
## 3916 2021-03-08 06:28:34 0
## 3917 2021-03-08 06:28:34 0
## 3918 2021-03-08 04:11:01 1
## 3919 2021-03-06 04:55:54 2
## 3920 2021-03-06 04:55:54 2
## 3921 2021-03-10 10:12:57 0
## 3922 2021-03-07 04:14:50 1
## 3923 2021-03-07 04:14:50 1
## 3924 2021-03-07 04:14:50 1
## 3925 2021-03-09 21:33:13 0
## 3926 2021-03-08 11:42:11 0
## 3927 2021-03-08 14:41:13 0
## 3928 2021-03-10 15:51:11 2
## 3929 2021-03-10 15:51:11 2
## 3930 2021-03-09 11:41:02 0
## 3931 2021-03-08 07:26:48 1
## 3932 2021-03-08 02:32:01 0
## 3933 2021-03-08 02:32:01 0
## 3934 2021-03-10 05:31:18 0
## 3935 2021-03-10 05:31:18 0
## 3936 2021-03-10 05:31:18 0
## 3937 2021-03-10 16:27:36 0
## 3938 2021-03-08 19:40:53 0
## 3939 2021-03-08 19:40:53 0
## 3940 2021-03-08 23:46:28 0
289
## 3941 2021-03-08 23:46:28 0
## 3942 2021-03-08 11:10:57 0
## 3943 2021-03-06 10:00:06 2
## 3944 2021-03-08 13:19:03 0
## 3945 2021-03-08 13:19:03 0
## 3946 2021-03-08 13:19:03 0
## 3947 2021-03-10 13:23:21 0
## 3948 2021-03-08 03:35:28 0
## 3949 2021-03-08 22:42:37 0
## 3950 2021-03-10 11:48:23 0
## 3951 2021-03-08 04:34:05 0
## 3952 2021-03-09 14:40:30 0
## 3953 2021-03-08 14:30:39 3
## 3954 2021-03-08 14:30:39 3
## 3955 2021-03-08 06:00:12 0
## 3956 2021-03-08 01:12:54 0
## 3957 2021-03-08 18:39:06 0
## 3958 2021-03-10 03:10:07 0
## 3959 2021-03-10 03:10:07 0
## 3960 2021-03-10 11:18:36 0
## 3961 2021-03-10 11:18:36 0
## 3962 2021-03-08 18:45:13 0
## 3963 2021-03-09 00:36:15 1
## 3964 2021-03-09 00:36:15 1
## 3965 2021-03-08 01:57:30 3
## 3966 2021-03-05 04:27:32 0
## 3967 2021-03-10 14:40:47 0
## 3968 2021-03-08 02:58:42 0
## 3969 2021-03-08 02:58:42 0
## 3970 2021-03-06 21:45:28 0
## 3971 2021-03-06 21:45:28 0
## 3972 2021-03-06 21:45:28 0
## 3973 2021-03-08 01:34:28 0
## 3974 2021-03-07 17:11:42 0
## 3975 2021-03-07 17:11:42 0
## 3976 2021-03-10 21:31:33 0
## 3977 2021-03-05 19:23:18 0
## 3978 2021-03-08 09:37:54 0
## 3979 2021-03-09 05:59:43 0
## 3980 2021-03-08 10:33:37 1
## 3981 2021-03-08 10:33:37 1
## 3982 2021-03-04 21:01:30 0
## 3983 2021-03-04 21:01:30 0
## 3984 2021-03-04 21:01:30 0
## 3985 2021-03-07 13:54:01 0
## 3986 2021-03-08 02:55:13 0
## 3987 2021-03-08 02:13:48 0
## 3988 2021-03-10 20:39:27 0
## 3989 2021-03-09 11:50:16 0
## 3990 2021-03-11 21:56:01 0
## 3991 2021-03-11 21:56:01 0
## 3992 2021-03-11 21:56:01 0
## 3993 2021-03-11 21:56:01 0
## 3994 2021-03-08 01:59:11 4
290
## 3995 2021-03-09 16:38:23 0
## 3996 2021-03-11 18:02:43 0
## 3997 2021-03-11 18:02:43 0
## 3998 2021-03-11 18:02:43 0
## 3999 2021-03-09 00:27:22 0
## 4000 2021-03-08 04:11:09 0
## 4001 2021-03-08 04:11:09 0
## 4002 2021-03-08 04:11:09 0
## 4003 2021-03-08 13:26:24 1
## 4004 2021-03-08 13:26:24 1
## 4005 2021-03-08 08:27:15 0
## 4006 2021-03-08 23:23:58 0
## 4007 2021-03-07 08:07:16 0
## 4008 2021-03-07 08:07:16 0
## 4009 2021-03-07 08:07:16 0
## 4010 2021-03-09 19:07:20 0
## 4011 2021-03-09 19:07:20 0
## 4012 2021-03-10 16:59:00 2
## 4013 2021-03-10 13:10:31 0
## 4014 2021-03-10 13:10:31 0
## 4015 2021-03-08 19:49:04 0
## 4016 2021-03-08 19:49:04 0
## 4017 2021-03-11 00:35:17 0
## 4018 2021-03-11 00:35:17 0
## 4019 2021-03-10 06:24:21 0
## 4020 2021-03-10 18:43:59 0
## 4021 2021-03-11 11:37:22 0
## 4022 2021-03-08 12:46:13 0
## 4023 2021-03-08 10:24:18 0
## 4024 2021-03-08 10:24:18 0
## 4025 2021-03-10 00:18:00 1
## 4026 2021-03-10 23:07:05 0
## 4027 2021-03-10 23:07:05 0
## 4028 2021-03-07 16:07:34 0
## 4029 2021-03-07 16:07:34 0
## 4030 2021-03-08 03:01:54 0
## 4031 2021-03-10 11:42:26 0
## 4032 2021-03-08 18:11:03 0
## 4033 2021-03-08 18:11:03 0
## 4034 2021-03-10 08:14:34 0
## 4035 2021-03-08 01:21:18 2
## 4036 2021-03-06 14:54:54 0
## 4037 2021-03-08 15:14:27 0
## 4038 2021-03-08 15:14:27 0
## 4039 2021-03-08 15:14:27 0
## 4040 2021-03-08 15:14:27 0
## 4041 2021-03-08 15:14:27 0
## 4042 2021-03-08 09:43:31 0
## 4043 2021-03-08 09:43:31 0
## 4044 2021-03-08 08:46:04 0
## 4045 2021-03-05 08:42:15 0
## 4046 2021-03-10 12:56:32 0
## 4047 2021-03-10 12:56:32 0
## 4048 2021-03-08 20:06:14 0
291
## 4049 2021-03-09 16:54:21 0
## 4050 2021-03-08 08:54:41 0
## 4051 2021-03-10 06:12:05 0
## 4052 2021-03-10 06:12:05 0
## 4053 2021-03-10 06:12:05 0
## 4054 2021-03-10 06:12:05 0
## 4055 2021-03-10 06:12:05 0
## 4056 2021-03-08 14:46:12 0
## 4057 2021-03-08 14:46:12 0
## 4058 2021-03-08 14:46:12 0
## 4059 2021-03-06 17:29:07 0
## 4060 2021-03-06 17:29:07 0
## 4061 2021-03-08 15:45:24 0
## 4062 2021-03-08 03:35:23 0
## 4063 2021-03-05 17:09:32 0
## 4064 2021-03-05 17:09:32 0
## 4065 2021-03-08 11:38:41 0
## 4066 2021-03-08 01:30:08 0
## 4067 2021-03-07 11:07:43 0
## 4068 2021-03-09 16:01:28 13
## 4069 2021-03-08 12:10:02 0
## 4070 2021-03-08 12:10:02 0
## 4071 2021-03-09 18:54:05 0
## 4072 2021-03-11 09:53:41 0
## 4073 2021-03-07 20:46:33 0
## 4074 2021-03-11 08:41:07 0
## 4075 2021-03-08 02:48:43 0
## 4076 2021-03-06 09:10:20 0
## 4077 2021-03-04 22:42:54 2
## 4078 2021-03-04 22:42:54 2
## 4079 2021-03-10 20:09:45 0
## 4080 2021-03-10 22:57:37 0
## 4081 2021-03-10 23:54:57 0
## 4082 2021-03-08 22:36:58 0
## 4083 2021-03-08 21:45:45 0
## 4084 2021-03-09 20:00:32 0
## 4085 2021-03-09 20:00:32 0
## 4086 2021-03-09 20:00:32 0
## 4087 2021-03-09 16:06:45 12
## 4088 2021-03-09 16:06:45 12
## 4089 2021-03-09 16:06:45 12
## 4090 2021-03-08 17:08:29 0
## 4091 2021-03-08 17:08:29 0
## 4092 2021-03-09 01:20:40 0
## 4093 2021-03-09 08:27:44 0
## 4094 2021-03-08 04:02:02 0
## 4095 2021-03-09 21:25:15 0
## 4096 2021-03-08 01:45:35 0
## 4097 2021-03-06 08:59:15 0
## 4098 2021-03-06 08:59:15 0
## 4099 2021-03-06 08:59:15 0
## 4100 2021-03-11 04:14:55 0
## 4101 2021-03-08 07:27:14 0
## 4102 2021-03-08 05:27:30 0
292
## 4103 2021-03-05 19:44:47 0
## 4104 2021-03-05 19:44:47 0
## 4105 2021-03-11 17:24:26 0
## 4106 2021-03-11 17:24:26 0
## 4107 2021-03-11 17:24:26 0
## 4108 2021-03-09 00:19:09 0
## 4109 2021-03-08 02:39:59 0
## 4110 2021-03-08 01:46:32 16
## 4111 2021-03-08 01:46:32 16
## 4112 2021-03-09 18:42:05 0
## 4113 2021-03-08 20:50:23 0
## 4114 2021-03-08 16:32:00 2
## 4115 2021-03-08 17:35:11 0
## 4116 2021-03-08 04:46:18 0
## 4117 2021-03-09 22:05:41 0
## 4118 2021-03-08 12:35:04 0
## 4119 2021-03-08 16:35:00 0
## 4120 2021-03-08 04:53:46 0
## 4121 2021-03-11 14:54:46 0
## 4122 2021-03-09 19:19:38 1
## 4123 2021-03-09 19:19:38 1
## 4124 2021-03-09 19:19:38 1
## 4125 2021-03-08 05:39:41 1
## 4126 2021-03-08 02:46:10 0
## 4127 2021-03-10 23:31:06 0
## 4128 2021-03-10 23:31:06 0
## 4129 2021-03-09 01:11:20 0
## 4130 2021-03-09 01:11:20 0
## 4131 2021-03-09 01:11:20 0
## 4132 2021-03-04 17:44:25 0
## 4133 2021-03-04 17:44:25 0
## 4134 2021-03-08 11:33:54 19
## 4135 2021-03-08 18:56:11 0
## 4136 2021-03-08 18:56:11 0
## 4137 2021-03-09 18:00:45 0
## 4138 2021-03-08 01:57:43 0
## 4139 2021-03-08 01:50:07 0
## 4140 2021-03-08 16:49:17 0
## 4141 2021-03-08 16:49:17 0
## 4142 2021-03-10 10:31:34 0
## 4143 2021-03-10 10:31:34 0
## 4144 2021-03-08 01:03:54 3
## 4145 2021-03-08 01:52:15 1
## 4146 2021-03-08 01:52:15 1
## 4147 2021-03-08 01:52:15 1
## 4148 2021-03-08 01:52:15 1
## 4149 2021-03-08 01:52:15 1
## 4150 2021-03-09 18:45:57 1
## 4151 2021-03-09 18:45:57 1
## 4152 2021-03-05 12:35:14 0
## 4153 2021-03-10 12:53:51 0
## 4154 2021-03-10 20:29:27 1
## 4155 2021-03-07 14:37:57 0
## 4156 2021-03-08 01:48:39 0
293
## 4157 2021-03-09 08:23:31 0
## 4158 2021-03-05 05:11:52 2
## 4159 2021-03-05 05:11:52 2
## 4160 2021-03-08 04:00:18 0
## 4161 2021-03-08 04:00:18 0
## 4162 2021-03-08 10:29:04 0
## 4163 2021-03-08 01:49:37 0
## 4164 2021-03-08 16:40:26 0
## 4165 2021-03-07 14:44:10 0
## 4166 2021-03-10 10:10:42 0
## 4167 2021-03-09 11:12:48 7
## 4168 2021-03-09 11:12:48 7
## 4169 2021-03-09 19:32:05 0
## 4170 2021-03-09 19:32:05 0
## 4171 2021-03-09 19:32:05 0
## 4172 2021-03-07 17:43:36 0
## 4173 2021-03-07 17:43:36 0
## 4174 2021-03-07 17:43:36 0
## 4175 2021-03-10 22:30:45 0
## 4176 2021-03-10 22:30:45 0
## 4177 2021-03-10 15:14:16 0
## 4178 2021-03-10 15:14:16 0
## 4179 2021-03-09 22:07:05 4
## 4180 2021-03-09 22:07:05 4
## 4181 2021-03-08 09:14:41 0
## 4182 2021-03-07 15:32:13 0
## 4183 2021-03-08 01:45:50 0
## 4184 2021-03-08 01:45:50 0
## 4185 2021-03-08 01:45:50 0
## 4186 2021-03-08 01:45:50 0
## 4187 2021-03-08 01:45:50 0
## 4188 2021-03-08 12:25:51 0
## 4189 2021-03-05 14:58:42 0
## 4190 2021-03-05 14:58:42 0
## 4191 2021-03-05 14:58:42 0
## 4192 2021-03-08 03:04:44 1
## 4193 2021-03-08 03:00:30 1
## 4194 2021-03-08 20:03:53 0
## 4195 2021-03-08 01:54:14 0
## 4196 2021-03-08 01:54:14 0
## 4197 2021-03-08 01:18:29 0
## 4198 2021-03-08 14:19:28 1
## 4199 2021-03-08 11:25:37 0
## 4200 2021-03-08 11:25:37 0
## 4201 2021-03-08 11:25:37 0
## 4202 2021-03-09 18:37:55 0
## 4203 2021-03-10 03:28:45 1
## 4204 2021-03-10 03:28:45 1
## 4205 2021-03-10 16:27:17 0
## 4206 2021-03-08 14:21:59 0
## 4207 2021-03-05 12:34:40 3
## 4208 2021-03-05 12:34:40 3
## 4209 2021-03-05 12:34:40 3
## 4210 2021-03-11 02:55:33 1
294
## 4211 2021-03-08 15:57:01 0
## 4212 2021-03-09 04:53:00 1
## 4213 2021-03-07 10:02:53 0
## 4214 2021-03-06 07:45:48 0
## 4215 2021-03-06 07:45:48 0
## 4216 2021-03-06 07:45:48 0
## 4217 2021-03-09 11:45:13 0
## 4218 2021-03-09 20:28:49 0
## 4219 2021-03-09 08:23:52 0
## 4220 2021-03-11 14:48:27 0
## 4221 2021-03-11 14:48:27 0
## 4222 2021-03-10 08:36:23 1
## 4223 2021-03-10 08:36:23 1
## 4224 2021-03-08 16:49:32 0
## 4225 2021-03-08 16:49:32 0
## 4226 2021-03-08 16:49:32 0
## 4227 2021-03-08 16:49:32 0
## 4228 2021-03-04 16:19:34 2
## 4229 2021-03-09 08:43:34 0
## 4230 2021-03-09 08:43:34 0
## 4231 2021-03-06 17:39:33 0
## 4232 2021-03-10 19:49:12 0
## 4233 2021-03-07 00:23:37 0
## 4234 2021-03-08 17:33:58 0
## 4235 2021-03-08 06:30:41 0
## 4236 2021-03-08 06:30:41 0
## 4237 2021-03-08 01:44:21 4
## 4238 2021-03-11 07:07:06 0
## 4239 2021-03-05 20:19:45 0
## 4240 2021-03-07 09:15:15 17
## 4241 2021-03-10 15:58:30 0
## 4242 2021-03-08 17:23:54 0
## 4243 2021-03-08 05:11:38 0
## 4244 2021-03-08 05:11:38 0
## 4245 2021-03-08 05:11:38 0
## 4246 2021-03-08 05:11:38 0
## 4247 2021-03-08 05:11:38 0
## 4248 2021-03-08 02:21:05 0
## 4249 2021-03-08 03:04:23 0
## 4250 2021-03-08 13:09:00 1
## 4251 2021-03-08 13:09:00 1
## 4252 2021-03-08 13:09:00 1
## 4253 2021-03-09 01:42:09 0
## 4254 2021-03-09 02:14:48 0
## 4255 2021-03-04 20:58:23 0
## 4256 2021-03-09 06:04:16 0
## 4257 2021-03-09 06:04:16 0
## 4258 2021-03-09 06:04:16 0
## 4259 2021-03-08 13:25:15 0
## 4260 2021-03-08 20:36:47 0
## 4261 2021-03-08 20:36:47 0
## 4262 2021-03-10 06:16:55 0
## 4263 2021-03-08 07:31:07 1
## 4264 2021-03-08 03:35:14 2
295
## 4265 2021-03-08 03:35:14 2
## 4266 2021-03-09 12:56:13 0
## 4267 2021-03-09 12:56:13 0
## 4268 2021-03-08 16:11:45 12
## 4269 2021-03-10 11:55:24 3
## 4270 2021-03-07 15:35:28 0
## 4271 2021-03-09 16:11:47 0
## 4272 2021-03-10 04:26:55 0
## 4273 2021-03-08 14:07:28 37
## 4274 2021-03-08 14:07:28 37
## 4275 2021-03-08 14:07:28 37
## 4276 2021-03-08 14:12:33 0
## 4277 2021-03-08 21:34:40 5
## 4278 2021-03-08 21:34:40 5
## 4279 2021-03-09 14:32:56 0
## 4280 2021-03-08 14:30:11 0
## 4281 2021-03-08 03:45:37 0
## 4282 2021-03-08 06:05:52 0
## 4283 2021-03-08 06:05:52 0
## 4284 2021-03-08 06:05:52 0
## 4285 2021-03-10 13:06:17 0
## 4286 2021-03-08 14:00:06 0
## 4287 2021-03-08 14:00:06 0
## 4288 2021-03-10 22:49:24 0
## 4289 2021-03-08 05:51:36 0
## 4290 2021-03-09 16:33:34 0
## 4291 2021-03-07 15:40:50 1
## 4292 2021-03-07 15:40:50 1
## 4293 2021-03-07 15:40:50 1
## 4294 2021-03-07 15:40:50 1
## 4295 2021-03-07 15:40:50 1
## 4296 2021-03-08 01:24:45 1
## 4297 2021-03-09 23:19:42 2
## 4298 2021-03-08 02:08:32 0
## 4299 2021-03-10 16:12:18 0
## 4300 2021-03-10 16:12:18 0
## 4301 2021-03-08 08:40:29 0
## 4302 2021-03-08 12:38:27 0
## 4303 2021-03-08 12:38:27 0
## 4304 2021-03-08 21:05:08 6
## 4305 2021-03-08 06:57:33 0
## 4306 2021-03-08 06:57:33 0
## 4307 2021-03-08 06:57:33 0
## 4308 2021-03-08 04:06:55 1
## 4309 2021-03-09 07:32:49 0
## 4310 2021-03-08 05:04:10 0
## 4311 2021-03-08 05:04:10 0
## 4312 2021-03-11 13:43:05 0
## 4313 2021-03-05 20:51:14 2
## 4314 2021-03-05 20:51:14 2
## 4315 2021-03-09 20:13:57 0
## 4316 2021-03-09 20:13:57 0
## 4317 2021-03-08 14:14:55 0
## 4318 2021-03-08 14:14:55 0
296
## 4319 2021-03-09 11:51:18 0
## 4320 2021-03-08 08:45:09 0
## 4321 2021-03-09 16:09:33 1
## 4322 2021-03-09 16:09:33 1
## 4323 2021-03-09 16:09:33 1
## 4324 2021-03-10 07:31:53 0
## 4325 2021-03-10 07:31:53 0
## 4326 2021-03-06 03:51:40 0
## 4327 2021-03-09 18:44:18 2
## 4328 2021-03-11 08:25:07 0
## 4329 2021-03-11 10:52:45 0
## 4330 2021-03-11 10:52:45 0
## 4331 2021-03-11 10:52:45 0
## 4332 2021-03-11 10:52:45 0
## 4333 2021-03-11 10:52:45 0
## 4334 2021-03-10 11:48:25 1
## 4335 2021-03-10 11:48:25 1
## 4336 2021-03-10 11:48:25 1
## 4337 2021-03-05 18:05:46 0
## 4338 2021-03-08 15:15:57 0
## 4339 2021-03-08 04:15:45 0
## 4340 2021-03-09 09:09:26 0
## 4341 2021-03-09 12:52:40 1
## 4342 2021-03-08 14:51:07 0
## 4343 2021-03-08 14:51:07 0
## 4344 2021-03-08 14:51:07 0
## 4345 2021-03-04 18:56:54 0
## 4346 2021-03-04 18:56:54 0
## 4347 2021-03-07 02:49:13 0
## 4348 2021-03-08 01:50:54 0
## 4349 2021-03-09 00:15:06 14
## 4350 2021-03-11 02:13:24 0
## 4351 2021-03-11 02:13:24 0
## 4352 2021-03-08 02:08:47 0
## 4353 2021-03-08 12:38:00 0
## 4354 2021-03-08 03:34:51 1
## 4355 2021-03-08 11:06:39 0
## 4356 2021-03-08 11:06:39 0
## 4357 2021-03-08 12:36:08 0
## 4358 2021-03-08 16:04:07 0
## 4359 2021-03-08 03:07:53 2
## 4360 2021-03-08 03:07:53 2
## 4361 2021-03-10 10:37:03 0
## 4362 2021-03-08 19:27:10 0
## 4363 2021-03-08 16:11:53 1
## 4364 2021-03-10 07:04:57 0
## 4365 2021-03-10 07:04:57 0
## 4366 2021-03-10 07:04:57 0
## 4367 2021-03-10 07:04:57 0
## 4368 2021-03-10 07:04:57 0
## 4369 2021-03-10 07:04:57 0
## 4370 2021-03-08 20:47:03 0
## 4371 2021-03-08 02:28:16 0
## 4372 2021-03-08 02:28:16 0
297
## 4373 2021-03-08 15:07:34 0
## 4374 2021-03-08 13:42:02 0
## 4375 2021-03-08 11:07:38 0
## 4376 2021-03-08 14:22:15 0
## 4377 2021-03-08 13:48:28 0
## 4378 2021-03-06 04:31:16 2
## 4379 2021-03-08 16:11:06 0
## 4380 2021-03-08 12:37:22 42
## 4381 2021-03-08 02:12:56 1
## 4382 2021-03-08 02:12:56 1
## 4383 2021-03-08 02:12:56 1
## 4384 2021-03-08 02:12:56 1
## 4385 2021-03-08 05:33:00 0
## 4386 2021-03-05 01:28:27 1
## 4387 2021-03-05 01:28:27 1
## 4388 2021-03-05 01:28:27 1
## 4389 2021-03-05 01:28:27 1
## 4390 2021-03-08 13:34:19 0
## 4391 2021-03-08 13:34:19 0
## 4392 2021-03-08 13:34:19 0
## 4393 2021-03-09 14:44:06 0
## 4394 2021-03-08 02:15:08 2
## 4395 2021-03-09 10:23:52 0
## 4396 2021-03-09 10:23:52 0
## 4397 2021-03-09 10:23:52 0
## 4398 2021-03-09 10:23:52 0
## 4399 2021-03-09 10:23:52 0
## 4400 2021-03-09 18:55:17 0
## 4401 2021-03-09 13:30:30 0
## 4402 2021-03-08 12:37:06 0
## 4403 2021-03-08 01:01:37 0
## 4404 2021-03-08 01:01:37 0
## 4405 2021-03-08 12:36:55 0
## 4406 2021-03-08 02:45:33 1
## 4407 2021-03-10 10:12:04 0
## 4408 2021-03-08 04:20:43 0
## 4409 2021-03-08 04:20:43 0
## 4410 2021-03-08 04:20:43 0
## 4411 2021-03-11 11:57:59 3
## 4412 2021-03-08 17:08:01 1
## 4413 2021-03-09 13:15:09 0
## 4414 2021-03-09 13:15:09 0
## 4415 2021-03-08 03:30:13 0
## 4416 2021-03-09 18:38:00 0
## 4417 2021-03-09 11:15:30 0
## 4418 2021-03-08 03:36:19 0
## 4419 2021-03-09 12:27:56 1
## 4420 2021-03-09 12:27:56 1
## 4421 2021-03-08 19:26:17 24
## 4422 2021-03-08 16:09:02 0
## 4423 2021-03-08 04:43:33 0
## 4424 2021-03-06 14:57:52 0
## 4425 2021-03-06 14:57:52 0
## 4426 2021-03-05 22:56:32 3
298
## 4427 2021-03-08 12:16:18 0
## 4428 2021-03-08 12:16:18 0
## 4429 2021-03-08 12:16:18 0
## 4430 2021-03-09 13:18:09 0
## 4431 2021-03-08 14:50:14 0
## 4432 2021-03-10 12:59:40 0
## 4433 2021-03-08 18:56:14 0
## 4434 2021-03-08 20:34:12 0
## 4435 2021-03-08 20:34:12 0
## 4436 2021-03-08 20:34:12 0
## 4437 2021-03-09 01:43:09 1
## 4438 2021-03-08 13:50:17 1
## 4439 2021-03-08 13:50:17 1
## 4440 2021-03-11 17:29:16 0
## 4441 2021-03-11 17:29:16 0
## 4442 2021-03-11 17:29:16 0
## 4443 2021-03-09 17:42:06 0
## 4444 2021-03-09 17:42:06 0
## 4445 2021-03-08 15:30:01 0
## 4446 2021-03-08 17:25:03 0
## 4447 2021-03-09 18:57:35 0
## 4448 2021-03-09 22:53:36 11
## 4449 2021-03-09 21:19:35 0
## 4450 2021-03-09 21:19:35 0
## 4451 2021-03-09 21:19:35 0
## 4452 2021-03-09 18:51:59 0
## 4453 2021-03-08 02:02:11 0
## 4454 2021-03-11 12:58:08 1
## 4455 2021-03-08 09:26:02 0
## 4456 2021-03-08 03:35:19 0
## 4457 2021-03-09 03:13:26 0
## 4458 2021-03-09 03:13:26 0
## 4459 2021-03-08 17:22:28 0
## 4460 2021-03-08 15:05:06 0
## 4461 2021-03-08 15:05:06 0
## 4462 2021-03-08 02:38:36 0
## 4463 2021-03-06 15:22:21 0
## 4464 2021-03-04 16:18:12 0
## 4465 2021-03-10 09:59:08 0
## 4466 2021-03-05 10:35:58 0
## 4467 2021-03-08 15:17:50 0
## 4468 2021-03-08 14:08:30 1
## 4469 2021-03-08 14:08:30 1
## 4470 2021-03-10 07:43:06 0
## 4471 2021-03-09 08:17:38 1
## 4472 2021-03-09 08:17:38 1
## 4473 2021-03-11 23:16:35 0
## 4474 2021-03-08 07:51:40 0
## 4475 2021-03-08 07:51:40 0
## 4476 2021-03-08 07:51:40 0
## 4477 2021-03-08 07:51:40 0
## 4478 2021-03-11 13:05:53 0
## 4479 2021-03-06 19:38:10 0
## 4480 2021-03-06 19:38:10 0
299
## 4481 2021-03-06 19:38:10 0
## 4482 2021-03-09 20:36:44 0
## 4483 2021-03-06 11:55:25 0
## 4484 2021-03-08 20:54:39 0
## 4485 2021-03-11 17:32:14 0
## 4486 2021-03-07 16:45:56 12
## 4487 2021-03-08 17:26:48 0
## 4488 2021-03-08 17:26:48 0
## 4489 2021-03-08 17:26:48 0
## 4490 2021-03-08 17:26:48 0
## 4491 2021-03-08 17:26:48 0
## 4492 2021-03-08 17:26:48 0
## 4493 2021-03-08 17:26:48 0
## 4494 2021-03-08 17:26:48 0
## 4495 2021-03-08 19:05:29 0
## 4496 2021-03-09 01:49:09 1
## 4497 2021-03-06 01:20:02 6
## 4498 2021-03-06 01:20:02 6
## 4499 2021-03-06 01:20:02 6
## 4500 2021-03-06 01:20:02 6
## 4501 2021-03-10 15:22:06 0
## 4502 2021-03-08 04:54:58 0
## 4503 2021-03-08 04:54:58 0
## 4504 2021-03-08 19:19:54 0
## 4505 2021-03-08 19:19:54 0
## 4506 2021-03-09 20:06:20 0
## 4507 2021-03-09 20:06:20 0
## 4508 2021-03-09 17:12:13 0
## 4509 2021-03-10 10:44:52 0
## 4510 2021-03-10 10:44:52 0
## 4511 2021-03-08 15:50:12 0
## 4512 2021-03-05 02:28:07 16
## 4513 2021-03-08 18:46:00 0
## 4514 2021-03-09 22:20:36 0
## 4515 2021-03-09 22:20:36 0
## 4516 2021-03-09 22:20:36 0
## 4517 2021-03-09 22:20:36 0
## 4518 2021-03-11 07:06:50 0
## 4519 2021-03-11 07:06:50 0
## 4520 2021-03-11 07:06:50 0
## 4521 2021-03-08 12:06:05 0
## 4522 2021-03-07 23:59:29 0
## 4523 2021-03-07 23:59:29 0
## 4524 2021-03-09 18:31:40 0
## 4525 2021-03-09 16:37:40 0
## 4526 2021-03-07 00:03:41 1
## 4527 2021-03-07 00:03:41 1
## 4528 2021-03-08 15:44:57 0
## 4529 2021-03-08 14:22:11 0
## 4530 2021-03-08 10:21:15 0
## 4531 2021-03-07 11:08:20 0
## 4532 2021-03-05 16:09:13 0
## 4533 2021-03-07 00:27:39 1
## 4534 2021-03-08 07:16:52 0
300
## 4535 2021-03-08 03:12:35 0
## 4536 2021-03-08 03:12:35 0
## 4537 2021-03-08 19:01:29 0
## 4538 2021-03-08 02:20:56 0
## 4539 2021-03-10 14:55:29 0
## 4540 2021-03-10 08:23:19 3
## 4541 2021-03-10 08:23:19 3
## 4542 2021-03-08 18:19:19 0
## 4543 2021-03-08 02:09:19 1
## 4544 2021-03-08 17:30:38 0
## 4545 2021-03-11 03:28:56 0
## 4546 2021-03-11 03:28:56 0
## 4547 2021-03-09 08:06:17 0
## 4548 2021-03-10 02:31:05 1
## 4549 2021-03-07 05:56:03 0
## 4550 2021-03-07 05:56:03 0
## 4551 2021-03-08 19:25:40 0
## 4552 2021-03-04 18:53:11 1
## 4553 2021-03-08 12:35:37 0
## 4554 2021-03-08 12:35:37 0
## 4555 2021-03-05 00:00:56 1
## 4556 2021-03-09 16:09:13 0
## 4557 2021-03-09 16:09:13 0
## 4558 2021-03-09 16:09:13 0
## 4559 2021-03-10 03:23:44 0
## 4560 2021-03-09 21:13:51 0
## 4561 2021-03-11 19:50:31 0
## 4562 2021-03-09 18:30:20 0
## 4563 2021-03-09 18:30:20 0
## 4564 2021-03-11 00:32:36 0
## 4565 2021-03-08 10:40:12 0
## 4566 2021-03-08 10:40:12 0
## 4567 2021-03-08 11:01:56 0
## 4568 2021-03-10 17:20:14 0
## 4569 2021-03-09 15:57:21 0
## 4570 2021-03-09 03:36:16 0
## 4571 2021-03-08 18:39:45 0
## 4572 2021-03-09 10:48:20 1
## 4573 2021-03-10 05:54:41 0
## 4574 2021-03-10 05:54:41 0
## 4575 2021-03-08 16:29:59 0
## 4576 2021-03-08 07:02:20 0
## 4577 2021-03-09 03:50:21 0
## 4578 2021-03-09 03:50:21 0
## 4579 2021-03-09 03:50:21 0
## 4580 2021-03-09 03:50:21 0
## 4581 2021-03-10 01:28:07 1
## 4582 2021-03-10 01:28:07 1
## 4583 2021-03-10 01:28:07 1
## 4584 2021-03-05 09:26:38 0
## 4585 2021-03-05 09:26:38 0
## 4586 2021-03-11 18:41:31 1
## 4587 2021-03-11 18:41:31 1
## 4588 2021-03-09 11:54:53 0
301
## 4589 2021-03-09 10:39:50 0
## 4590 2021-03-08 02:15:16 0
## 4591 2021-03-10 23:53:07 0
## 4592 2021-03-09 13:21:15 1
## 4593 2021-03-08 18:45:17 0
## 4594 2021-03-08 04:58:18 1
## 4595 2021-03-09 08:14:43 0
## 4596 2021-03-09 08:14:43 0
## 4597 2021-03-09 08:14:43 0
## 4598 2021-03-08 13:59:48 1
## 4599 2021-03-06 15:41:07 1
## 4600 2021-03-06 15:41:07 1
## 4601 2021-03-08 21:18:34 0
## 4602 2021-03-10 18:08:38 0
## 4603 2021-03-10 18:08:38 0
## 4604 2021-03-11 01:57:37 0
## 4605 2021-03-05 13:03:31 0
## 4606 2021-03-08 13:06:46 0
## 4607 2021-03-08 12:34:43 0
## 4608 2021-03-11 12:16:45 335
## 4609 2021-03-11 12:16:45 335
## 4610 2021-03-09 21:44:58 0
## 4611 2021-03-09 21:44:58 0
## 4612 2021-03-08 01:51:00 1
## 4613 2021-03-08 01:51:00 1
## 4614 2021-03-05 03:49:41 0
## 4615 2021-03-11 17:49:28 0
## 4616 2021-03-11 17:49:28 0
## 4617 2021-03-11 17:49:28 0
## 4618 2021-03-09 17:10:14 0
## 4619 2021-03-08 02:53:38 0
## 4620 2021-03-08 02:53:38 0
## 4621 2021-03-08 10:51:57 0
## 4622 2021-03-08 04:31:36 0
## 4623 2021-03-08 04:31:36 0
## 4624 2021-03-08 04:31:36 0
## 4625 2021-03-10 15:18:14 0
## 4626 2021-03-08 16:50:49 0
## 4627 2021-03-08 16:50:49 0
## 4628 2021-03-08 16:50:49 0
## 4629 2021-03-05 05:29:49 125
## 4630 2021-03-05 05:29:49 125
## 4631 2021-03-06 16:50:53 0
## 4632 2021-03-09 15:21:29 0
## 4633 2021-03-09 15:21:29 0
## 4634 2021-03-09 15:21:29 0
## 4635 2021-03-09 07:01:26 0
## 4636 2021-03-09 07:01:26 0
## 4637 2021-03-08 02:05:51 1
## 4638 2021-03-08 23:20:39 0
## 4639 2021-03-08 23:20:39 0
## 4640 2021-03-08 13:19:29 0
## 4641 2021-03-09 20:30:32 0
## 4642 2021-03-09 20:30:32 0
302
## 4643 2021-03-09 15:07:54 0
## 4644 2021-03-05 15:34:20 0
## 4645 2021-03-08 04:36:21 0
## 4646 2021-03-10 05:46:23 0
## 4647 2021-03-07 17:26:00 0
## 4648 2021-03-07 17:26:00 0
## 4649 2021-03-08 01:48:12 0
## 4650 2021-03-09 18:06:43 3
## 4651 2021-03-09 18:06:43 3
## 4652 2021-03-08 13:19:51 0
## 4653 2021-03-08 13:19:51 0
## 4654 2021-03-11 12:35:40 2
## 4655 2021-03-10 07:32:10 0
## 4656 2021-03-08 03:19:53 0
## 4657 2021-03-09 17:42:41 0
## 4658 2021-03-09 08:11:00 0
## 4659 2021-03-09 08:11:00 0
## 4660 2021-03-10 20:21:51 0
## 4661 2021-03-10 20:21:51 0
## 4662 2021-03-10 20:21:51 0
## 4663 2021-03-10 20:21:51 0
## 4664 2021-03-10 17:01:24 0
## 4665 2021-03-08 15:52:59 0
## 4666 2021-03-08 19:47:36 0
## 4667 2021-03-09 08:59:14 0
## 4668 2021-03-07 18:56:20 0
## 4669 2021-03-08 01:16:05 1
## 4670 2021-03-08 01:16:05 1
## 4671 2021-03-08 03:53:46 11
## 4672 2021-03-08 03:32:24 1
## 4673 2021-03-10 07:41:15 0
## 4674 2021-03-10 07:41:15 0
## 4675 2021-03-09 14:47:43 0
## 4676 2021-03-09 14:47:43 0
## 4677 2021-03-09 14:47:43 0
## 4678 2021-03-08 19:58:37 2
## 4679 2021-03-10 12:09:14 0
## 4680 2021-03-10 13:00:36 0
## 4681 2021-03-11 00:34:55 0
## 4682 2021-03-09 16:53:21 0
## 4683 2021-03-11 04:20:21 0
## 4684 2021-03-11 01:28:14 1
## 4685 2021-03-07 20:59:39 0
## 4686 2021-03-09 18:06:47 0
## 4687 2021-03-09 18:06:47 0
## 4688 2021-03-11 23:28:01 0
## 4689 2021-03-11 23:28:01 0
## 4690 2021-03-11 23:28:01 0
## 4691 2021-03-08 11:56:50 0
## 4692 2021-03-08 00:41:28 0
## 4693 2021-03-08 00:41:28 0
## 4694 2021-03-08 00:41:28 0
## 4695 2021-03-08 00:41:28 0
## 4696 2021-03-09 18:12:30 0
303
## 4697 2021-03-08 05:15:00 1
## 4698 2021-03-09 16:34:54 0
## 4699 2021-03-09 16:34:54 0
## 4700 2021-03-09 21:28:46 0
## 4701 2021-03-08 17:19:45 0
## 4702 2021-03-08 17:19:45 0
## 4703 2021-03-08 03:23:32 0
## 4704 2021-03-09 21:57:00 0
## 4705 2021-03-09 21:57:00 0
## 4706 2021-03-07 23:51:15 0
## 4707 2021-03-11 10:23:14 0
## 4708 2021-03-11 10:23:14 0
## 4709 2021-03-11 10:23:14 0
## 4710 2021-03-11 10:23:14 0
## 4711 2021-03-11 10:23:14 0
## 4712 2021-03-11 10:23:14 0
## 4713 2021-03-08 01:48:35 0
## 4714 2021-03-08 01:48:35 0
## 4715 2021-03-08 01:48:35 0
## 4716 2021-03-08 15:40:15 0
## 4717 2021-03-08 15:40:15 0
## 4718 2021-03-08 11:58:17 7
## 4719 2021-03-08 11:58:17 7
## 4720 2021-03-09 23:06:47 0
## 4721 2021-03-08 13:39:31 0
## 4722 2021-03-08 13:39:31 0
## 4723 2021-03-08 06:03:18 0
## 4724 2021-03-08 06:03:18 0
## 4725 2021-03-08 15:01:02 0
## 4726 2021-03-05 22:52:56 0
## 4727 2021-03-05 22:52:56 0
## 4728 2021-03-05 22:52:56 0
## 4729 2021-03-05 16:39:04 0
## 4730 2021-03-10 18:34:21 1
## 4731 2021-03-07 10:28:24 0
## 4732 2021-03-07 10:28:24 0
## 4733 2021-03-08 16:38:59 0
## 4734 2021-03-09 18:52:49 0
## 4735 2021-03-08 04:32:18 2
## 4736 2021-03-08 02:04:51 1
## 4737 2021-03-08 15:53:05 0
## 4738 2021-03-08 03:55:35 0
## 4739 2021-03-08 01:50:41 0
## 4740 2021-03-08 02:00:55 0
## 4741 2021-03-11 03:16:04 0
## 4742 2021-03-11 03:16:04 0
## 4743 2021-03-09 00:14:28 0
## 4744 2021-03-11 14:46:21 0
## 4745 2021-03-11 14:46:21 0
## 4746 2021-03-08 23:55:01 0
## 4747 2021-03-08 23:55:01 0
## 4748 2021-03-07 02:44:07 0
## 4749 2021-03-08 01:46:22 0
## 4750 2021-03-08 17:42:38 0
304
## 4751 2021-03-08 19:45:42 0
## 4752 2021-03-08 23:50:30 0
## 4753 2021-03-08 23:50:30 0
## 4754 2021-03-08 23:50:30 0
## 4755 2021-03-08 01:08:45 1
## 4756 2021-03-08 01:37:30 0
## 4757 2021-03-10 01:19:10 0
## 4758 2021-03-08 14:00:56 0
## 4759 2021-03-08 14:00:56 0
## 4760 2021-03-08 14:00:56 0
## 4761 2021-03-08 14:00:56 0
## 4762 2021-03-04 21:23:16 0
## 4763 2021-03-04 21:23:16 0
## 4764 2021-03-08 01:45:44 2
## 4765 2021-03-04 23:50:54 0
## 4766 2021-03-08 02:23:24 0
## 4767 2021-03-08 02:23:24 0
## 4768 2021-03-08 19:17:13 1
## 4769 2021-03-08 21:21:03 0
## 4770 2021-03-08 21:21:03 0
## 4771 2021-03-08 12:37:04 0
## 4772 2021-03-08 12:37:04 0
## 4773 2021-03-08 06:41:54 0
## 4774 2021-03-08 06:41:54 0
## 4775 2021-03-08 15:48:26 0
## 4776 2021-03-08 01:09:24 0
## 4777 2021-03-10 13:58:50 0
## 4778 2021-03-09 18:58:03 1
## 4779 2021-03-06 18:45:14 0
## 4780 2021-03-06 18:45:14 0
## 4781 2021-03-06 18:45:14 0
## 4782 2021-03-06 18:45:14 0
## 4783 2021-03-06 18:45:14 0
## 4784 2021-03-06 18:45:14 0
## 4785 2021-03-06 18:45:14 0
## 4786 2021-03-06 18:45:14 0
## 4787 2021-03-06 18:45:14 0
## 4788 2021-03-06 18:45:14 0
## 4789 2021-03-06 18:45:14 0
## 4790 2021-03-09 20:38:48 0
## 4791 2021-03-08 12:14:14 2
## 4792 2021-03-07 21:07:05 0
## 4793 2021-03-07 21:07:05 0
## 4794 2021-03-07 21:07:05 0
## 4795 2021-03-09 04:38:12 0
## 4796 2021-03-09 04:38:12 0
## 4797 2021-03-09 14:35:11 0
## 4798 2021-03-08 08:13:36 0
## 4799 2021-03-08 08:13:36 0
## 4800 2021-03-08 08:13:36 0
## 4801 2021-03-08 08:13:36 0
## 4802 2021-03-09 11:58:47 0
## 4803 2021-03-08 03:24:42 0
## 4804 2021-03-08 18:51:23 0
305
## 4805 2021-03-07 17:09:05 0
## 4806 2021-03-07 17:09:05 0
## 4807 2021-03-07 11:07:13 0
## 4808 2021-03-09 00:41:33 0
## 4809 2021-03-09 18:37:35 0
## 4810 2021-03-09 18:37:35 0
## 4811 2021-03-07 23:05:06 0
## 4812 2021-03-09 21:04:07 0
## 4813 2021-03-10 07:27:09 0
## 4814 2021-03-10 07:27:09 0
## 4815 2021-03-08 00:26:18 0
## 4816 2021-03-08 00:26:18 0
## 4817 2021-03-08 00:26:18 0
## 4818 2021-03-08 21:03:40 0
## 4819 2021-03-09 18:36:27 0
## 4820 2021-03-08 01:57:23 0
## 4821 2021-03-10 13:59:26 0
## 4822 2021-03-10 13:59:26 0
## 4823 2021-03-10 13:59:26 0
## 4824 2021-03-09 10:40:02 0
## 4825 2021-03-09 10:40:02 0
## 4826 2021-03-11 03:17:45 3
## 4827 2021-03-11 03:17:45 3
## 4828 2021-03-08 12:19:37 0
## 4829 2021-03-09 18:48:52 0
## 4830 2021-03-09 00:17:12 0
## 4831 2021-03-08 17:28:12 0
## 4832 2021-03-10 03:55:27 0
## 4833 2021-03-08 01:39:56 0
## 4834 2021-03-08 06:27:10 0
## 4835 2021-03-08 06:27:10 0
## 4836 2021-03-09 01:48:31 0
## 4837 2021-03-08 16:42:35 0
## 4838 2021-03-08 16:42:35 0
## 4839 2021-03-10 15:31:27 1
## 4840 2021-03-08 13:57:48 0
## 4841 2021-03-10 08:28:26 0
## 4842 2021-03-06 07:01:03 0
## 4843 2021-03-06 07:01:03 0
## 4844 2021-03-10 21:21:19 6
## 4845 2021-03-10 21:21:19 6
## 4846 2021-03-08 02:15:29 0
## 4847 2021-03-10 07:12:19 0
## 4848 2021-03-09 01:51:44 0
## 4849 2021-03-05 17:25:21 0
## 4850 2021-03-09 11:23:53 0
## 4851 2021-03-11 10:18:31 0
## 4852 2021-03-11 10:18:31 0
## 4853 2021-03-11 10:18:31 0
## 4854 2021-03-09 19:12:14 0
## 4855 2021-03-09 18:59:35 1
## 4856 2021-03-09 02:56:40 0
## 4857 2021-03-08 02:08:16 0
## 4858 2021-03-08 02:08:16 0
306
## 4859 2021-03-07 15:24:55 1
## 4860 2021-03-08 02:13:22 1
## 4861 2021-03-07 17:03:54 0
## 4862 2021-03-07 17:03:54 0
## 4863 2021-03-08 08:34:56 0
## 4864 2021-03-08 08:34:56 0
## 4865 2021-03-08 08:34:56 0
## 4866 2021-03-08 13:13:10 0
## 4867 2021-03-10 21:23:56 0
## 4868 2021-03-09 07:00:41 0
## 4869 2021-03-08 14:11:17 0
## 4870 2021-03-08 14:11:17 0
## 4871 2021-03-08 03:52:57 0
## 4872 2021-03-08 04:28:25 1
## 4873 2021-03-08 11:25:12 0
## 4874 2021-03-08 03:31:14 0
## 4875 2021-03-07 23:47:16 0
## 4876 2021-03-08 02:08:12 2
## 4877 2021-03-11 13:01:32 0
## 4878 2021-03-08 07:04:39 0
## 4879 2021-03-09 07:45:21 0
## 4880 2021-03-10 19:14:29 0
## 4881 2021-03-09 12:01:52 0
## 4882 2021-03-09 12:01:52 0
## 4883 2021-03-09 12:01:52 0
## 4884 2021-03-10 14:42:49 0
## 4885 2021-03-09 22:05:50 0
## 4886 2021-03-10 01:43:31 0
## 4887 2021-03-10 01:43:31 0
## 4888 2021-03-10 01:43:31 0
## 4889 2021-03-10 01:43:31 0
## 4890 2021-03-10 01:43:31 0
## 4891 2021-03-08 17:17:00 0
## 4892 2021-03-08 17:17:00 0
## 4893 2021-03-08 17:17:00 0
## 4894 2021-03-08 07:26:06 0
## 4895 2021-03-10 11:48:56 0
## 4896 2021-03-08 03:44:00 0
## 4897 2021-03-09 20:43:43 0
## 4898 2021-03-08 12:35:25 0
## 4899 2021-03-08 12:35:25 0
## 4900 2021-03-08 13:54:54 2
## 4901 2021-03-08 13:54:54 2
## 4902 2021-03-07 10:31:20 0
## 4903 2021-03-10 07:02:07 0
## 4904 2021-03-10 07:02:07 0
## 4905 2021-03-08 04:09:20 0
## 4906 2021-03-08 20:18:42 0
## 4907 2021-03-08 20:18:42 0
## 4908 2021-03-08 20:14:03 0
## 4909 2021-03-10 21:37:19 0
## 4910 2021-03-06 04:51:09 0
## 4911 2021-03-09 16:50:28 0
## 4912 2021-03-09 19:24:01 0
307
## 4913 2021-03-09 19:24:01 0
## 4914 2021-03-08 13:16:00 0
## 4915 2021-03-08 13:16:00 0
## 4916 2021-03-08 04:47:31 0
## 4917 2021-03-08 04:47:31 0
## 4918 2021-03-10 18:45:16 0
## 4919 2021-03-08 20:06:09 13
## 4920 2021-03-09 08:18:25 0
## 4921 2021-03-10 17:13:27 0
## 4922 2021-03-08 06:12:39 0
## 4923 2021-03-08 06:12:39 0
## 4924 2021-03-09 12:34:20 0
## 4925 2021-03-09 18:27:58 0
## 4926 2021-03-09 18:27:58 0
## 4927 2021-03-09 02:36:16 0
## 4928 2021-03-08 20:46:53 0
## 4929 2021-03-08 22:45:11 0
## 4930 2021-03-10 18:32:34 0
## 4931 2021-03-08 10:31:58 0
## 4932 2021-03-08 01:03:25 0
## 4933 2021-03-08 00:35:26 0
## 4934 2021-03-07 20:56:08 0
## 4935 2021-03-07 20:56:08 0
## 4936 2021-03-07 20:56:08 0
## 4937 2021-03-07 20:56:08 0
## 4938 2021-03-08 13:50:28 2
## 4939 2021-03-08 13:50:28 2
## 4940 2021-03-08 13:50:28 2
## 4941 2021-03-04 14:46:46 0
## 4942 2021-03-08 02:07:03 1
## 4943 2021-03-08 02:26:37 0
## 4944 2021-03-10 02:55:36 0
## 4945 2021-03-10 17:20:32 0
## 4946 2021-03-08 19:24:18 0
## 4947 2021-03-08 01:13:32 2
## 4948 2021-03-08 03:30:03 0
## 4949 2021-03-09 09:09:51 1
## 4950 2021-03-10 13:30:31 1
## 4951 2021-03-10 13:30:31 1
## 4952 2021-03-09 19:49:38 0
## 4953 2021-03-08 01:47:33 1
## 4954 2021-03-09 00:03:11 0
## 4955 2021-03-09 00:03:11 0
## 4956 2021-03-08 01:59:59 1
## 4957 2021-03-09 22:25:59 0
## 4958 2021-03-10 23:14:22 1
## 4959 2021-03-10 23:14:22 1
## 4960 2021-03-08 04:38:34 0
## 4961 2021-03-08 04:38:34 0
## 4962 2021-03-08 04:38:34 0
## 4963 2021-03-08 04:38:34 0
## 4964 2021-03-08 11:44:08 0
## 4965 2021-03-10 09:52:30 0
## 4966 2021-03-05 11:55:06 0
308
## 4967 2021-03-09 20:06:55 0
## 4968 2021-03-09 20:06:55 0
## 4969 2021-03-09 20:06:55 0
## 4970 2021-03-09 01:53:49 1
## 4971 2021-03-10 15:01:42 0
## 4972 2021-03-08 06:50:45 0
## 4973 2021-03-08 02:07:48 0
## 4974 2021-03-08 17:58:58 0
## 4975 2021-03-08 17:58:58 0
## 4976 2021-03-09 08:23:50 0
## 4977 2021-03-09 08:23:50 0
## 4978 2021-03-09 08:23:50 0
## 4979 2021-03-08 02:05:09 1
## 4980 2021-03-11 11:43:07 0
## 4981 2021-03-11 11:43:07 0
## 4982 2021-03-08 01:52:12 0
## 4983 2021-03-07 10:02:08 0
## 4984 2021-03-04 20:10:53 2
## 4985 2021-03-04 20:10:53 2
## 4986 2021-03-06 18:55:25 0
## 4987 2021-03-06 18:55:25 0
## 4988 2021-03-04 20:24:14 0
## 4989 2021-03-10 05:28:24 0
## 4990 2021-03-10 05:28:24 0
## 4991 2021-03-11 11:59:33 0
## 4992 2021-03-11 11:59:33 0
## 4993 2021-03-11 11:59:33 0
## 4994 2021-03-11 11:59:33 0
## 4995 2021-03-11 11:59:33 0
## 4996 2021-03-07 22:50:06 0
## 4997 2021-03-07 22:50:06 0
## 4998 2021-03-07 22:50:06 0
## 4999 2021-03-07 22:50:06 0
## 5000 2021-03-07 22:50:06 0
## 5001 2021-03-10 03:08:33 2
## 5002 2021-03-09 15:33:36 0
## 5003 2021-03-09 15:33:36 0
## 5004 2021-03-04 15:48:42 0
## 5005 2021-03-09 01:50:18 0
## 5006 2021-03-09 01:50:18 0
## 5007 2021-03-09 01:50:18 0
## 5008 2021-03-10 18:39:31 0
## 5009 2021-03-10 13:12:20 0
## 5010 2021-03-10 13:12:20 0
## 5011 2021-03-10 13:12:20 0
## 5012 2021-03-08 13:26:47 0
## 5013 2021-03-09 07:56:05 2
## 5014 2021-03-09 18:57:20 0
## 5015 2021-03-09 18:57:20 0
## 5016 2021-03-09 16:36:18 0
## 5017 2021-03-11 14:45:15 0
## 5018 2021-03-10 00:34:38 1
## 5019 2021-03-08 06:15:49 0
## 5020 2021-03-08 09:20:46 0
309
## 5021 2021-03-10 09:29:46 0
## 5022 2021-03-06 14:59:55 0
## 5023 2021-03-06 14:59:55 0
## 5024 2021-03-06 14:59:55 0
## 5025 2021-03-06 14:59:55 0
## 5026 2021-03-06 14:59:55 0
## 5027 2021-03-06 14:59:55 0
## 5028 2021-03-06 14:59:55 0
## 5029 2021-03-10 14:45:45 0
## 5030 2021-03-10 14:45:45 0
## 5031 2021-03-09 20:00:13 0
## 5032 2021-03-08 03:20:59 1
## 5033 2021-03-09 14:30:46 0
## 5034 2021-03-08 22:35:28 1
## 5035 2021-03-08 22:35:28 1
## 5036 2021-03-08 22:40:22 0
## 5037 2021-03-08 03:12:40 3
## 5038 2021-03-06 07:26:37 0
## 5039 2021-03-06 11:34:17 0
## 5040 2021-03-11 23:28:11 0
## 5041 2021-03-11 23:28:11 0
## 5042 2021-03-11 12:46:40 0
## 5043 2021-03-11 12:46:40 0
## 5044 2021-03-08 16:03:45 0
## 5045 2021-03-08 16:03:45 0
## 5046 2021-03-08 22:50:23 0
## 5047 2021-03-08 22:50:23 0
## 5048 2021-03-08 18:46:29 0
## 5049 2021-03-10 15:17:03 0
## 5050 2021-03-09 13:47:48 0
## 5051 2021-03-07 20:43:44 2
## 5052 2021-03-07 20:43:44 2
## 5053 2021-03-08 16:48:00 0
## 5054 2021-03-08 11:30:32 0
## 5055 2021-03-09 08:05:53 0
## 5056 2021-03-09 08:05:53 0
## 5057 2021-03-06 20:55:54 0
## 5058 2021-03-08 01:14:37 0
## 5059 2021-03-08 18:48:20 0
## 5060 2021-03-11 13:56:05 0
## 5061 2021-03-11 15:28:14 0
## 5062 2021-03-05 21:37:40 0
## 5063 2021-03-08 17:13:37 1
## 5064 2021-03-08 17:13:37 1
## 5065 2021-03-08 17:13:37 1
## 5066 2021-03-08 03:27:05 0
## 5067 2021-03-08 14:56:33 0
## 5068 2021-03-08 14:56:33 0
## 5069 2021-03-07 15:43:37 0
## 5070 2021-03-11 03:43:03 0
## 5071 2021-03-11 03:43:03 0
## 5072 2021-03-08 14:44:09 0
## 5073 2021-03-08 14:44:09 0
## 5074 2021-03-08 22:55:31 0
310
## 5075 2021-03-07 21:02:58 0
## 5076 2021-03-07 21:02:58 0
## 5077 2021-03-07 21:02:58 0
## 5078 2021-03-08 22:25:20 0
## 5079 2021-03-10 10:32:41 0
## 5080 2021-03-10 10:32:41 0
## 5081 2021-03-10 03:40:14 1
## 5082 2021-03-09 21:03:50 0
## 5083 2021-03-08 04:58:12 63
## 5084 2021-03-11 19:33:55 0
## 5085 2021-03-09 12:46:10 0
## 5086 2021-03-09 12:46:10 0
## 5087 2021-03-09 12:46:10 0
## 5088 2021-03-08 20:47:01 0
## 5089 2021-03-08 17:58:03 0
## 5090 2021-03-08 17:58:03 0
## 5091 2021-03-11 16:18:30 0
## 5092 2021-03-05 11:25:11 0
## 5093 2021-03-05 11:25:11 0
## 5094 2021-03-10 15:07:17 0
## 5095 2021-03-08 06:22:27 0
## 5096 2021-03-08 14:41:54 0
## 5097 2021-03-08 14:41:54 0
## 5098 2021-03-08 14:41:54 0
## 5099 2021-03-08 21:32:45 0
## 5100 2021-03-08 21:32:45 0
## 5101 2021-03-10 13:09:06 0
## 5102 2021-03-10 13:09:06 0
## 5103 2021-03-07 21:36:25 0
## 5104 2021-03-04 15:03:48 2
## 5105 2021-03-07 14:48:54 0
## 5106 2021-03-11 10:25:12 0
## 5107 2021-03-09 19:36:33 0
## 5108 2021-03-06 17:00:59 3
## 5109 2021-03-06 17:00:59 3
## 5110 2021-03-06 17:00:59 3
## 5111 2021-03-09 10:40:14 0
## 5112 2021-03-09 10:40:14 0
## 5113 2021-03-09 10:40:14 0
## 5114 2021-03-08 09:40:45 1
## 5115 2021-03-08 09:40:45 1
## 5116 2021-03-08 03:27:18 0
## 5117 2021-03-08 03:27:18 0
## 5118 2021-03-09 03:27:48 0
## 5119 2021-03-09 04:06:24 0
## 5120 2021-03-07 07:24:32 0
## 5121 2021-03-07 07:24:32 0
## 5122 2021-03-07 07:24:32 0
## 5123 2021-03-07 07:24:32 0
## 5124 2021-03-08 23:39:51 0
## 5125 2021-03-06 14:14:53 0
## 5126 2021-03-09 18:10:40 0
## 5127 2021-03-08 01:57:41 0
## 5128 2021-03-08 14:56:37 0
311
## 5129 2021-03-07 18:23:24 0
## 5130 2021-03-11 21:39:36 0
## 5131 2021-03-11 21:39:36 0
## 5132 2021-03-10 22:27:20 0
## 5133 2021-03-10 22:27:20 0
## 5134 2021-03-10 22:27:20 0
## 5135 2021-03-08 19:05:09 0
## 5136 2021-03-06 14:27:24 0
## 5137 2021-03-08 01:58:45 1
## 5138 2021-03-09 12:52:10 0
## 5139 2021-03-09 00:47:41 0
## 5140 2021-03-11 19:47:50 1
## 5141 2021-03-10 12:16:50 0
## 5142 2021-03-10 12:16:50 0
## 5143 2021-03-10 12:16:50 0
## 5144 2021-03-10 15:18:21 0
## 5145 2021-03-07 00:00:07 0
## 5146 2021-03-07 00:00:07 0
## 5147 2021-03-07 23:38:30 0
## 5148 2021-03-07 23:38:30 0
## 5149 2021-03-07 23:38:30 0
## 5150 2021-03-08 23:09:46 0
## 5151 2021-03-05 19:05:14 0
## 5152 2021-03-10 10:47:16 0
## 5153 2021-03-10 21:11:59 0
## 5154 2021-03-10 21:11:59 0
## 5155 2021-03-08 01:53:18 0
## 5156 2021-03-08 18:15:54 0
## 5157 2021-03-08 16:42:42 0
## 5158 2021-03-08 16:42:42 0
## 5159 2021-03-08 05:59:40 0
## 5160 2021-03-06 20:14:20 0
## 5161 2021-03-08 12:50:46 0
## 5162 2021-03-08 01:46:15 1
## 5163 2021-03-08 01:46:15 1
## 5164 2021-03-08 02:17:46 0
## 5165 2021-03-09 05:19:29 1
## 5166 2021-03-05 19:30:27 1
## 5167 2021-03-08 11:14:27 0
## 5168 2021-03-09 03:36:23 0
## 5169 2021-03-10 04:24:39 0
## 5170 2021-03-10 04:24:39 0
## 5171 2021-03-08 04:06:23 0
## 5172 2021-03-07 13:43:12 0
## 5173 2021-03-08 02:03:03 50
## 5174 2021-03-05 13:06:49 0
## 5175 2021-03-05 13:06:49 0
## 5176 2021-03-05 13:06:49 0
## 5177 2021-03-05 13:06:49 0
## 5178 2021-03-05 13:06:49 0
## 5179 2021-03-05 13:06:49 0
## 5180 2021-03-05 13:06:49 0
## 5181 2021-03-05 13:06:49 0
## 5182 2021-03-05 13:06:49 0
312
## 5183 2021-03-05 13:06:49 0
## 5184 2021-03-08 13:26:59 0
## 5185 2021-03-10 22:21:51 0
## 5186 2021-03-10 22:21:51 0
## 5187 2021-03-08 07:23:18 0
## 5188 2021-03-08 02:55:28 3
## 5189 2021-03-09 13:58:56 0
## 5190 2021-03-08 03:55:11 65
## 5191 2021-03-05 20:46:34 1
## 5192 2021-03-08 04:06:45 0
## 5193 2021-03-08 04:06:45 0
## 5194 2021-03-10 04:49:06 0
## 5195 2021-03-10 04:49:06 0
## 5196 2021-03-10 04:49:06 0
## 5197 2021-03-08 22:16:23 0
## 5198 2021-03-10 18:44:02 0
## 5199 2021-03-10 18:44:02 0
## 5200 2021-03-10 18:44:02 0
## 5201 2021-03-05 16:18:54 3
## 5202 2021-03-09 04:09:19 0
## 5203 2021-03-06 17:13:27 1
## 5204 2021-03-08 09:57:01 0
## 5205 2021-03-09 11:30:21 1
## 5206 2021-03-09 11:30:21 1
## 5207 2021-03-11 15:14:44 0
## 5208 2021-03-08 04:05:25 0
## 5209 2021-03-05 05:20:47 0
## 5210 2021-03-08 11:46:39 0
## 5211 2021-03-08 03:24:26 0
## 5212 2021-03-08 16:51:03 0
## 5213 2021-03-08 13:31:28 0
## 5214 2021-03-08 13:31:28 0
## 5215 2021-03-08 13:31:28 0
## 5216 2021-03-08 04:13:04 0
## 5217 2021-03-08 04:13:04 0
## 5218 2021-03-09 01:54:29 0
## 5219 2021-03-09 17:15:56 0
## 5220 2021-03-07 01:55:47 0
## 5221 2021-03-08 09:15:19 1
## 5222 2021-03-08 15:07:50 0
## 5223 2021-03-08 15:07:50 0
## 5224 2021-03-08 21:03:55 1
## 5225 2021-03-08 08:41:23 0
## 5226 2021-03-09 19:57:59 0
## 5227 2021-03-09 19:57:59 0
## 5228 2021-03-09 19:57:59 0
## 5229 2021-03-08 15:42:38 0
## 5230 2021-03-08 15:42:38 0
## 5231 2021-03-11 05:48:36 0
## 5232 2021-03-11 05:48:36 0
## 5233 2021-03-11 05:48:36 0
## 5234 2021-03-09 16:51:08 0
## 5235 2021-03-09 00:05:24 5
## 5236 2021-03-11 00:35:03 1
313
## 5237 2021-03-08 22:21:20 1
## 5238 2021-03-08 22:21:20 1
## 5239 2021-03-08 22:21:20 1
## 5240 2021-03-11 23:17:49 0
## 5241 2021-03-10 22:51:07 0
## 5242 2021-03-10 22:51:07 0
## 5243 2021-03-09 11:43:15 0
## 5244 2021-03-09 11:43:15 0
## 5245 2021-03-09 11:43:15 0
## 5246 2021-03-09 11:43:15 0
## 5247 2021-03-05 16:20:42 1
## 5248 2021-03-05 12:37:52 1
## 5249 2021-03-08 13:39:08 0
## 5250 2021-03-08 13:39:08 0
## 5251 2021-03-08 13:39:08 0
## 5252 2021-03-08 01:59:59 0
## 5253 2021-03-08 01:59:59 0
## 5254 2021-03-06 19:13:05 0
## 5255 2021-03-06 19:13:05 0
## 5256 2021-03-06 19:13:05 0
## 5257 2021-03-10 10:23:01 0
## 5258 2021-03-09 19:32:09 2
## 5259 2021-03-08 07:05:11 0
## 5260 2021-03-09 16:58:36 0
## 5261 2021-03-09 16:58:36 0
## 5262 2021-03-08 01:45:18 0
## 5263 2021-03-09 09:09:49 4
## 5264 2021-03-09 09:09:49 4
## 5265 2021-03-09 09:09:49 4
## 5266 2021-03-09 09:09:49 4
## 5267 2021-03-09 09:09:49 4
## 5268 2021-03-09 09:09:49 4
## 5269 2021-03-09 09:09:49 4
## 5270 2021-03-09 09:09:49 4
## 5271 2021-03-09 09:09:49 4
## 5272 2021-03-08 08:21:43 0
## 5273 2021-03-09 07:27:38 2
## 5274 2021-03-09 07:27:38 2
## 5275 2021-03-07 03:02:46 0
## 5276 2021-03-07 03:02:46 0
## 5277 2021-03-08 16:25:29 1
## 5278 2021-03-09 07:15:04 0
## 5279 2021-03-11 14:33:39 0
## 5280 2021-03-11 13:27:05 0
## 5281 2021-03-11 13:27:05 0
## 5282 2021-03-10 13:01:23 0
## 5283 2021-03-10 21:18:12 0
## 5284 2021-03-09 13:01:31 0
## 5285 2021-03-09 13:01:31 0
## 5286 2021-03-10 01:56:17 0
## 5287 2021-03-10 09:35:27 0
## 5288 2021-03-06 00:28:36 1
## 5289 2021-03-06 00:28:36 1
## 5290 2021-03-06 00:28:36 1
314
## 5291 2021-03-08 19:25:02 0
## 5292 2021-03-06 12:45:14 0
## 5293 2021-03-08 03:36:01 0
## 5294 2021-03-08 19:17:14 0
## 5295 2021-03-08 19:17:14 0
## 5296 2021-03-08 19:17:14 0
## 5297 2021-03-08 05:05:05 0
## 5298 2021-03-08 05:05:05 0
## 5299 2021-03-08 05:05:05 0
## 5300 2021-03-08 05:05:05 0
## 5301 2021-03-08 05:05:05 0
## 5302 2021-03-08 10:09:53 0
## 5303 2021-03-09 13:11:39 0
## 5304 2021-03-09 13:11:39 0
## 5305 2021-03-10 13:39:50 4
## 5306 2021-03-10 13:39:50 4
## 5307 2021-03-10 13:39:50 4
## 5308 2021-03-10 13:24:00 0
## 5309 2021-03-08 06:57:47 0
## 5310 2021-03-08 02:13:47 1
## 5311 2021-03-09 18:22:00 0
## 5312 2021-03-09 18:22:00 0
## 5313 2021-03-09 18:22:00 0
## 5314 2021-03-09 18:22:00 0
## 5315 2021-03-09 18:22:00 0
## 5316 2021-03-09 18:22:00 0
## 5317 2021-03-09 18:22:00 0
## 5318 2021-03-09 07:54:03 0
## 5319 2021-03-08 04:25:16 1
## 5320 2021-03-08 03:52:22 0
## 5321 2021-03-08 03:52:22 0
## 5322 2021-03-08 22:00:57 0
## 5323 2021-03-09 07:57:55 1
## 5324 2021-03-08 01:52:46 0
## 5325 2021-03-08 01:47:45 0
## 5326 2021-03-08 00:08:52 0
## 5327 2021-03-06 22:47:21 0
## 5328 2021-03-08 04:50:51 0
## 5329 2021-03-07 15:35:24 0
## 5330 2021-03-08 16:07:11 10
## 5331 2021-03-08 16:07:11 10
## 5332 2021-03-08 16:07:11 10
## 5333 2021-03-08 03:08:05 0
## 5334 2021-03-08 15:58:23 0
## 5335 2021-03-08 15:58:23 0
## 5336 2021-03-09 12:51:22 0
## 5337 2021-03-08 15:15:36 0
## 5338 2021-03-08 07:47:26 0
## 5339 2021-03-08 19:05:47 1
## 5340 2021-03-10 10:13:19 0
## 5341 2021-03-08 02:38:27 2
## 5342 2021-03-08 02:38:27 2
## 5343 2021-03-09 08:16:29 1
## 5344 2021-03-11 16:00:13 0
315
## 5345 2021-03-11 16:00:13 0
## 5346 2021-03-08 21:03:49 0
## 5347 2021-03-09 17:21:54 1
## 5348 2021-03-09 17:21:54 1
## 5349 2021-03-09 17:21:54 1
## 5350 2021-03-09 17:21:54 1
## 5351 2021-03-09 11:38:42 0
## 5352 2021-03-08 02:56:19 0
## 5353 2021-03-10 01:12:32 0
## 5354 2021-03-10 10:06:38 0
## 5355 2021-03-10 10:06:38 0
## 5356 2021-03-08 02:31:53 0
## 5357 2021-03-06 16:46:30 0
## 5358 2021-03-06 16:46:30 0
## 5359 2021-03-06 16:46:30 0
## 5360 2021-03-08 03:50:08 0
## 5361 2021-03-08 06:27:45 0
## 5362 2021-03-09 11:23:00 0
## 5363 2021-03-09 02:08:33 0
## 5364 2021-03-08 09:26:27 0
## 5365 2021-03-09 14:00:30 0
## 5366 2021-03-08 15:52:38 0
## 5367 2021-03-10 02:38:52 0
## 5368 2021-03-08 19:51:07 0
## 5369 2021-03-10 23:07:57 0
## 5370 2021-03-09 15:00:52 0
## 5371 2021-03-08 02:42:47 0
## 5372 2021-03-08 02:42:47 0
## 5373 2021-03-05 17:55:20 0
## 5374 2021-03-08 19:08:15 0
## 5375 2021-03-09 22:16:00 1
## 5376 2021-03-06 02:23:45 0
## 5377 2021-03-09 08:08:33 0
## 5378 2021-03-11 21:06:36 1
## 5379 2021-03-08 21:52:23 0
## 5380 2021-03-06 00:01:02 0
## 5381 2021-03-06 00:01:02 0
## 5382 2021-03-09 19:56:12 0
## 5383 2021-03-07 01:15:55 0
## 5384 2021-03-08 05:30:29 0
## 5385 2021-03-08 03:08:19 1
## 5386 2021-03-08 09:23:08 0
## 5387 2021-03-09 15:15:16 2
## 5388 2021-03-08 02:40:16 0
## 5389 2021-03-08 12:54:17 0
## 5390 2021-03-09 20:35:44 0
## 5391 2021-03-04 21:25:44 0
## 5392 2021-03-04 21:25:44 0
## 5393 2021-03-10 01:53:44 0
## 5394 2021-03-10 01:53:44 0
## 5395 2021-03-09 21:21:26 0
## 5396 2021-03-09 08:20:26 0
## 5397 2021-03-09 02:14:34 0
## 5398 2021-03-09 02:14:34 0
316
## 5399 2021-03-09 02:14:34 0
## 5400 2021-03-10 21:18:40 0
## 5401 2021-03-10 21:18:40 0
## 5402 2021-03-08 16:16:44 0
## 5403 2021-03-11 05:58:20 1
## 5404 2021-03-11 05:58:20 1
## 5405 2021-03-09 04:58:29 0
## 5406 2021-03-11 08:39:42 8
## 5407 2021-03-11 08:39:42 8
## 5408 2021-03-07 14:49:09 2
## 5409 2021-03-08 17:32:44 0
## 5410 2021-03-08 04:04:47 1
## 5411 2021-03-08 04:04:47 1
## 5412 2021-03-08 04:04:47 1
## 5413 2021-03-08 04:04:47 1
## 5414 2021-03-08 04:04:47 1
## 5415 2021-03-08 04:04:47 1
## 5416 2021-03-08 04:04:47 1
## 5417 2021-03-08 16:01:55 2
## 5418 2021-03-08 16:01:55 2
## 5419 2021-03-08 16:01:55 2
## 5420 2021-03-07 09:29:09 1
## 5421 2021-03-07 09:29:09 1
## 5422 2021-03-07 09:29:09 1
## 5423 2021-03-07 09:29:09 1
## 5424 2021-03-07 09:29:09 1
## 5425 2021-03-09 16:35:30 0
## 5426 2021-03-08 01:57:48 0
## 5427 2021-03-08 15:07:31 0
## 5428 2021-03-07 19:31:21 0
## 5429 2021-03-10 08:12:36 0
## 5430 2021-03-08 12:34:20 0
## 5431 2021-03-09 11:31:29 0
## 5432 2021-03-08 12:36:33 0
## 5433 2021-03-08 12:36:33 0
## hashtags.in.the.tweet
## 1 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3 []
## 4 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’MeghanleavethwUKalone’, ’indices’: [87, 109]}]
## 5 []
## 6 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 7 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 8 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 9 []
## 10 []
## 11 [{’text’: ’PrinceAndrew’, ’indices’: [47, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 12 [{’text’: ’PrinceAndrew’, ’indices’: [47, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 13 [{’text’: ’PrinceAndrew’, ’indices’: [47, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 14 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 15 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 16 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 17 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 18 []
317
## 19 []
## 20 []
## 21 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 22 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 23 []
## 24 []
## 25 []
## 26 []
## 27 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 28 [{’text’: ’etsy’, ’indices’: [35, 40]}, {’text’: ’teamcambridge’, ’indices’: [75, 89]}, {’text’: ’royalfamily’, ’indices’: [90, 102]}, {’text’: ’megxit’, ’indices’: [103, 110]}]
## 29 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 30 [{’text’: ’MeghanAndHarry’, ’indices’: [79, 94]}]
## 31 []
## 32 []
## 33 []
## 34 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 35 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 36 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 37 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 38 [{’text’: ’Harry’, ’indices’: [89, 95]}]
## 39 [{’text’: ’Harry’, ’indices’: [89, 95]}]
## 40 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}, {’text’: ’OprahMeghanHarry’, ’indices’: [46, 63]}]
## 41 [{’text’: ’meghanmarkle’, ’indices’: [16, 29]}]
## 42 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 43 []
## 44 [{’text’: ’meghanmarkle’, ’indices’: [38, 51]}]
## 45 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 46 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 47 []
## 48 [{’text’: ’Monarchexit’, ’indices’: [24, 36]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’PrinceHarry’, ’indices’: [53, 65]}]
## 49 []
## 50 []
## 51 [{’text’: ’QueenElizabeth’, ’indices’: [38, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 52 [{’text’: ’SelfVictimization’, ’indices’: [13, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’Trumps’, ’indices’: [60, 67]}]
## 53 [{’text’: ’Oprah’, ’indices’: [61, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 54 [{’text’: ’Oprah’, ’indices’: [61, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 55 [{’text’: ’MeghanMarkle’, ’indices’: [121, 134]}]
## 56 [{’text’: ’suicidal’, ’indices’: [52, 61]}, {’text’: ’mentalhealth’, ’indices’: [92, 105]}]
## 57 [{’text’: ’suicidal’, ’indices’: [52, 61]}, {’text’: ’mentalhealth’, ’indices’: [92, 105]}]
## 58 [{’text’: ’suicidal’, ’indices’: [52, 61]}, {’text’: ’mentalhealth’, ’indices’: [92, 105]}]
## 59 [{’text’: ’UK’, ’indices’: [0, 3]}, {’text’: ’Media’, ’indices’: [4, 10]}, {’text’: ’Press’, ’indices’: [11, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 60 [{’text’: ’RoyalFamily’, ’indices’: [64, 76]}]
## 61 [{’text’: ’RoyalFamily’, ’indices’: [64, 76]}]
## 62 [{’text’: ’RoyalFamily’, ’indices’: [64, 76]}]
## 63 [{’text’: ’RoyalFamily’, ’indices’: [64, 76]}]
## 64 [{’text’: ’RoyalFamily’, ’indices’: [64, 76]}]
## 65 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’MeghanAndHarry’, ’indices’: [67, 82]}, {’text’: ’OprahMeghanHarry’, ’indices’: [83, 100]}, {’text’: ’oprah’, ’indices’: [101, 107]}]
## 66 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’MeghanAndHarry’, ’indices’: [67, 82]}, {’text’: ’OprahMeghanHarry’, ’indices’: [83, 100]}, {’text’: ’oprah’, ’indices’: [101, 107]}]
## 67 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 68 []
## 69 []
## 70 [{’text’: ’LookhownotracistIam’, ’indices’: [22, 42]}]
## 71 []
## 72 [{’text’: ’DailyMail’, ’indices’: [62, 72]}, {’text’: ’MeghanAndHarry’, ’indices’: [73, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}, {’text’: ’Oprah’, ’indices’: [103, 109]}, {’text’: ’BoycottTheDailyMail’, ’indices’: [111, 131]}]
318
## 73 [{’text’: ’DailyMail’, ’indices’: [62, 72]}, {’text’: ’MeghanAndHarry’, ’indices’: [73, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}, {’text’: ’Oprah’, ’indices’: [103, 109]}, {’text’: ’BoycottTheDailyMail’, ’indices’: [111, 131]}]
## 74 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 75 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 76 [{’text’: ’Meghan’, ’indices’: [14, 21]}, {’text’: ’OprahMeghanHarry’, ’indices’: [67, 84]}]
## 77 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 78 [{’text’: ’HarryandMeghan’, ’indices’: [75, 90]}]
## 79 [{’text’: ’HarryandMeghan’, ’indices’: [75, 90]}]
## 80 []
## 81 []
## 82 []
## 83 []
## 84 []
## 85 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}, {’text’: ’PrinceHarry’, ’indices’: [59, 71]}]
## 86 []
## 87 [{’text’: ’meghanmarkle’, ’indices’: [14, 27]}, {’text’: ’MeghanSmollet’, ’indices’: [64, 78]}, {’text’: ’MeghanMarkleTheCharlatanDuchess’, ’indices’: [79, 111]}]
## 88 [{’text’: ’UK’, ’indices’: [0, 3]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 89 [{’text’: ’UK’, ’indices’: [0, 3]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 90 [{’text’: ’sapphire’, ’indices’: [87, 96]}, {’text’: ’diamond’, ’indices’: [101, 109]}, {’text’: ’ring’, ’indices’: [110, 115]}]
## 91 [{’text’: ’TheCrown’, ’indices’: [43, 52]}, {’text’: ’OprahMeghanHarry’, ’indices’: [67, 84]}, {’text’: ’MeghanAndHarry’, ’indices’: [85, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 92 [{’text’: ’TheCrown’, ’indices’: [43, 52]}, {’text’: ’OprahMeghanHarry’, ’indices’: [67, 84]}, {’text’: ’MeghanAndHarry’, ’indices’: [85, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 93 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’goodmorningbritain’, ’indices’: [94, 113]}]
## 94 []
## 95 []
## 96 [{’text’: ’PrinceHarry’, ’indices’: [17, 29]}, {’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’Oprah’, ’indices’: [78, 84]}]
## 97 [{’text’: ’MeghanAndHarry’, ’indices’: [83, 98]}]
## 98 []
## 99 []
## 100 []
## 101 []
## 102 []
## 103 []
## 104 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 105 []
## 106 []
## 107 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 108 [{’text’: ’TheView’, ’indices’: [86, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [109, 131]}, {’text’: ’meg’, ’indices’: [132, 136]}]
## 109 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 110 []
## 111 []
## 112 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 113 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 114 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 115 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [92, 114]}]
## 116 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [92, 114]}]
## 117 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [92, 114]}]
## 118 [{’text’: ’RoyalFamily’, ’indices’: [28, 40]}]
## 119 [{’text’: ’RoyalFamily’, ’indices’: [28, 40]}]
## 120 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 121 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 122 []
## 123 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [63, 85]}]
## 124 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [63, 85]}]
## 125 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [63, 85]}]
## 126 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
319
## 127 [{’text’: ’PrinceHarry’, ’indices’: [60, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 128 [{’text’: ’PrinceHarry’, ’indices’: [60, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 129 [{’text’: ’PrinceHarry’, ’indices’: [60, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 130 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 131 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 132 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 133 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 134 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 135 []
## 136 []
## 137 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’MeghanAndHarry’, ’indices’: [31, 46]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [48, 70]}]
## 138 []
## 139 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 140 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 141 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 142 []
## 143 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’Harry’, ’indices’: [85, 91]}]
## 144 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 145 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 146 [{’text’: ’SussexRoyal’, ’indices’: [31, 43]}]
## 147 [{’text’: ’SussexRoyal’, ’indices’: [31, 43]}]
## 148 [{’text’: ’OprahMeghanHarry’, ’indices’: [15, 32]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [33, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’shadyassroyals’, ’indices’: [70, 85]}, {’text’: ’Harryistherealprincecharming’, ’indices’: [86, 115]}]
## 149 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’DishwashingLiquid’, ’indices’: [74, 92]}, {’text’: ’NickNews’, ’indices’: [110, 119]}]
## 150 [{’text’: ’Beyoncé’, ’indices’: [0, 8]}, {’text’: ’SerenaWilliams’, ’indices’: [10, 25]}, {’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 151 []
## 152 []
## 153 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 154 [{’text’: ’Archie’, ’indices’: [10, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 155 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’OprahMeghanHarry’, ’indices’: [63, 80]}, {’text’: ’HarryandMeghan’, ’indices’: [81, 96]}, {’text’: ’WeLoveYouMeghan’, ’indices’: [97, 113]}]
## 156 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’OprahMeghanHarry’, ’indices’: [63, 80]}, {’text’: ’HarryandMeghan’, ’indices’: [81, 96]}, {’text’: ’WeLoveYouMeghan’, ’indices’: [97, 113]}]
## 157 [{’text’: ’MeghanMarkle’, ’indices’: [6, 19]}]
## 158 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’OprahMeghanHarry’, ’indices’: [49, 66]}]
## 159 []
## 160 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 161 []
## 162 []
## 163 [{’text’: ’meghanmarkle’, ’indices’: [46, 59]}]
## 164 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 165 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 166 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 167 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 168 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 169 [{’text’: ’ewok’, ’indices’: [103, 108]}, {’text’: ’MeghanMarkle’, ’indices’: [109, 122]}]
## 170 [{’text’: ’FREEHARRY’, ’indices’: [101, 111]}]
## 171 []
## 172 [{’text’: ’Message’, ’indices’: [37, 45]}, {’text’: ’Women’, ’indices’: [51, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [104, 117]}]
## 173 [{’text’: ’Message’, ’indices’: [37, 45]}, {’text’: ’Women’, ’indices’: [51, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [104, 117]}]
## 174 []
## 175 []
## 176 []
## 177 []
## 178 []
## 179 []
## 180 []
320
## 181 []
## 182 [{’text’: ’archewellfoundation’, ’indices’: [73, 93]}]
## 183 [{’text’: ’princeHarry’, ’indices’: [21, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 184 []
## 185 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [115, 137]}]
## 186 []
## 187 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 188 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 189 []
## 190 []
## 191 []
## 192 []
## 193 [{’text’: ’RoyalFamily’, ’indices’: [74, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 194 [{’text’: ’dickie’, ’indices’: [103, 110]}]
## 195 [{’text’: ’dickie’, ’indices’: [103, 110]}]
## 196 [{’text’: ’dickie’, ’indices’: [103, 110]}]
## 197 []
## 198 [{’text’: ’PiersMorgan’, ’indices’: [35, 47]}]
## 199 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 200 []
## 201 []
## 202 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 203 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 204 [{’text’: ’RoyalFamily’, ’indices’: [18, 30]}]
## 205 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 206 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [81, 103]}]
## 207 [{’text’: ’PrinceHarry’, ’indices’: [60, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 208 [{’text’: ’PrinceHarry’, ’indices’: [60, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 209 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 210 [{’text’: ’PrinceHarry’, ’indices’: [41, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 211 []
## 212 []
## 213 []
## 214 []
## 215 []
## 216 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 217 []
## 218 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 219 []
## 220 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 221 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 222 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’TeamMeghan’, ’indices’: [104, 115]}]
## 223 []
## 224 []
## 225 []
## 226 []
## 227 [{’text’: ’racism’, ’indices’: [81, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 228 [{’text’: ’racism’, ’indices’: [81, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 229 []
## 230 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 231 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 232 []
## 233 []
## 234 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’Oprah’, ’indices’: [67, 73]}, {’text’: ’MeghanAndHarry’, ’indices’: [74, 89]}]
321
## 235 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’HarryandMeghan’, ’indices’: [86, 101]}]
## 236 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’HarryandMeghan’, ’indices’: [86, 101]}]
## 237 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 238 [{’text’: ’Memes’, ’indices’: [67, 73]}, {’text’: ’AllTogetherNow’, ’indices’: [74, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 239 []
## 240 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 241 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 242 [{’text’: ’PrinceHarry’, ’indices’: [46, 58]}, {’text’: ’PrincessDiana’, ’indices’: [92, 106]}]
## 243 [{’text’: ’PrinceHarry’, ’indices’: [46, 58]}, {’text’: ’PrincessDiana’, ’indices’: [92, 106]}]
## 244 [{’text’: ’media’, ’indices’: [33, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’OprahMeghanHarry’, ’indices’: [81, 98]}]
## 245 [{’text’: ’media’, ’indices’: [33, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’OprahMeghanHarry’, ’indices’: [81, 98]}]
## 246 [{’text’: ’media’, ’indices’: [33, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’OprahMeghanHarry’, ’indices’: [81, 98]}]
## 247 [{’text’: ’KateMiddleton’, ’indices’: [12, 26]}]
## 248 [{’text’: ’RolandMartinUnfiltered’, ’indices’: [16, 39]}, {’text’: ’MeghanMcCain’, ’indices’: [83, 96]}, {’text’: ’Oprah’, ’indices’: [97, 103]}]
## 249 [{’text’: ’RolandMartinUnfiltered’, ’indices’: [16, 39]}, {’text’: ’MeghanMcCain’, ’indices’: [83, 96]}, {’text’: ’Oprah’, ’indices’: [97, 103]}]
## 250 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 251 [{’text’: ’QueenElizabeth’, ’indices’: [28, 43]}, {’text’: ’Queen’, ’indices’: [44, 50]}, {’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}, {’text’: ’PrincessDiana’, ’indices’: [88, 102]}]
## 252 [{’text’: ’stopasianhate’, ’indices’: [107, 121]}, {’text’: ’meghanmarkle’, ’indices’: [122, 135]}]
## 253 [{’text’: ’stopasianhate’, ’indices’: [107, 121]}, {’text’: ’meghanmarkle’, ’indices’: [122, 135]}]
## 254 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 255 [{’text’: ’racism’, ’indices’: [57, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 256 [{’text’: ’SystemicRacism’, ’indices’: [8, 23]}, {’text’: ’racism’, ’indices’: [78, 85]}]
## 257 [{’text’: ’thefirm’, ’indices’: [71, 79]}]
## 258 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 259 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 260 []
## 261 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’PrincessDiana’, ’indices’: [99, 113]}]
## 262 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 263 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 264 [{’text’: ’MeghanMarkle’, ’indices’: [8, 21]}]
## 265 [{’text’: ’piersmorgan’, ’indices’: [50, 62]}, {’text’: ’Piers’, ’indices’: [63, 69]}, {’text’: ’pierxit’, ’indices’: [70, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’meganandharry’, ’indices’: [93, 107]}]
## 266 [{’text’: ’piersmorgan’, ’indices’: [50, 62]}, {’text’: ’Piers’, ’indices’: [63, 69]}, {’text’: ’pierxit’, ’indices’: [70, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’meganandharry’, ’indices’: [93, 107]}]
## 267 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [67, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 268 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [67, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 269 [{’text’: ’MEghan’, ’indices’: [39, 46]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 270 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 271 [{’text’: ’meghanmarkle’, ’indices’: [32, 45]}]
## 272 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 273 [{’text’: ’meghanmarkle’, ’indices’: [84, 97]}]
## 274 []
## 275 []
## 276 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’OprahMeghanHarryinterview’, ’indices’: [100, 126]}]
## 277 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 278 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 279 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’GodSavetheQueen’, ’indices’: [64, 80]}]
## 280 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 281 [{’text’: ’PrinceHarry’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’Comedy’, ’indices’: [58, 65]}]
## 282 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 283 [{’text’: ’meganandharry’, ’indices’: [61, 75]}, {’text’: ’MeghanMarkle’, ’indices’: [76, 89]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [90, 112]}]
## 284 []
## 285 []
## 286 []
## 287 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}, {’text’: ’tantrum’, ’indices’: [115, 123]}]
## 288 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}, {’text’: ’tantrum’, ’indices’: [115, 123]}]
322
## 289 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}, {’text’: ’tantrum’, ’indices’: [115, 123]}]
## 290 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}, {’text’: ’tantrum’, ’indices’: [115, 123]}]
## 291 []
## 292 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 293 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 294 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 295 [{’text’: ’PiersMorgan’, ’indices’: [36, 48]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 296 [{’text’: ’PiersMorgan’, ’indices’: [36, 48]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 297 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’OprahMeghanHarry’, ’indices’: [85, 102]}]
## 298 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’PrinceHarry’, ’indices’: [31, 43]}, {’text’: ’WhiteHouse’, ’indices’: [44, 55]}, {’text’: ’OprahMeghanHarry’, ’indices’: [56, 73]}, {’text’: ’OprahWinfrey’, ’indices’: [74, 87]}, {’text’: ’Video’, ’indices’: [88, 94]}, {’text’: ’interview’, ’indices’: [95, 105]}]
## 299 []
## 300 []
## 301 []
## 302 []
## 303 []
## 304 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 305 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 306 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 307 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 308 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 309 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’TeamMeghan’, ’indices’: [68, 79]}, {’text’: ’IotaPhiTheta’, ’indices’: [95, 108]}]
## 310 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’TeamMeghan’, ’indices’: [68, 79]}, {’text’: ’IotaPhiTheta’, ’indices’: [95, 108]}]
## 311 []
## 312 []
## 313 []
## 314 [{’text’: ’Nowplaying’, ’indices’: [0, 11]}]
## 315 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’OprahMeghanHarry’, ’indices’: [86, 103]}]
## 316 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 317 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 318 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 319 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 320 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 321 []
## 322 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 323 [{’text’: ’PiersMorgan’, ’indices’: [45, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’PrinceHarry’, ’indices’: [72, 84]}, {’text’: ’OprahMeghanHarry’, ’indices’: [85, 102]}]
## 324 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 325 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 326 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 327 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’OprahMeghanHarry’, ’indices’: [67, 84]}, {’text’: ’Oprahinterview’, ’indices’: [85, 100]}]
## 328 [{’text’: ’PrinceHarry’, ’indices’: [53, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’Oprah’, ’indices’: [85, 91]}, {’text’: ’Oprahinterview’, ’indices’: [92, 107]}, {’text’: ’CBSNEWS’, ’indices’: [108, 116]}, {’text’: ’ViacomCBS’, ’indices’: [117, 127]}]
## 329 [{’text’: ’PrinceHarry’, ’indices’: [53, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’Oprah’, ’indices’: [85, 91]}, {’text’: ’Oprahinterview’, ’indices’: [92, 107]}, {’text’: ’CBSNEWS’, ’indices’: [108, 116]}, {’text’: ’ViacomCBS’, ’indices’: [117, 127]}]
## 330 [{’text’: ’PrinceHarry’, ’indices’: [53, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’Oprah’, ’indices’: [85, 91]}, {’text’: ’Oprahinterview’, ’indices’: [92, 107]}, {’text’: ’CBSNEWS’, ’indices’: [108, 116]}, {’text’: ’ViacomCBS’, ’indices’: [117, 127]}]
## 331 []
## 332 []
## 333 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 334 []
## 335 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 336 [{’text’: ’HarryandMeghan’, ’indices’: [99, 114]}]
## 337 [{’text’: ’COVID19’, ’indices’: [14, 22]}]
## 338 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’GodSavetheQueen’, ’indices’: [72, 88]}]
## 339 [{’text’: ’MeghanandHarry’, ’indices’: [51, 66]}, {’text’: ’Oprah’, ’indices’: [75, 81]}, {’text’: ’meghanmarkle’, ’indices’: [82, 95]}, {’text’: ’PrinceHarry’, ’indices’: [100, 112]}]
## 340 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [97, 114]}]
## 341 []
## 342 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [79, 101]}, {’text’: ’OprahMeghanHarry’, ’indices’: [103, 120]}]
323
## 343 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [66, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 344 [{’text’: ’meghanmarkle’, ’indices’: [13, 26]}]
## 345 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [75, 97]}]
## 346 []
## 347 [{’text’: ’PrinceCharles’, ’indices’: [0, 14]}]
## 348 [{’text’: ’people’, ’indices’: [0, 7]}, {’text’: ’triggered’, ’indices’: [25, 35]}, {’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 349 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 350 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 351 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 352 []
## 353 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’redtabletalk’, ’indices’: [75, 88]}]
## 354 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 355 []
## 356 []
## 357 []
## 358 []
## 359 [{’text’: ’Divorce’, ’indices’: [61, 69]}, {’text’: ’FalseAllegations’, ’indices’: [82, 99]}]
## 360 [{’text’: ’Divorce’, ’indices’: [61, 69]}, {’text’: ’FalseAllegations’, ’indices’: [82, 99]}]
## 361 [{’text’: ’BREAKING’, ’indices’: [0, 9]}]
## 362 [{’text’: ’BREAKING’, ’indices’: [0, 9]}]
## 363 [{’text’: ’BREAKING’, ’indices’: [0, 9]}]
## 364 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 365 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 366 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 367 [{’text’: ’mentally’, ’indices’: [72, 81]}, {’text’: ’CBS’, ’indices’: [95, 99]}]
## 368 [{’text’: ’mentally’, ’indices’: [72, 81]}, {’text’: ’CBS’, ’indices’: [95, 99]}]
## 369 []
## 370 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 371 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’PrinceHarry’, ’indices’: [46, 58]}]
## 372 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 373 []
## 374 []
## 375 []
## 376 []
## 377 []
## 378 []
## 379 []
## 380 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [49, 71]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’AbolishTheMonarchy’, ’indices’: [88, 107]}]
## 381 []
## 382 [{’text’: ’byepiers’, ’indices’: [100, 109]}]
## 383 []
## 384 [{’text’: ’racism’, ’indices’: [15, 22]}, {’text’: ’British’, ’indices’: [37, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’Archie’, ’indices’: [87, 94]}]
## 385 [{’text’: ’PiersMorgan’, ’indices’: [25, 37]}, {’text’: ’racist’, ’indices’: [105, 112]}]
## 386 [{’text’: ’PiersMorgan’, ’indices’: [25, 37]}, {’text’: ’racist’, ’indices’: [105, 112]}]
## 387 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’MeghanAndHarry’, ’indices’: [97, 112]}]
## 388 []
## 389 []
## 390 [{’text’: ’InternationalWomensDay’, ’indices’: [54, 77]}, {’text’: ’internationalwomensday2021’, ’indices’: [78, 105]}]
## 391 [{’text’: ’PiersMorgan’, ’indices’: [9, 21]}]
## 392 [{’text’: ’TheCrown’, ’indices’: [12, 21]}]
## 393 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’BBCwomenshour’, ’indices’: [90, 104]}]
## 394 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’BBCwomenshour’, ’indices’: [90, 104]}]
## 395 []
## 396 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [71, 93]}, {’text’: ’OwnTVRocks’, ’indices’: [94, 105]}]
324
## 397 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 398 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 399 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 400 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [22, 44]}]
## 401 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 402 []
## 403 []
## 404 []
## 405 []
## 406 [{’text’: ’SelfVictimization’, ’indices’: [13, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’Trumps’, ’indices’: [60, 67]}]
## 407 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [47, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’BuckinghamPalace’, ’indices’: [86, 103]}]
## 408 []
## 409 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}, {’text’: ’BlackLivesMatter’, ’indices’: [24, 41]}]
## 410 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 411 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 412 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’MeghanMarkleisaLiar’, ’indices’: [71, 91]}]
## 413 [{’text’: ’SussexRoyal’, ’indices’: [22, 34]}]
## 414 [{’text’: ’TheShelettaShow’, ’indices’: [85, 101]}]
## 415 []
## 416 [{’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 417 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 418 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 419 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 420 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 421 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [29, 51]}, {’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 422 [{’text’: ’MeghanAndHarry’, ’indices’: [14, 29]}, {’text’: ’PrinceCharles’, ’indices’: [57, 71]}]
## 423 [{’text’: ’MEGHANMARKLE’, ’indices’: [111, 124]}]
## 424 [{’text’: ’hollyweird’, ’indices’: [44, 55]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [79, 101]}, {’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 425 [{’text’: ’hollyweird’, ’indices’: [44, 55]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [79, 101]}, {’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 426 []
## 427 []
## 428 []
## 429 []
## 430 []
## 431 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [67, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 432 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 433 []
## 434 []
## 435 [{’text’: ’CharlieKirk’, ’indices’: [81, 93]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 436 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 437 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 438 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 439 [{’text’: ’Megxit’, ’indices’: [84, 91]}]
## 440 [{’text’: ’Megxit’, ’indices’: [84, 91]}]
## 441 [{’text’: ’Megxit’, ’indices’: [84, 91]}]
## 442 [{’text’: ’Megxit’, ’indices’: [84, 91]}]
## 443 []
## 444 []
## 445 []
## 446 [{’text’: ’KateMiddleton’, ’indices’: [66, 80]}, {’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 447 [{’text’: ’KateMiddleton’, ’indices’: [66, 80]}, {’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 448 []
## 449 []
## 450 [{’text’: ’ThrFirm’, ’indices’: [15, 23]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’PrinceHarry’, ’indices’: [59, 71]}]
325
## 451 [{’text’: ’ThrFirm’, ’indices’: [15, 23]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’PrinceHarry’, ’indices’: [59, 71]}]
## 452 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 453 [{’text’: ’MEGXIT’, ’indices’: [48, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’PrinceHarry’, ’indices’: [70, 82]}, {’text’: ’OprahMeghanHarry’, ’indices’: [83, 100]}, {’text’: ’BROKE’, ’indices’: [101, 107]}]
## 454 []
## 455 []
## 456 []
## 457 []
## 458 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 459 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 460 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 461 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 462 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [68, 90]}]
## 463 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 464 []
## 465 []
## 466 []
## 467 [{’text’: ’GMB’, ’indices’: [37, 41]}]
## 468 [{’text’: ’MeghanAndHarry’, ’indices’: [22, 37]}, {’text’: ’RoyalFamily’, ’indices’: [73, 85]}]
## 469 [{’text’: ’PrinceHarry’, ’indices’: [102, 114]}]
## 470 [{’text’: ’PrinceHarry’, ’indices’: [102, 114]}]
## 471 [{’text’: ’MeghanHarryOprahHarryandMeghanonOprah’, ’indices’: [60, 98]}]
## 472 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 473 []
## 474 []
## 475 []
## 476 []
## 477 []
## 478 []
## 479 [{’text’: ’ThomasMarkle’, ’indices’: [5, 18]}]
## 480 []
## 481 []
## 482 []
## 483 []
## 484 [{’text’: ’meghanmarkle’, ’indices’: [32, 45]}]
## 485 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 486 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 487 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [81, 103]}]
## 488 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’OprahMeghanHarry’, ’indices’: [77, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}, {’text’: ’MeghanAndHarry’, ’indices’: [109, 124]}]
## 489 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 490 [{’text’: ’etsy’, ’indices’: [62, 67]}]
## 491 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 492 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 493 [{’text’: ’RightWing’, ’indices’: [10, 20]}, {’text’: ’MSM’, ’indices’: [42, 46]}, {’text’: ’CarolineFlack’, ’indices’: [65, 79]}]
## 494 []
## 495 []
## 496 []
## 497 []
## 498 []
## 499 []
## 500 []
## 501 []
## 502 []
## 503 []
## 504 []
326
## 505 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}, {’text’: ’DukeofSussex’, ’indices’: [96, 109]}]
## 506 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}, {’text’: ’DukeofSussex’, ’indices’: [96, 109]}]
## 507 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 508 []
## 509 []
## 510 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 511 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 512 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’PrinceHarry’, ’indices’: [53, 65]}, {’text’: ’OprahWinfrey’, ’indices’: [75, 88]}]
## 513 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 514 [{’text’: ’thesun’, ’indices’: [91, 98]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}, {’text’: ’OprahMeghanHarry’, ’indices’: [113, 130]}]
## 515 []
## 516 []
## 517 [{’text’: ’Oprah’, ’indices’: [94, 100]}]
## 518 [{’text’: ’Oprah’, ’indices’: [94, 100]}]
## 519 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’HarryMeghanOprah’, ’indices’: [105, 122]}]
## 520 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’HarryMeghanOprah’, ’indices’: [105, 122]}]
## 521 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’OprahMeghanHarry’, ’indices’: [65, 82]}]
## 522 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 523 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 524 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 525 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 526 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 527 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 528 [{’text’: ’OprahMeghanHarry’, ’indices’: [24, 41]}, {’text’: ’PrinceHarry’, ’indices’: [42, 54]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 529 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 530 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 531 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 532 []
## 533 []
## 534 []
## 535 []
## 536 []
## 537 []
## 538 []
## 539 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 540 [{’text’: ’MeghanAndHarry’, ’indices’: [89, 104]}]
## 541 [{’text’: ’MeghanAndHarry’, ’indices’: [89, 104]}]
## 542 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 543 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 544 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 545 []
## 546 []
## 547 []
## 548 []
## 549 []
## 550 []
## 551 []
## 552 []
## 553 []
## 554 []
## 555 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 556 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 557 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 558 []
327
## 559 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}]
## 560 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}]
## 561 [{’text’: ’Oprah’, ’indices’: [48, 54]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}]
## 562 []
## 563 []
## 564 []
## 565 []
## 566 []
## 567 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’TeamMeghan’, ’indices’: [76, 87]}, {’text’: ’OprahMeghanHarry’, ’indices’: [88, 105]}]
## 568 [{’text’: ’meghanmarkle’, ’indices’: [75, 88]}, {’text’: ’nocajonesharry’, ’indices’: [89, 104]}]
## 569 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’OprahMeghanHarry’, ’indices’: [97, 114]}]
## 570 []
## 571 [{’text’: ’MeghanMarkle’, ’indices’: [117, 130]}]
## 572 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}, {’text’: ’PrincessDi’, ’indices’: [79, 90]}]
## 573 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}, {’text’: ’PrincessDi’, ’indices’: [79, 90]}]
## 574 []
## 575 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [83, 105]}]
## 576 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}, {’text’: ’respect’, ’indices’: [51, 59]}, {’text’: ’class’, ’indices’: [63, 69]}]
## 577 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}, {’text’: ’respect’, ’indices’: [51, 59]}, {’text’: ’class’, ’indices’: [63, 69]}]
## 578 [{’text’: ’PrinceHarry’, ’indices’: [41, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 579 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}]
## 580 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 581 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 582 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 583 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 584 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 585 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 586 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 587 []
## 588 []
## 589 []
## 590 []
## 591 []
## 592 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 593 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 594 [{’text’: ’karen’, ’indices’: [65, 71]}]
## 595 [{’text’: ’karen’, ’indices’: [65, 71]}]
## 596 [{’text’: ’karen’, ’indices’: [65, 71]}]
## 597 [{’text’: ’karen’, ’indices’: [65, 71]}]
## 598 [{’text’: ’karen’, ’indices’: [65, 71]}]
## 599 [{’text’: ’WomensDay’, ’indices’: [38, 48]}, {’text’: ’Cincinnati’, ’indices’: [54, 65]}, {’text’: ’ScottFraud’, ’indices’: [87, 98]}]
## 600 [{’text’: ’WomensDay’, ’indices’: [38, 48]}, {’text’: ’Cincinnati’, ’indices’: [54, 65]}, {’text’: ’ScottFraud’, ’indices’: [87, 98]}]
## 601 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 602 [{’text’: ’OprahMeghanHarry’, ’indices’: [14, 31]}, {’text’: ’meghanmarkle’, ’indices’: [47, 60]}]
## 603 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 604 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 605 [{’text’: ’Fabulous’, ’indices’: [0, 9]}, {’text’: ’article’, ’indices’: [10, 18]}, {’text’: ’Learn’, ’indices’: [35, 41]}, {’text’: ’racism’, ’indices’: [67, 74]}, {’text’: ’reach’, ’indices’: [77, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 606 []
## 607 []
## 608 [{’text’: ’PrinceHarry’, ’indices’: [74, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 609 [{’text’: ’PrinceHarry’, ’indices’: [74, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 610 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 611 []
## 612 []
328
## 613 [{’text’: ’sussexsquad’, ’indices’: [42, 54]}, {’text’: ’meghanmarkle’, ’indices’: [122, 135]}]
## 614 [{’text’: ’sussexsquad’, ’indices’: [42, 54]}, {’text’: ’meghanmarkle’, ’indices’: [122, 135]}]
## 615 []
## 616 []
## 617 []
## 618 [{’text’: ’Charles’, ’indices’: [47, 55]}]
## 619 [{’text’: ’Charles’, ’indices’: [47, 55]}]
## 620 [{’text’: ’Charles’, ’indices’: [47, 55]}]
## 621 [{’text’: ’Charles’, ’indices’: [47, 55]}]
## 622 []
## 623 []
## 624 []
## 625 []
## 626 []
## 627 []
## 628 []
## 629 [{’text’: ’covid19’, ’indices’: [20, 28]}]
## 630 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 631 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’releasetheDMs’, ’indices’: [57, 71]}]
## 632 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’PrincessDiana’, ’indices’: [61, 75]}]
## 633 [{’text’: ’MeghanAndHarry’, ’indices’: [58, 73]}, {’text’: ’MeghanAndHarry’, ’indices’: [75, 90]}, {’text’: ’HarryMeghanOprah’, ’indices’: [91, 108]}]
## 634 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [68, 90]}, {’text’: ’MeghanAndHarry’, ’indices’: [91, 106]}]
## 635 []
## 636 []
## 637 []
## 638 []
## 639 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 640 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 641 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 642 [{’text’: ’PrinceHarry’, ’indices’: [28, 40]}, {’text’: ’Firm’, ’indices’: [55, 60]}, {’text’: ’PrincessDiana’, ’indices’: [69, 83]}, {’text’: ’DukeOfYork’, ’indices’: [84, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 643 [{’text’: ’PrinceHarry’, ’indices’: [28, 40]}, {’text’: ’Firm’, ’indices’: [55, 60]}, {’text’: ’PrincessDiana’, ’indices’: [69, 83]}, {’text’: ’DukeOfYork’, ’indices’: [84, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 644 []
## 645 []
## 646 [{’text’: ’Harry’, ’indices’: [31, 37]}, {’text’: ’MeghanMarkle’, ’indices’: [38, 51]}, {’text’: ’Oprah’, ’indices’: [52, 58]}, {’text’: ’OprahMeghanHarry’, ’indices’: [59, 76]}, {’text’: ’talkischeap’, ’indices’: [77, 89]}]
## 647 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}, {’text’: ’MeghanAndHarry’, ’indices’: [104, 119]}]
## 648 []
## 649 []
## 650 []
## 651 []
## 652 []
## 653 []
## 654 []
## 655 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’RacismIsNotAnOpinion’, ’indices’: [48, 69]}, {’text’: ’WhitePrivilege’, ’indices’: [71, 86]}, {’text’: ’whitevision’, ’indices’: [87, 99]}]
## 656 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’RacismIsNotAnOpinion’, ’indices’: [48, 69]}, {’text’: ’WhitePrivilege’, ’indices’: [71, 86]}, {’text’: ’whitevision’, ’indices’: [87, 99]}]
## 657 []
## 658 [{’text’: ’OprahMeghanHarry’, ’indices’: [57, 74]}, {’text’: ’princeharry’, ’indices’: [75, 87]}, {’text’: ’meghanmarkle’, ’indices’: [88, 101]}]
## 659 [{’text’: ’OprahMeghanHarry’, ’indices’: [57, 74]}, {’text’: ’princeharry’, ’indices’: [75, 87]}, {’text’: ’meghanmarkle’, ’indices’: [88, 101]}]
## 660 []
## 661 []
## 662 []
## 663 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’fake’, ’indices’: [30, 35]}, {’text’: ’false’, ’indices’: [40, 46]}]
## 664 [{’text’: ’MeghanMarkle’, ’indices’: [104, 117]}]
## 665 []
## 666 [{’text’: ’PrinceHarry’, ’indices’: [82, 94]}]
329
## 667 [{’text’: ’PrinceHarry’, ’indices’: [76, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 668 []
## 669 []
## 670 []
## 671 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 672 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 673 [{’text’: ’Canadians’, ’indices’: [32, 42]}]
## 674 []
## 675 []
## 676 []
## 677 []
## 678 []
## 679 []
## 680 []
## 681 []
## 682 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}, {’text’: ’RoyalFamily’, ’indices’: [113, 125]}]
## 683 [{’text’: ’MeghanMarkle’, ’indices’: [1, 14]}, {’text’: ’ADOS’, ’indices’: [78, 83]}, {’text’: ’BlackPolitics’, ’indices’: [84, 98]}]
## 684 [{’text’: ’OprahMeghanHarry’, ’indices’: [93, 110]}]
## 685 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’racism’, ’indices’: [91, 98]}, {’text’: ’RoyalFamily’, ’indices’: [99, 111]}]
## 686 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 687 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’TheView’, ’indices’: [109, 117]}]
## 688 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’IWD’, ’indices’: [97, 101]}]
## 689 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’IWD’, ’indices’: [97, 101]}]
## 690 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 691 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 692 []
## 693 []
## 694 []
## 695 []
## 696 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 697 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 698 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 699 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 700 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 701 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 702 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 703 [{’text’: ’Hush’, ’indices’: [59, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 704 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 705 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 706 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 707 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 708 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 709 [{’text’: ’Piers’, ’indices’: [85, 91]}]
## 710 []
## 711 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 712 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 713 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 714 []
## 715 [{’text’: ’MeghanMarkle’, ’indices’: [3, 16]}, {’text’: ’ITV’, ’indices’: [31, 35]}, {’text’: ’power’, ’indices’: [75, 81]}, {’text’: ’narcissists’, ’indices’: [91, 103]}]
## 716 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 717 [{’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
## 718 [{’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
## 719 [{’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
## 720 [{’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
330
## 721 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 722 [{’text’: ’PrinceHarry’, ’indices’: [72, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 723 [{’text’: ’PrinceHarry’, ’indices’: [72, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 724 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 725 []
## 726 []
## 727 []
## 728 []
## 729 []
## 730 []
## 731 []
## 732 []
## 733 []
## 734 []
## 735 []
## 736 [{’text’: ’securityspteipped’, ’indices’: [26, 44]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [78, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 737 [{’text’: ’securityspteipped’, ’indices’: [26, 44]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [78, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 738 []
## 739 []
## 740 []
## 741 []
## 742 []
## 743 []
## 744 [{’text’: ’RoyalRumble’, ’indices’: [45, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}]
## 745 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 746 [{’text’: ’Twitter’, ’indices’: [23, 31]}, {’text’: ’theroyalfamily’, ’indices’: [78, 93]}]
## 747 [{’text’: ’Twitter’, ’indices’: [23, 31]}, {’text’: ’theroyalfamily’, ’indices’: [78, 93]}]
## 748 []
## 749 [{’text’: ’MEghanMarkle’, ’indices’: [31, 44]}]
## 750 []
## 751 []
## 752 []
## 753 []
## 754 []
## 755 []
## 756 []
## 757 []
## 758 []
## 759 []
## 760 []
## 761 []
## 762 []
## 763 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 764 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 765 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 766 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 767 []
## 768 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}, {’text’: ’TeamMeghan’, ’indices’: [102, 113]}]
## 769 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}, {’text’: ’TeamMeghan’, ’indices’: [102, 113]}]
## 770 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 771 []
## 772 [{’text’: ’PiersMorgan’, ’indices’: [0, 12]}, {’text’: ’ITV’, ’indices’: [19, 23]}, {’text’: ’GoodMorningBritain’, ’indices’: [26, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’PrinceHarry’, ’indices’: [85, 97]}]
## 773 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’PrinceHarry’, ’indices’: [23, 35]}, {’text’: ’Utagera’, ’indices’: [84, 92]}]
## 774 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
331
## 775 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [34, 56]}, {’text’: ’ThomasMarkle’, ’indices’: [57, 70]}, {’text’: ’RoyalFamily’, ’indices’: [71, 83]}, {’text’: ’UK’, ’indices’: [84, 87]}, {’text’: ’PrinceHarry’, ’indices’: [88, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 776 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [34, 56]}, {’text’: ’ThomasMarkle’, ’indices’: [57, 70]}, {’text’: ’RoyalFamily’, ’indices’: [71, 83]}, {’text’: ’UK’, ’indices’: [84, 87]}, {’text’: ’PrinceHarry’, ’indices’: [88, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 777 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [34, 56]}, {’text’: ’ThomasMarkle’, ’indices’: [57, 70]}, {’text’: ’RoyalFamily’, ’indices’: [71, 83]}, {’text’: ’UK’, ’indices’: [84, 87]}, {’text’: ’PrinceHarry’, ’indices’: [88, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 778 []
## 779 []
## 780 []
## 781 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 782 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 783 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 784 []
## 785 [{’text’: ’meghanmarkle’, ’indices’: [39, 52]}]
## 786 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’meganandharryonoprah’, ’indices’: [51, 72]}]
## 787 []
## 788 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}, {’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}]
## 789 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}, {’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}]
## 790 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 791 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 792 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 793 [{’text’: ’WomensDay’, ’indices’: [63, 73]}, {’text’: ’Racism’, ’indices’: [74, 81]}, {’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’MeghanAndHarry’, ’indices’: [96, 111]}]
## 794 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 795 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 796 [{’text’: ’InternationalWomensDay’, ’indices’: [32, 55]}]
## 797 []
## 798 []
## 799 []
## 800 []
## 801 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’PrinceHarry’, ’indices’: [43, 55]}, {’text’: ’WhiteHouse’, ’indices’: [56, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}, {’text’: ’OprahWinfrey’, ’indices’: [86, 99]}, {’text’: ’Video’, ’indices’: [100, 106]}]
## 802 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’PrinceHarry’, ’indices’: [43, 55]}, {’text’: ’WhiteHouse’, ’indices’: [56, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}, {’text’: ’OprahWinfrey’, ’indices’: [86, 99]}, {’text’: ’Video’, ’indices’: [100, 106]}]
## 803 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 804 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 805 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 806 [{’text’: ’meghanmarkle’, ’indices’: [18, 31]}, {’text’: ’Oprah’, ’indices’: [52, 58]}]
## 807 [{’text’: ’RoyalFamily’, ’indices’: [33, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 808 [{’text’: ’RoyalFamily’, ’indices’: [33, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 809 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 810 []
## 811 []
## 812 []
## 813 [{’text’: ’Oprah’, ’indices’: [110, 116]}, {’text’: ’TheQueen’, ’indices’: [117, 126]}, {’text’: ’MeghanMarkle’, ’indices’: [127, 140]}]
## 814 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [40, 62]}]
## 815 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [40, 62]}]
## 816 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’PrinceHarry’, ’indices’: [27, 39]}]
## 817 []
## 818 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 819 []
## 820 []
## 821 []
## 822 []
## 823 []
## 824 []
## 825 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}, {’text’: ’PrinceHarry’, ’indices’: [72, 84]}]
## 826 [{’text’: ’meghanmarkle’, ’indices’: [80, 93]}]
## 827 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 828 [{’text’: ’KateMiddleton’, ’indices’: [80, 94]}]
332
## 829 [{’text’: ’KateMiddleton’, ’indices’: [80, 94]}]
## 830 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 831 []
## 832 []
## 833 []
## 834 []
## 835 []
## 836 []
## 837 [{’text’: ’OprahWinfrey’, ’indices’: [13, 26]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 838 []
## 839 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 840 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’theVICTIM’, ’indices’: [41, 51]}, {’text’: ’Bgrade’, ’indices’: [81, 88]}]
## 841 []
## 842 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 843 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’MeghanAndHarry’, ’indices’: [71, 86]}]
## 844 [{’text’: ’PrinceAndrew’, ’indices’: [33, 46]}]
## 845 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’bstrong’, ’indices’: [105, 113]}]
## 846 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’bstrong’, ’indices’: [105, 113]}]
## 847 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’bstrong’, ’indices’: [105, 113]}]
## 848 []
## 849 []
## 850 []
## 851 [{’text’: ’MassivMornings’, ’indices’: [0, 15]}, {’text’: ’TheRoyalUpdate’, ’indices’: [21, 36]}]
## 852 [{’text’: ’MassivMornings’, ’indices’: [0, 15]}, {’text’: ’TheRoyalUpdate’, ’indices’: [21, 36]}]
## 853 [{’text’: ’TheView’, ’indices’: [0, 8]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 854 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 855 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 856 [{’text’: ’BuckinghamPalace’, ’indices’: [91, 108]}]
## 857 [{’text’: ’BuckinghamPalace’, ’indices’: [91, 108]}]
## 858 [{’text’: ’TopicalAd’, ’indices’: [53, 63]}]
## 859 [{’text’: ’TopicalAd’, ’indices’: [53, 63]}]
## 860 [{’text’: ’TopicalAd’, ’indices’: [53, 63]}]
## 861 [{’text’: ’PrinceHarry’, ’indices’: [47, 59]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 862 [{’text’: ’PrinceHarry’, ’indices’: [47, 59]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 863 []
## 864 []
## 865 []
## 866 []
## 867 []
## 868 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}, {’text’: ’racehustler’, ’indices’: [52, 64]}]
## 869 []
## 870 [{’text’: ’SelfVictimization’, ’indices’: [35, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’Trumps’, ’indices’: [82, 89]}]
## 871 [{’text’: ’SelfVictimization’, ’indices’: [35, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’Trumps’, ’indices’: [82, 89]}]
## 872 [{’text’: ’SelfVictimization’, ’indices’: [35, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’Trumps’, ’indices’: [82, 89]}]
## 873 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’EGO’, ’indices’: [110, 114]}]
## 874 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’EGO’, ’indices’: [110, 114]}]
## 875 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’EGO’, ’indices’: [110, 114]}]
## 876 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’EGO’, ’indices’: [110, 114]}]
## 877 []
## 878 [{’text’: ’Feminism’, ’indices’: [103, 112]}]
## 879 [{’text’: ’RoyalFamily’, ’indices’: [75, 87]}]
## 880 [{’text’: ’MeghanMarkle’, ’indices’: [121, 134]}]
## 881 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 882 [{’text’: ’mentalhealth’, ’indices’: [84, 97]}]
333
## 883 []
## 884 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 885 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 886 [{’text’: ’RoyalFamily’, ’indices’: [26, 38]}, {’text’: ’PeterInLeicester’, ’indices’: [66, 83]}]
## 887 [{’text’: ’RoyalFamily’, ’indices’: [26, 38]}, {’text’: ’PeterInLeicester’, ’indices’: [66, 83]}]
## 888 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’PrinceHarry’, ’indices’: [84, 96]}]
## 889 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’RoyalFamily’, ’indices’: [49, 61]}]
## 890 []
## 891 []
## 892 []
## 893 []
## 894 []
## 895 []
## 896 []
## 897 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [76, 98]}, {’text’: ’MeghanAndHarry’, ’indices’: [100, 115]}]
## 898 [{’text’: ’XRAYMEMES’, ’indices’: [24, 34]}, {’text’: ’meghanmarkle’, ’indices’: [60, 73]}, {’text’: ’princeharry’, ’indices’: [74, 86]}, {’text’: ’meghan’, ’indices’: [87, 94]}, {’text’: ’harry’, ’indices’: [95, 101]}, {’text’: ’meme’, ’indices’: [102, 107]}, {’text’: ’memes’, ’indices’: [108, 114]}]
## 899 []
## 900 []
## 901 []
## 902 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}, {’text’: ’Meghan’, ’indices’: [25, 32]}]
## 903 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’OprahMeghanHarry’, ’indices’: [65, 82]}, {’text’: ’OprahWinfrey’, ’indices’: [83, 96]}, {’text’: ’TheRoyalFamily’, ’indices’: [97, 112]}]
## 904 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 905 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’monarchy’, ’indices’: [77, 86]}]
## 906 []
## 907 []
## 908 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 909 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 910 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 911 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 912 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 913 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 914 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 915 [{’text’: ’TheCrown’, ’indices’: [39, 48]}, {’text’: ’OprahMeghanHarry’, ’indices’: [63, 80]}, {’text’: ’MeghanAndHarry’, ’indices’: [81, 96]}, {’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 916 [{’text’: ’meganandharryonoprah’, ’indices’: [64, 85]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’lied’, ’indices’: [102, 107]}]
## 917 [{’text’: ’meganandharryonoprah’, ’indices’: [64, 85]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’lied’, ’indices’: [102, 107]}]
## 918 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 919 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 920 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 921 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [35, 57]}, {’text’: ’MeghanAndHarry’, ’indices’: [58, 73]}, {’text’: ’MeghanMarkle’, ’indices’: [74, 87]}, {’text’: ’endColorism’, ’indices’: [88, 100]}]
## 922 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 923 []
## 924 [{’text’: ’InternationalWomensDay’, ’indices’: [32, 55]}]
## 925 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’HarryandMeghan’, ’indices’: [54, 69]}]
## 926 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’HarryandMeghan’, ’indices’: [54, 69]}]
## 927 [{’text’: ’PrinceHarry’, ’indices’: [75, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 928 []
## 929 []
## 930 []
## 931 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 932 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [99, 121]}]
## 933 [{’text’: ’PrinceHarry’, ’indices’: [25, 37]}, {’text’: ’proofreading’, ’indices’: [75, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 934 []
## 935 [{’text’: ’MeghanMarkle’, ’indices’: [105, 118]}, {’text’: ’Oprah’, ’indices’: [119, 125]}]
## 936 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
334
## 937 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 938 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 939 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 940 []
## 941 [{’text’: ’PrinceAndrew’, ’indices’: [33, 46]}]
## 942 [{’text’: ’PrinceAndrew’, ’indices’: [33, 46]}]
## 943 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 944 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 945 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 946 [{’text’: ’MeghanMarkle’, ’indices’: [4, 17]}]
## 947 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 948 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 949 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 950 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [58, 80]}, {’text’: ’RedTableTalk’, ’indices’: [81, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 951 [{’text’: ’Bethenny’, ’indices’: [9, 18]}, {’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 952 []
## 953 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 954 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’meganandharry’, ’indices’: [54, 68]}]
## 955 [{’text’: ’meghanmarkle’, ’indices’: [50, 63]}, {’text’: ’nocajonesharry’, ’indices’: [69, 84]}]
## 956 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’GreenNewDeal’, ’indices’: [98, 111]}]
## 957 []
## 958 []
## 959 []
## 960 [{’text’: ’Shorts’, ’indices’: [61, 68]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’Funko’, ’indices’: [83, 89]}, {’text’: ’Meghan’, ’indices’: [90, 97]}, {’text’: ’funkopop’, ’indices’: [98, 107]}, {’text’: ’YouTuber’, ’indices’: [108, 117]}]
## 961 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 962 [{’text’: ’Queen’, ’indices’: [29, 35]}]
## 963 [{’text’: ’Tips’, ’indices’: [19, 24]}, {’text’: ’MentalHealth’, ’indices’: [26, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’SuicidePrevention’, ’indices’: [56, 74]}, {’text’: ’MondayMotivation’, ’indices’: [76, 93]}]
## 964 [{’text’: ’MeghanAndHarry’, ’indices’: [70, 85]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 965 []
## 966 []
## 967 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 968 []
## 969 [{’text’: ’r4today’, ’indices’: [54, 62]}]
## 970 []
## 971 []
## 972 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’MeghanAndHarry’, ’indices’: [80, 95]}, {’text’: ’GMTV’, ’indices’: [96, 101]}]
## 973 []
## 974 []
## 975 []
## 976 []
## 977 []
## 978 []
## 979 []
## 980 [{’text’: ’MeghanAndHarry’, ’indices’: [0, 15]}, {’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’theroyalfamily’, ’indices’: [124, 139]}]
## 981 []
## 982 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [25, 47]}, {’text’: ’MeghanAndHarry’, ’indices’: [48, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 983 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}, {’text’: ’theQueen’, ’indices’: [81, 90]}]
## 984 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}, {’text’: ’theQueen’, ’indices’: [81, 90]}]
## 985 [{’text’: ’PrinceHarry’, ’indices’: [48, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 986 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 987 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 988 []
## 989 []
## 990 []
335
## 991 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’BS’, ’indices’: [113, 116]}]
## 992 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’BS’, ’indices’: [113, 116]}]
## 993 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’BS’, ’indices’: [113, 116]}]
## 994 []
## 995 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 996 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 997 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 998 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 999 [{’text’: ’DailyMail’, ’indices’: [83, 93]}, {’text’: ’TheSun’, ’indices’: [96, 103]}]
## 1000 []
## 1001 []
## 1002 []
## 1003 []
## 1004 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 1005 []
## 1006 []
## 1007 []
## 1008 []
## 1009 []
## 1010 []
## 1011 [{’text’: ’TheCrown’, ’indices’: [48, 57]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 1012 [{’text’: ’TheCrown’, ’indices’: [48, 57]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 1013 []
## 1014 []
## 1015 []
## 1016 []
## 1017 []
## 1018 []
## 1019 []
## 1020 []
## 1021 []
## 1022 []
## 1023 []
## 1024 []
## 1025 []
## 1026 []
## 1027 []
## 1028 []
## 1029 []
## 1030 []
## 1031 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 1032 []
## 1033 []
## 1034 []
## 1035 []
## 1036 []
## 1037 []
## 1038 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [41, 63]}]
## 1039 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [41, 63]}]
## 1040 [{’text’: ’PrinceHarry’, ’indices’: [96, 108]}]
## 1041 [{’text’: ’PrinceHarry’, ’indices’: [96, 108]}]
## 1042 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’OprahMeghanHarry’, ’indices’: [44, 61]}]
## 1043 [{’text’: ’meghanmarkle’, ’indices’: [89, 102]}]
## 1044 [{’text’: ’meghanmarkle’, ’indices’: [89, 102]}]
336
## 1045 [{’text’: ’meghanmarkle’, ’indices’: [89, 102]}]
## 1046 [{’text’: ’meghanmarkle’, ’indices’: [89, 102]}]
## 1047 [{’text’: ’meghanmarkle’, ’indices’: [89, 102]}]
## 1048 [{’text’: ’Archie’, ’indices’: [54, 61]}, {’text’: ’WTF’, ’indices’: [70, 74]}, {’text’: ’Racism’, ’indices’: [75, 82]}, {’text’: ’WhiteSupremacism’, ’indices’: [83, 100]}]
## 1049 [{’text’: ’DoriaRagland’, ’indices’: [0, 13]}, {’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’OprahMeghanHarry’, ’indices’: [99, 116]}]
## 1050 [{’text’: ’Suckers’, ’indices’: [34, 42]}, {’text’: ’markled’, ’indices’: [56, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1051 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 1052 [{’text’: ’BoxOffice’, ’indices’: [61, 71]}]
## 1053 []
## 1054 []
## 1055 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 1056 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1057 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1058 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 1059 [{’text’: ’racism’, ’indices’: [80, 87]}]
## 1060 []
## 1061 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’MeghanAndHarry’, ’indices’: [80, 95]}]
## 1062 []
## 1063 []
## 1064 []
## 1065 []
## 1066 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’MegStrong’, ’indices’: [83, 93]}]
## 1067 []
## 1068 [{’text’: ’GMB’, ’indices’: [46, 50]}]
## 1069 [{’text’: ’GMB’, ’indices’: [46, 50]}]
## 1070 []
## 1071 []
## 1072 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’M’, ’indices’: [43, 45]}]
## 1073 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 1074 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1075 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 1076 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’PrinceHarry’, ’indices’: [15, 27]}, {’text’: ’OprahWinfrey’, ’indices’: [28, 41]}, {’text’: ’UK’, ’indices’: [53, 56]}]
## 1077 [{’text’: ’PrinceHarry’, ’indices’: [70, 82]}, {’text’: ’Meghan’, ’indices’: [83, 90]}, {’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’Joker’, ’indices’: [105, 111]}]
## 1078 []
## 1079 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1080 []
## 1081 []
## 1082 []
## 1083 []
## 1084 []
## 1085 []
## 1086 []
## 1087 []
## 1088 []
## 1089 []
## 1090 []
## 1091 []
## 1092 []
## 1093 []
## 1094 []
## 1095 []
## 1096 []
## 1097 []
## 1098 [{’text’: ’OprahMeghanHarry’, ’indices’: [66, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
337
## 1099 [{’text’: ’RoyalFamily’, ’indices’: [40, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’PrinceHa’, ’indices’: [67, 76]}]
## 1100 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 1101 []
## 1102 []
## 1103 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 1104 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 1105 [{’text’: ’AlexBeresford’, ’indices’: [87, 101]}]
## 1106 [{’text’: ’AlexBeresford’, ’indices’: [87, 101]}]
## 1107 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’OprahMeghanHarry’, ’indices’: [78, 95]}]
## 1108 []
## 1109 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}]
## 1110 []
## 1111 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}, {’text’: ’Illuminati’, ’indices’: [43, 54]}, {’text’: ’Witch’, ’indices’: [55, 61]}, {’text’: ’IlluminatiSurvivor’, ’indices’: [64, 83]}]
## 1112 []
## 1113 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 1114 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 1115 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’PrinceHarry’, ’indices’: [53, 65]}]
## 1116 []
## 1117 []
## 1118 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 1119 [{’text’: ’Chanel’, ’indices’: [12, 19]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 1120 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 1121 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 1122 [{’text’: ’Oprah’, ’indices’: [47, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [68, 90]}]
## 1123 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1124 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1125 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1126 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1127 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1128 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1129 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1130 [{’text’: ’MentalHealthAwareness’, ’indices’: [39, 61]}]
## 1131 [{’text’: ’MentalHealthAwareness’, ’indices’: [39, 61]}]
## 1132 []
## 1133 []
## 1134 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’OprahMeghanHarry’, ’indices’: [101, 118]}, {’text’: ’PrinceHarry’, ’indices’: [119, 131]}]
## 1135 []
## 1136 [{’text’: ’mexicans’, ’indices’: [11, 20]}, {’text’: ’OprahMeghanHarry’, ’indices’: [44, 61]}, {’text’: ’ifkgbg’, ’indices’: [62, 69]}, {’text’: ’NBAAllStar’, ’indices’: [70, 81]}, {’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 1137 [{’text’: ’anxiety’, ’indices’: [52, 60]}, {’text’: ’contentment’, ’indices’: [61, 73]}, {’text’: ’faith’, ’indices’: [74, 80]}, {’text’: ’family’, ’indices’: [81, 88]}, {’text’: ’fear’, ’indices’: [89, 94]}, {’text’: ’god’, ’indices’: [95, 99]}, {’text’: ’jesuschrist’, ’indices’: [100, 112]}]
## 1138 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 1139 []
## 1140 []
## 1141 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’RacistUK’, ’indices’: [86, 95]}]
## 1142 [{’text’: ’TheQueen’, ’indices’: [79, 88]}, {’text’: ’TylerPerry’, ’indices’: [89, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}, {’text’: ’PrinceHarry’, ’indices’: [115, 127]}, {’text’: ’Thando’, ’indices’: [128, 135]}]
## 1143 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 1144 [{’text’: ’TheInstitution’, ’indices’: [22, 37]}, {’text’: ’TheFirm’, ’indices’: [40, 48]}, {’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [80, 102]}]
## 1145 []
## 1146 []
## 1147 []
## 1148 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 1149 [{’text’: ’piersmorgan’, ’indices’: [16, 28]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 1150 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1151 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1152 []
338
## 1153 [{’text’: ’InternationalWomensDay’, ’indices’: [42, 65]}]
## 1154 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [80, 102]}]
## 1155 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1156 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1157 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1158 []
## 1159 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1160 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1161 []
## 1162 []
## 1163 [{’text’: ’QueenElizabeth’, ’indices’: [90, 105]}]
## 1164 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’OprahMeghanHarry’, ’indices’: [87, 104]}]
## 1165 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’OprahMeghanHarry’, ’indices’: [87, 104]}]
## 1166 []
## 1167 [{’text’: ’HarryandMeghan’, ’indices’: [9, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 1168 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 1169 [{’text’: ’PiersMorgan’, ’indices’: [36, 48]}]
## 1170 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 1171 [{’text’: ’Oprah’, ’indices’: [38, 44]}]
## 1172 [{’text’: ’Oprah’, ’indices’: [38, 44]}]
## 1173 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 1174 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 1175 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 1176 [{’text’: ’shadyassroyals’, ’indices’: [30, 45]}, {’text’: ’OprahMeghanHarry’, ’indices’: [46, 63]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [64, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1177 [{’text’: ’shadyassroyals’, ’indices’: [30, 45]}, {’text’: ’OprahMeghanHarry’, ’indices’: [46, 63]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [64, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1178 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’MeghanAndHarry’, ’indices’: [100, 115]}]
## 1179 []
## 1180 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 1181 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’OprahMeghanHarry’, ’indices’: [57, 74]}]
## 1182 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 1183 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 1184 [{’text’: ’MeghanMarkle’, ’indices’: [106, 119]}, {’text’: ’MeghanAndHarry’, ’indices’: [120, 135]}]
## 1185 []
## 1186 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’MeghanAndHarry’, ’indices’: [84, 99]}]
## 1187 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’MeghanAndHarry’, ’indices’: [84, 99]}]
## 1188 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’MeghanAndHarry’, ’indices’: [84, 99]}]
## 1189 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 1190 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 1191 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 1192 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’Harry’, ’indices’: [108, 114]}]
## 1193 []
## 1194 []
## 1195 []
## 1196 []
## 1197 []
## 1198 []
## 1199 []
## 1200 []
## 1201 []
## 1202 []
## 1203 []
## 1204 []
## 1205 []
## 1206 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
339
## 1207 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1208 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1209 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1210 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 1211 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 1212 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [89, 111]}]
## 1213 []
## 1214 []
## 1215 []
## 1216 []
## 1217 []
## 1218 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’Racism’, ’indices’: [56, 63]}]
## 1219 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1220 []
## 1221 []
## 1222 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 1223 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’MeghanAndHarry’, ’indices’: [32, 47]}, {’text’: ’health’, ’indices’: [48, 55]}, {’text’: ’TheFirm’, ’indices’: [56, 64]}, {’text’: ’OprahMeghanHarry’, ’indices’: [65, 82]}, {’text’: ’mentalhealth’, ’indices’: [83, 96]}]
## 1224 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [24, 46]}]
## 1225 []
## 1226 []
## 1227 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [93, 115]}]
## 1228 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [93, 115]}]
## 1229 []
## 1230 []
## 1231 []
## 1232 []
## 1233 []
## 1234 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 1235 []
## 1236 []
## 1237 []
## 1238 []
## 1239 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’Oprah’, ’indices’: [91, 97]}, {’text’: ’HarryandMeghan’, ’indices’: [98, 113]}]
## 1240 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’Oprah’, ’indices’: [91, 97]}, {’text’: ’HarryandMeghan’, ’indices’: [98, 113]}]
## 1241 [{’text’: ’leto’, ’indices’: [62, 67]}, {’text’: ’LetoMyEggo’, ’indices’: [68, 79]}, {’text’: ’LetoDoTheyKnow’, ’indices’: [80, 95]}]
## 1242 [{’text’: ’leto’, ’indices’: [62, 67]}, {’text’: ’LetoMyEggo’, ’indices’: [68, 79]}, {’text’: ’LetoDoTheyKnow’, ’indices’: [80, 95]}]
## 1243 [{’text’: ’Yes’, ’indices’: [0, 4]}, {’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 1244 [{’text’: ’Yes’, ’indices’: [0, 4]}, {’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 1245 []
## 1246 []
## 1247 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 1248 [{’text’: ’alexberesford’, ’indices’: [70, 84]}, {’text’: ’piersmorgan’, ’indices’: [85, 97]}]
## 1249 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 1250 []
## 1251 []
## 1252 []
## 1253 []
## 1254 []
## 1255 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}, {’text’: ’PrinceAndrew’, ’indices’: [83, 96]}, {’text’: ’HarryandMeghan’, ’indices’: [98, 113]}]
## 1256 [{’text’: ’Shame’, ’indices’: [12, 18]}, {’text’: ’Guilt’, ’indices’: [23, 29]}, {’text’: ’suicide’, ’indices’: [56, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 1257 [{’text’: ’PrinceHarry’, ’indices’: [20, 32]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [33, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 1258 []
## 1259 []
## 1260 []
340
## 1261 []
## 1262 []
## 1263 []
## 1264 []
## 1265 [{’text’: ’Doubt’, ’indices’: [83, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}, {’text’: ’PrinceHarry’, ’indices’: [104, 116]}, {’text’: ’Oprah’, ’indices’: [117, 123]}, {’text’: ’Interview’, ’indices’: [124, 134]}]
## 1266 [{’text’: ’meghanmarkle’, ’indices’: [21, 34]}, {’text’: ’breathe’, ’indices’: [83, 91]}]
## 1267 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1268 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}, {’text’: ’PrinceHarry’, ’indices’: [21, 33]}, {’text’: ’OprahMeghanHarry’, ’indices’: [34, 51]}, {’text’: ’Britain’, ’indices’: [52, 60]}, {’text’: ’BritishMonarchy’, ’indices’: [61, 77]}, {’text’: ’British’, ’indices’: [78, 86]}, {’text’: ’Slavery’, ’indices’: [87, 95]}, {’text’: ’Commonwealth’, ’indices’: [96, 109]}]
## 1269 []
## 1270 []
## 1271 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}, {’text’: ’PrinceAndrew’, ’indices’: [81, 94]}]
## 1272 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 1273 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 1274 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 1275 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 1276 [{’text’: ’RoyalFamily’, ’indices’: [27, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’proudtobebritish’, ’indices’: [54, 71]}]
## 1277 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 1278 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1279 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1280 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1281 []
## 1282 []
## 1283 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’MeghanAndHarry’, ’indices’: [75, 90]}, {’text’: ’HarryTheHostage’, ’indices’: [92, 108]}]
## 1284 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’MeghanAndHarry’, ’indices’: [75, 90]}, {’text’: ’HarryTheHostage’, ’indices’: [92, 108]}]
## 1285 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’MeghanAndHarry’, ’indices’: [75, 90]}, {’text’: ’HarryTheHostage’, ’indices’: [92, 108]}]
## 1286 [{’text’: ’TheCrown’, ’indices’: [5, 14]}, {’text’: ’PrinceAndrew’, ’indices’: [41, 54]}]
## 1287 []
## 1288 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 1289 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 1290 [{’text’: ’HarryandMegan’, ’indices’: [0, 14]}, {’text’: ’MeghanMarkle’, ’indices’: [38, 51]}, {’text’: ’RoyalFamily’, ’indices’: [67, 79]}]
## 1291 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 1292 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1293 []
## 1294 []
## 1295 []
## 1296 []
## 1297 []
## 1298 []
## 1299 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 1300 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 1301 [{’text’: ’CharlieKirk’, ’indices’: [32, 44]}, {’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 1302 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’thequeen’, ’indices’: [44, 53]}]
## 1303 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 1304 []
## 1305 [{’text’: ’Oprah’, ’indices’: [91, 97]}]
## 1306 [{’text’: ’Oprah’, ’indices’: [91, 97]}]
## 1307 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 1308 []
## 1309 []
## 1310 [{’text’: ’Harry’, ’indices’: [12, 18]}]
## 1311 [{’text’: ’MorningJoe’, ’indices’: [0, 11]}]
## 1312 []
## 1313 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1314 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
341
## 1315 [{’text’: ’piersmorgan’, ’indices’: [0, 12]}, {’text’: ’meghanmarkle’, ’indices’: [30, 43]}, {’text’: ’Games’, ’indices’: [78, 84]}, {’text’: ’twitter’, ’indices’: [85, 93]}, {’text’: ’instagram’, ’indices’: [94, 104]}, {’text’: ’instagood’, ’indices’: [105, 115]}]
## 1316 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’piersmorgan’, ’indices’: [86, 98]}]
## 1317 []
## 1318 []
## 1319 []
## 1320 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’GMB’, ’indices’: [107, 111]}]
## 1321 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’GMB’, ’indices’: [107, 111]}]
## 1322 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’GMB’, ’indices’: [107, 111]}]
## 1323 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 1324 []
## 1325 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1326 []
## 1327 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1328 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 1329 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 1330 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 1331 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 1332 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 1333 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}, {’text’: ’TheFirm’, ’indices’: [88, 96]}]
## 1334 [{’text’: ’DearDana’, ’indices’: [109, 118]}]
## 1335 [{’text’: ’DearDana’, ’indices’: [109, 118]}]
## 1336 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1337 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1338 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1339 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’TheRoyalfamily’, ’indices’: [74, 89]}, {’text’: ’Bridgerton’, ’indices’: [90, 101]}]
## 1340 [{’text’: ’HarryMeghanOprah’, ’indices’: [22, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 1341 [{’text’: ’Ostrich’, ’indices’: [18, 26]}, {’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’OprahMeghanHarry’, ’indices’: [41, 58]}]
## 1342 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [55, 77]}, {’text’: ’MeghanAndHarry’, ’indices’: [78, 93]}, {’text’: ’BritishMediaIsTrash’, ’indices’: [94, 114]}]
## 1343 [{’text’: ’SuperBowl’, ’indices’: [62, 72]}, {’text’: ’ThePrince’, ’indices’: [73, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 1344 [{’text’: ’podcast’, ’indices’: [41, 49]}, {’text’: ’Spotify’, ’indices’: [60, 68]}, {’text’: ’SpotifyPodcasts’, ’indices’: [86, 102]}]
## 1345 [{’text’: ’podcast’, ’indices’: [41, 49]}, {’text’: ’Spotify’, ’indices’: [60, 68]}, {’text’: ’SpotifyPodcasts’, ’indices’: [86, 102]}]
## 1346 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 1347 []
## 1348 []
## 1349 []
## 1350 []
## 1351 []
## 1352 []
## 1353 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1354 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1355 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 1356 []
## 1357 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’MeghanAndHarry’, ’indices’: [27, 42]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 1358 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}, {’text’: ’MeghanAndHarry’, ’indices’: [89, 104]}, {’text’: ’Diana’, ’indices’: [106, 112]}]
## 1359 [{’text’: ’irony’, ’indices’: [63, 69]}]
## 1360 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 1361 [{’text’: ’PrinceHarry’, ’indices’: [15, 27]}]
## 1362 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 1363 [{’text’: ’What’, ’indices’: [0, 5]}, {’text’: ’TheInstitution’, ’indices’: [10, 25]}, {’text’: ’What’, ’indices’: [28, 33]}, {’text’: ’TheFirm’, ’indices’: [37, 45]}, {’text’: ’royals’, ’indices’: [50, 57]}, {’text’: ’expert’, ’indices’: [58, 65]}, {’text’: ’explains’, ’indices’: [66, 75]}]
## 1364 []
## 1365 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 1366 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 1367 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 1368 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
342
## 1369 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 1370 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 1371 [{’text’: ’PrinceHarry’, ’indices’: [13, 25]}, {’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [78, 100]}]
## 1372 [{’text’: ’Biden’, ’indices’: [41, 47]}, {’text’: ’Major’, ’indices’: [48, 54]}, {’text’: ’Repost’, ’indices’: [61, 68]}, {’text’: ’Trending’, ’indices’: [69, 78]}, {’text’: ’BLM’, ’indices’: [79, 83]}, {’text’: ’BlackTwitter’, ’indices’: [84, 97]}, {’text’: ’BlackLivesMatter’, ’indices’: [98, 115]}]
## 1373 []
## 1374 []
## 1375 []
## 1376 []
## 1377 []
## 1378 []
## 1379 []
## 1380 [{’text’: ’SussexRoyal’, ’indices’: [16, 28]}]
## 1381 []
## 1382 []
## 1383 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’PrinceHarry’, ’indices’: [58, 70]}]
## 1384 []
## 1385 []
## 1386 []
## 1387 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’PrinceHarry’, ’indices’: [66, 78]}]
## 1388 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’PrinceHarry’, ’indices’: [66, 78]}]
## 1389 []
## 1390 []
## 1391 []
## 1392 []
## 1393 []
## 1394 []
## 1395 []
## 1396 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 1397 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 1398 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 1399 []
## 1400 []
## 1401 []
## 1402 []
## 1403 []
## 1404 []
## 1405 [{’text’: ’NHL’, ’indices’: [60, 64]}]
## 1406 [{’text’: ’NHL’, ’indices’: [60, 64]}]
## 1407 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’PrinceHarry’, ’indices’: [97, 109]}]
## 1408 [{’text’: ’PiersMorgan’, ’indices’: [10, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 1409 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}]
## 1410 []
## 1411 []
## 1412 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’OprahMeghanHarry’, ’indices’: [70, 87]}]
## 1413 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [99, 121]}, {’text’: ’MeghanAndHarry’, ’indices’: [123, 138]}]
## 1414 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [99, 121]}, {’text’: ’MeghanAndHarry’, ’indices’: [123, 138]}]
## 1415 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [99, 121]}, {’text’: ’MeghanAndHarry’, ’indices’: [123, 138]}]
## 1416 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 1417 []
## 1418 []
## 1419 []
## 1420 []
## 1421 []
## 1422 []
343
## 1423 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 1424 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’piersmorganIsABully’, ’indices’: [55, 75]}, {’text’: ’PiersMorganIsOverParty’, ’indices’: [76, 99]}]
## 1425 []
## 1426 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’TheQueensGambit’, ’indices’: [68, 84]}, {’text’: ’Haaland’, ’indices’: [85, 93]}]
## 1427 []
## 1428 [{’text’: ’SenateElection2021’, ’indices’: [54, 73]}, {’text’: ’SenateElections2021’, ’indices’: [74, 94]}, {’text’: ’Congress’, ’indices’: [95, 104]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}, {’text’: ’MedTwitter’, ’indices’: [119, 130]}, {’text’: ’MSNBC’, ’indices’: [131, 137]}]
## 1429 [{’text’: ’SenateElection2021’, ’indices’: [54, 73]}, {’text’: ’SenateElections2021’, ’indices’: [74, 94]}, {’text’: ’Congress’, ’indices’: [95, 104]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}, {’text’: ’MedTwitter’, ’indices’: [119, 130]}, {’text’: ’MSNBC’, ’indices’: [131, 137]}]
## 1430 [{’text’: ’SenateElection2021’, ’indices’: [54, 73]}, {’text’: ’SenateElections2021’, ’indices’: [74, 94]}, {’text’: ’Congress’, ’indices’: [95, 104]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}, {’text’: ’MedTwitter’, ’indices’: [119, 130]}, {’text’: ’MSNBC’, ’indices’: [131, 137]}]
## 1431 [{’text’: ’SenateElection2021’, ’indices’: [54, 73]}, {’text’: ’SenateElections2021’, ’indices’: [74, 94]}, {’text’: ’Congress’, ’indices’: [95, 104]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}, {’text’: ’MedTwitter’, ’indices’: [119, 130]}, {’text’: ’MSNBC’, ’indices’: [131, 137]}]
## 1432 []
## 1433 [{’text’: ’GoodMorningBritain’, ’indices’: [44, 63]}]
## 1434 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 1435 []
## 1436 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}, {’text’: ’PrinceHarry’, ’indices’: [89, 101]}]
## 1437 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 1438 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 1439 [{’text’: ’HarryandMeghan’, ’indices’: [19, 34]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’PrinceHarry’, ’indices’: [77, 89]}]
## 1440 [{’text’: ’HarryandMeghan’, ’indices’: [19, 34]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’PrinceHarry’, ’indices’: [77, 89]}]
## 1441 [{’text’: ’HarryandMeghan’, ’indices’: [19, 34]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’PrinceHarry’, ’indices’: [77, 89]}]
## 1442 []
## 1443 [{’text’: ’meghanmarkle’, ’indices’: [96, 109]}]
## 1444 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 1445 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 1446 []
## 1447 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 1448 []
## 1449 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 1450 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 1451 [{’text’: ’Trump’, ’indices’: [65, 71]}, {’text’: ’POTUS’, ’indices’: [81, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}]
## 1452 []
## 1453 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 1454 []
## 1455 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 1456 []
## 1457 []
## 1458 []
## 1459 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 1460 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 1461 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 1462 [{’text’: ’OutOfTouch’, ’indices’: [52, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’MeghanAndHarry’, ’indices’: [79, 94]}]
## 1463 [{’text’: ’black’, ’indices’: [14, 20]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [21, 43]}, {’text’: ’HarryandMeghan’, ’indices’: [44, 59]}, {’text’: ’HarryMeghanOprah’, ’indices’: [60, 77]}, {’text’: ’Harry’, ’indices’: [78, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’TylerPerry’, ’indices’: [99, 110]}]
## 1464 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 1465 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}, {’text’: ’cancelmarkle’, ’indices’: [102, 115]}]
## 1466 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}, {’text’: ’cancelmarkle’, ’indices’: [102, 115]}]
## 1467 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}, {’text’: ’cancelmarkle’, ’indices’: [102, 115]}]
## 1468 []
## 1469 []
## 1470 []
## 1471 []
## 1472 [{’text’: ’racist’, ’indices’: [48, 55]}]
## 1473 [{’text’: ’racist’, ’indices’: [48, 55]}]
## 1474 [{’text’: ’racist’, ’indices’: [48, 55]}]
## 1475 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 1476 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
344
## 1477 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 1478 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 1479 [{’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 1480 [{’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 1481 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [4, 26]}, {’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 1482 []
## 1483 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 1484 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 1485 [{’text’: ’etsy’, ’indices’: [62, 67]}]
## 1486 [{’text’: ’MEGHANMARKLE’, ’indices’: [25, 38]}]
## 1487 []
## 1488 []
## 1489 []
## 1490 []
## 1491 []
## 1492 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 1493 []
## 1494 [{’text’: ’meghanmarkle’, ’indices’: [52, 65]}]
## 1495 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 1496 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 1497 []
## 1498 [{’text’: ’meghanMarkle’, ’indices’: [43, 56]}]
## 1499 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 1500 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 1501 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 1502 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 1503 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 1504 []
## 1505 []
## 1506 []
## 1507 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’HarryMeghanOprah’, ’indices’: [48, 65]}, {’text’: ’Harry’, ’indices’: [85, 91]}]
## 1508 []
## 1509 []
## 1510 []
## 1511 [{’text’: ’PiersMorgan’, ’indices’: [89, 101]}]
## 1512 []
## 1513 [{’text’: ’meghanmarkle’, ’indices’: [59, 72]}, {’text’: ’oprah’, ’indices’: [74, 80]}]
## 1514 []
## 1515 []
## 1516 [{’text’: ’meghanmarkle’, ’indices’: [53, 66]}]
## 1517 [{’text’: ’meghanmarkle’, ’indices’: [53, 66]}]
## 1518 [{’text’: ’meghanmarkle’, ’indices’: [53, 66]}]
## 1519 [{’text’: ’MeghanMarkle’, ’indices’: [3, 16]}]
## 1520 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 1521 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 1522 []
## 1523 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 1524 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’conniving’, ’indices’: [48, 58]}, {’text’: ’SocialClimber’, ’indices’: [59, 73]}, {’text’: ’bullying’, ’indices’: [92, 101]}]
## 1525 []
## 1526 []
## 1527 []
## 1528 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [24, 46]}, {’text’: ’MeghanAndHarry’, ’indices’: [47, 62]}, {’text’: ’PrincessDiana’, ’indices’: [63, 77]}, {’text’: ’PrinceAndrew’, ’indices’: [78, 91]}, {’text’: ’OprahWinfrey’, ’indices’: [92, 105]}]
## 1529 [{’text’: ’sussexsquad’, ’indices’: [32, 44]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [45, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 1530 []
345
## 1531 []
## 1532 [{’text’: ’RacismIsNotAnOpinion’, ’indices’: [63, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’thursdaymorning’, ’indices’: [99, 115]}]
## 1533 [{’text’: ’RacismIsNotAnOpinion’, ’indices’: [63, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’thursdaymorning’, ’indices’: [99, 115]}]
## 1534 [{’text’: ’RacismIsNotAnOpinion’, ’indices’: [63, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’thursdaymorning’, ’indices’: [99, 115]}]
## 1535 [{’text’: ’BuckinghamPalace’, ’indices’: [70, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1536 [{’text’: ’BuckinghamPalace’, ’indices’: [70, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1537 [{’text’: ’BuckinghamPalace’, ’indices’: [70, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1538 [{’text’: ’brava’, ’indices’: [120, 126]}, {’text’: ’MeghanMarkle’, ’indices’: [127, 140]}]
## 1539 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1540 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 1541 []
## 1542 [{’text’: ’APTopNews’, ’indices’: [19, 29]}, {’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’Legislation’, ’indices’: [44, 56]}]
## 1543 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 1544 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 1545 [{’text’: ’MeghanMarkle’, ’indices’: [8, 21]}, {’text’: ’Harry’, ’indices’: [26, 32]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [56, 78]}]
## 1546 [{’text’: ’bombay’, ’indices’: [16, 23]}, {’text’: ’trump’, ’indices’: [45, 51]}, {’text’: ’bananarepublic’, ’indices’: [59, 74]}, {’text’: ’medicine’, ’indices’: [98, 107]}]
## 1547 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’meghanmarkle’, ’indices’: [88, 101]}, {’text’: ’meganandharryonoprah’, ’indices’: [102, 123]}]
## 1548 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1549 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1550 []
## 1551 [{’text’: ’Nowplaying’, ’indices’: [0, 11]}]
## 1552 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 1553 []
## 1554 []
## 1555 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 1556 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 1557 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 1558 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 1559 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}, {’text’: ’HarryandMeghan’, ’indices’: [58, 73]}, {’text’: ’PiersMorgan’, ’indices’: [74, 86]}]
## 1560 []
## 1561 []
## 1562 []
## 1563 []
## 1564 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 1565 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}, {’text’: ’piersmorgan’, ’indices’: [29, 41]}]
## 1566 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 1567 [{’text’: ’MeghanMarkle’, ’indices’: [105, 118]}, {’text’: ’MeghanAndHarry’, ’indices’: [119, 134]}]
## 1568 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1569 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1570 [{’text’: ’MeghanAndHarry’, ’indices’: [80, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1571 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 1572 [{’text’: ’nobullying’, ’indices’: [53, 64]}, {’text’: ’noharrasment’, ’indices’: [65, 78]}, {’text’: ’NoRacismInMedia’, ’indices’: [79, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1573 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 1574 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 1575 [{’text’: ’Ofcom’, ’indices’: [86, 92]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1576 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 1577 []
## 1578 []
## 1579 [{’text’: ’Black’, ’indices’: [86, 92]}, {’text’: ’white’, ’indices’: [98, 104]}]
## 1580 [{’text’: ’Black’, ’indices’: [86, 92]}, {’text’: ’white’, ’indices’: [98, 104]}]
## 1581 [{’text’: ’Black’, ’indices’: [86, 92]}, {’text’: ’white’, ’indices’: [98, 104]}]
## 1582 [{’text’: ’Black’, ’indices’: [86, 92]}, {’text’: ’white’, ’indices’: [98, 104]}]
## 1583 [{’text’: ’MeganMarkle’, ’indices’: [0, 12]}, {’text’: ’MeghanAndHarry’, ’indices’: [71, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [101, 123]}]
## 1584 [{’text’: ’MeganMarkle’, ’indices’: [0, 12]}, {’text’: ’MeghanAndHarry’, ’indices’: [71, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [101, 123]}]
346
## 1585 []
## 1586 []
## 1587 []
## 1588 []
## 1589 []
## 1590 []
## 1591 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [75, 97]}, {’text’: ’MeghanAndHarry’, ’indices’: [98, 113]}]
## 1592 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 1593 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’narcissist’, ’indices’: [65, 76]}, {’text’: ’Meghan’, ’indices’: [78, 85]}]
## 1594 []
## 1595 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [22, 44]}, {’text’: ’MeghanAndHarry’, ’indices’: [45, 60]}, {’text’: ’PrincessDiana’, ’indices’: [61, 75]}, {’text’: ’PrinceAndrew’, ’indices’: [76, 89]}, {’text’: ’OprahWinfrey’, ’indices’: [90, 103]}, {’text’: ’WomensDay’, ’indices’: [104, 114]}]
## 1596 []
## 1597 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [77, 99]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1598 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [77, 99]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1599 [{’text’: ’tweeting’, ’indices’: [23, 32]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’KateMiddleton’, ’indices’: [95, 109]}, {’text’: ’Oprah’, ’indices’: [117, 123]}]
## 1600 [{’text’: ’tweeting’, ’indices’: [23, 32]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’KateMiddleton’, ’indices’: [95, 109]}, {’text’: ’Oprah’, ’indices’: [117, 123]}]
## 1601 []
## 1602 [{’text’: ’BillieHoliday’, ’indices’: [13, 27]}, {’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 1603 []
## 1604 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 1605 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 1606 []
## 1607 []
## 1608 []
## 1609 []
## 1610 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 1611 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’MeghanAndHarry’, ’indices’: [35, 50]}]
## 1612 [{’text’: ’PrinceHarry’, ’indices’: [4, 16]}, {’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 1613 []
## 1614 []
## 1615 []
## 1616 []
## 1617 []
## 1618 [{’text’: ’GMB’, ’indices’: [5, 9]}, {’text’: ’goodmorningbritain’, ’indices’: [10, 29]}]
## 1619 [{’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 1620 [{’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 1621 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 1622 [{’text’: ’British’, ’indices’: [100, 108]}]
## 1623 []
## 1624 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}, {’text’: ’PrinceHarry’, ’indices’: [114, 126]}]
## 1625 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 1626 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 1627 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 1628 [{’text’: ’Judah’, ’indices’: [105, 111]}]
## 1629 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 1630 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 1631 [{’text’: ’AbolishTheMonarchy’, ’indices’: [70, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 1632 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 1633 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 1634 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [34, 56]}, {’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1635 []
## 1636 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 1637 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 1638 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
347
## 1639 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}, {’text’: ’blackexcellence’, ’indices’: [96, 112]}]
## 1640 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1641 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1642 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1643 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1644 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 1645 []
## 1646 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 1647 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 1648 []
## 1649 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 1650 [{’text’: ’TheRealm’, ’indices’: [2, 11]}, {’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 1651 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 1652 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 1653 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 1654 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 1655 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 1656 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 1657 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 1658 []
## 1659 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 1660 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1661 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1662 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1663 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1664 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 1665 []
## 1666 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1667 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 1668 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’MeghanAndHarry’, ’indices’: [68, 83]}]
## 1669 [{’text’: ’ImNoRoyalistBut’, ’indices’: [57, 73]}]
## 1670 [{’text’: ’ImNoRoyalistBut’, ’indices’: [57, 73]}]
## 1671 []
## 1672 []
## 1673 []
## 1674 []
## 1675 []
## 1676 []
## 1677 []
## 1678 []
## 1679 []
## 1680 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}]
## 1681 []
## 1682 []
## 1683 []
## 1684 []
## 1685 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 1686 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 1687 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1688 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1689 [{’text’: ’AfuaHirsch’, ’indices’: [84, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1690 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 1691 []
## 1692 [{’text’: ’Canada’, ’indices’: [84, 91]}]
348
## 1693 []
## 1694 [{’text’: ’DuchessSmollett’, ’indices’: [62, 78]}, {’text’: ’DuchessTrashy’, ’indices’: [79, 93]}, {’text’: ’famewhore’, ’indices’: [94, 104]}]
## 1695 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’MeghanAndHarry’, ’indices’: [31, 46]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [47, 69]}]
## 1696 [{’text’: ’MeghanMarkle’, ’indices’: [8, 21]}, {’text’: ’BlameItOnMM’, ’indices’: [82, 94]}]
## 1697 [{’text’: ’America’, ’indices’: [46, 54]}, {’text’: ’love’, ’indices’: [62, 67]}, {’text’: ’PrinceHarry’, ’indices’: [68, 80]}, {’text’: ’meghanmarkle’, ’indices’: [87, 100]}]
## 1698 []
## 1699 []
## 1700 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’CarolineFlack’, ’indices’: [98, 112]}]
## 1701 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 1702 []
## 1703 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 1704 [{’text’: ’SelfVictimization’, ’indices’: [15, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’Trumps’, ’indices’: [62, 69]}]
## 1705 []
## 1706 []
## 1707 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 1708 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 1709 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 1710 [{’text’: ’outraged’, ’indices’: [50, 59]}, {’text’: ’HR1’, ’indices’: [60, 64]}, {’text’: ’springbreak2021’, ’indices’: [65, 81]}, {’text’: ’COVID’, ’indices’: [82, 88]}, {’text’: ’COVIDIOTS’, ’indices’: [89, 99]}, {’text’: ’Texas’, ’indices’: [100, 106]}, {’text’: ’Vacunas’, ’indices’: [107, 115]}]
## 1711 [{’text’: ’Trump’, ’indices’: [72, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1712 [{’text’: ’Trump’, ’indices’: [72, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1713 []
## 1714 []
## 1715 []
## 1716 []
## 1717 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 1718 [{’text’: ’Meghan’, ’indices’: [58, 65]}]
## 1719 []
## 1720 [{’text’: ’cuomosexuals’, ’indices’: [18, 31]}]
## 1721 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 1722 []
## 1723 []
## 1724 []
## 1725 []
## 1726 [{’text’: ’DuchessofCambridge’, ’indices’: [32, 51]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 1727 []
## 1728 []
## 1729 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1730 [{’text’: ’MeghanAndHarry’, ’indices’: [53, 68]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [83, 105]}]
## 1731 []
## 1732 []
## 1733 []
## 1734 []
## 1735 []
## 1736 [{’text’: ’piersmorgan’, ’indices’: [48, 60]}]
## 1737 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 1738 [{’text’: ’respect’, ’indices’: [18, 26]}]
## 1739 [{’text’: ’respect’, ’indices’: [18, 26]}]
## 1740 [{’text’: ’OprahMeghanHarry’, ’indices’: [76, 93]}, {’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 1741 [{’text’: ’mentalhealth’, ’indices’: [77, 90]}]
## 1742 [{’text’: ’mentalhealth’, ’indices’: [77, 90]}]
## 1743 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 1744 []
## 1745 []
## 1746 []
349
## 1747 []
## 1748 []
## 1749 []
## 1750 []
## 1751 []
## 1752 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}, {’text’: ’PrinceHarry’, ’indices’: [86, 98]}]
## 1753 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1754 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1755 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1756 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1757 []
## 1758 []
## 1759 [{’text’: ’WomensDay’, ’indices’: [46, 56]}, {’text’: ’WomensHistoryMonth’, ’indices’: [57, 76]}]
## 1760 [{’text’: ’WomensDay’, ’indices’: [46, 56]}, {’text’: ’WomensHistoryMonth’, ’indices’: [57, 76]}]
## 1761 []
## 1762 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 1763 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 1764 [{’text’: ’MirandaDevine’, ’indices’: [17, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 1765 [{’text’: ’MirandaDevine’, ’indices’: [17, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 1766 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1767 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1768 []
## 1769 []
## 1770 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 1771 [{’text’: ’HarryandMeghan’, ’indices’: [81, 96]}, {’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 1772 [{’text’: ’OprahMeghanHarry’, ’indices’: [0, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’NY’, ’indices’: [111, 114]}]
## 1773 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’noclass’, ’indices’: [105, 113]}]
## 1774 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’noclass’, ’indices’: [105, 113]}]
## 1775 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}, {’text’: ’PrincessDiana’, ’indices’: [66, 80]}, {’text’: ’mentalhealth’, ’indices’: [98, 111]}]
## 1776 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}, {’text’: ’PrincessDiana’, ’indices’: [66, 80]}, {’text’: ’mentalhealth’, ’indices’: [98, 111]}]
## 1777 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}, {’text’: ’PrincessDiana’, ’indices’: [66, 80]}, {’text’: ’mentalhealth’, ’indices’: [98, 111]}]
## 1778 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}, {’text’: ’PrincessDiana’, ’indices’: [66, 80]}, {’text’: ’mentalhealth’, ’indices’: [98, 111]}]
## 1779 []
## 1780 []
## 1781 [{’text’: ’OprahMeghanHarry’, ’indices’: [24, 41]}, {’text’: ’twloha’, ’indices’: [50, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 1782 []
## 1783 [{’text’: ’meghanmarkle’, ’indices’: [13, 26]}]
## 1784 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 1785 [{’text’: ’internationalwomensday2021’, ’indices’: [17, 44]}, {’text’: ’AbolishTheMonarcy’, ’indices’: [45, 63]}, {’text’: ’Meghan’, ’indices’: [64, 71]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’ChooseToChallenge2021’, ’indices’: [86, 108]}]
## 1786 []
## 1787 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1788 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1789 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1790 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 1791 [{’text’: ’GoodMorningBritain’, ’indices’: [52, 71]}, {’text’: ’GMB’, ’indices’: [72, 76]}, {’text’: ’goodmorningbritain’, ’indices’: [77, 96]}, {’text’: ’TV’, ’indices’: [97, 100]}, {’text’: ’UK’, ’indices’: [101, 104]}, {’text’: ’USA’, ’indices’: [105, 109]}]
## 1792 [{’text’: ’GoodMorningBritain’, ’indices’: [52, 71]}, {’text’: ’GMB’, ’indices’: [72, 76]}, {’text’: ’goodmorningbritain’, ’indices’: [77, 96]}, {’text’: ’TV’, ’indices’: [97, 100]}, {’text’: ’UK’, ’indices’: [101, 104]}, {’text’: ’USA’, ’indices’: [105, 109]}]
## 1793 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’meghanmarkleisabully’, ’indices’: [38, 59]}, {’text’: ’MeghanAndHarry’, ’indices’: [60, 75]}]
## 1794 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’meghanmarkleisabully’, ’indices’: [38, 59]}, {’text’: ’MeghanAndHarry’, ’indices’: [60, 75]}]
## 1795 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 1796 [{’text’: ’massivebaby’, ’indices’: [53, 65]}]
## 1797 [{’text’: ’massivebaby’, ’indices’: [53, 65]}]
## 1798 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [26, 48]}]
## 1799 [{’text’: ’OprahMeghanHarry’, ’indices’: [0, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’MondaireJones’, ’indices’: [33, 47]}]
## 1800 [{’text’: ’OprahMeghanHarry’, ’indices’: [0, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’MondaireJones’, ’indices’: [33, 47]}]
350
## 1801 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 1802 [{’text’: ’piercemorgan’, ’indices’: [20, 33]}]
## 1803 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 1804 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 1805 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 1806 [{’text’: ’MeghanMarkle’, ’indices’: [115, 128]}]
## 1807 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 1808 [{’text’: ’theroyalfamily’, ’indices’: [40, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 1809 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 1810 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 1811 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 1812 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 1813 [{’text’: ’TomCruise’, ’indices’: [62, 72]}]
## 1814 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’Twitter’, ’indices’: [80, 88]}]
## 1815 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 1816 [{’text’: ’piersmorgan’, ’indices’: [59, 71]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 1817 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 1818 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1819 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1820 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1821 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 1822 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1823 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1824 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1825 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1826 []
## 1827 []
## 1828 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 1829 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 1830 [{’text’: ’ThisMorning’, ’indices’: [52, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 1831 [{’text’: ’ThisMorning’, ’indices’: [52, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 1832 []
## 1833 []
## 1834 []
## 1835 []
## 1836 []
## 1837 [{’text’: ’firepiers’, ’indices’: [92, 102]}]
## 1838 [{’text’: ’firepiers’, ’indices’: [92, 102]}]
## 1839 [{’text’: ’MeghanAndHarry’, ’indices’: [19, 34]}]
## 1840 [{’text’: ’ThisIsWhyIResist’, ’indices’: [77, 94]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}]
## 1841 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1842 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 1843 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [50, 72]}, {’text’: ’Meghan’, ’indices’: [74, 81]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’MeghanAndHarry’, ’indices’: [98, 113]}]
## 1844 [{’text’: ’meghanmarkle’, ’indices’: [22, 35]}]
## 1845 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 1846 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 1847 []
## 1848 []
## 1849 []
## 1850 []
## 1851 []
## 1852 []
## 1853 []
## 1854 []
351
## 1855 []
## 1856 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1857 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1858 [{’text’: ’MeghanMarkle’, ’indices’: [115, 128]}]
## 1859 [{’text’: ’CASHAPPSUSSEX’, ’indices’: [62, 76]}, {’text’: ’MEGXIT’, ’indices’: [77, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’PrinceHarry’, ’indices’: [99, 111]}]
## 1860 [{’text’: ’CASHAPPSUSSEX’, ’indices’: [62, 76]}, {’text’: ’MEGXIT’, ’indices’: [77, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’PrinceHarry’, ’indices’: [99, 111]}]
## 1861 [{’text’: ’BoycottOprahMeghan’, ’indices’: [47, 66]}, {’text’: ’boycottoprah’, ’indices’: [67, 80]}, {’text’: ’hazbeen’, ’indices’: [81, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}, {’text’: ’meghanthebully’, ’indices’: [104, 119]}, {’text’: ’MeghanAndHarry’, ’indices’: [120, 135]}]
## 1862 [{’text’: ’DonJr’, ’indices’: [41, 47]}, {’text’: ’CokeHead’, ’indices’: [48, 57]}, {’text’: ’RACIST’, ’indices’: [62, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}, {’text’: ’STFU’, ’indices’: [117, 122]}]
## 1863 []
## 1864 []
## 1865 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 1866 [{’text’: ’OprahMeghanHarry’, ’indices’: [34, 51]}, {’text’: ’thoughts’, ’indices’: [71, 80]}, {’text’: ’royal’, ’indices’: [102, 108]}]
## 1867 [{’text’: ’meghanmarkle’, ’indices’: [48, 61]}]
## 1868 [{’text’: ’meghanmarkle’, ’indices’: [48, 61]}]
## 1869 [{’text’: ’SelfVictimization’, ’indices’: [25, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [44, 57]}, {’text’: ’Trumps’, ’indices’: [72, 79]}]
## 1870 [{’text’: ’SelfVictimization’, ’indices’: [25, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [44, 57]}, {’text’: ’Trumps’, ’indices’: [72, 79]}]
## 1871 []
## 1872 []
## 1873 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [95, 117]}, {’text’: ’HarryandMeghan’, ’indices’: [118, 133]}]
## 1874 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [95, 117]}, {’text’: ’HarryandMeghan’, ’indices’: [118, 133]}]
## 1875 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [95, 117]}, {’text’: ’HarryandMeghan’, ’indices’: [118, 133]}]
## 1876 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [95, 117]}, {’text’: ’HarryandMeghan’, ’indices’: [118, 133]}]
## 1877 [{’text’: ’meghanmarkle’, ’indices’: [60, 73]}, {’text’: ’princeharry’, ’indices’: [74, 86]}, {’text’: ’britishroyalfamily’, ’indices’: [87, 106]}, {’text’: ’oprah’, ’indices’: [107, 113]}]
## 1878 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 1879 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’Archie’, ’indices’: [53, 60]}]
## 1880 [{’text’: ’goodmorningbritain’, ’indices’: [90, 109]}]
## 1881 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 1882 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}, {’text’: ’HarryandMeghan’, ’indices’: [56, 71]}]
## 1883 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 1884 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}, {’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}, {’text’: ’TheCrown’, ’indices’: [109, 118]}]
## 1885 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}, {’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}, {’text’: ’TheCrown’, ’indices’: [109, 118]}]
## 1886 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 1887 [{’text’: ’MeghanMarkle’, ’indices’: [104, 117]}]
## 1888 []
## 1889 [{’text’: ’TheMonarchy’, ’indices’: [17, 29]}, {’text’: ’QueenElizabethII’, ’indices’: [30, 47]}]
## 1890 [{’text’: ’PrinceAndrew’, ’indices’: [10, 23]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 1891 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’PrinceHarryandMeghan’, ’indices’: [118, 139]}]
## 1892 []
## 1893 []
## 1894 []
## 1895 [{’text’: ’ThomasMarkle’, ’indices’: [0, 13]}, {’text’: ’GMB’, ’indices’: [103, 107]}, {’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 1896 [{’text’: ’ThomasMarkle’, ’indices’: [0, 13]}, {’text’: ’GMB’, ’indices’: [103, 107]}, {’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 1897 [{’text’: ’MeghanAndHarry’, ’indices’: [44, 59]}, {’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 1898 []
## 1899 []
## 1900 []
## 1901 [{’text’: ’OprahMeghanHarry’, ’indices’: [92, 109]}]
## 1902 [{’text’: ’OprahMeghanHarry’, ’indices’: [92, 109]}]
## 1903 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 1904 []
## 1905 []
## 1906 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 1907 []
## 1908 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}]
352
## 1909 [{’text’: ’BREAKINGNEWS’, ’indices’: [0, 13]}, {’text’: ’piersmorgan’, ’indices’: [64, 76]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [78, 100]}, {’text’: ’Harry’, ’indices’: [101, 107]}]
## 1910 [{’text’: ’BREAKINGNEWS’, ’indices’: [0, 13]}, {’text’: ’piersmorgan’, ’indices’: [64, 76]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [78, 100]}, {’text’: ’Harry’, ’indices’: [101, 107]}]
## 1911 []
## 1912 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 1913 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 1914 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}, {’text’: ’RoyalFamily’, ’indices’: [117, 129]}]
## 1915 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}, {’text’: ’RoyalFamily’, ’indices’: [117, 129]}]
## 1916 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’PrinceHarry’, ’indices’: [103, 115]}]
## 1917 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’PrinceHarry’, ’indices’: [103, 115]}]
## 1918 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1919 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 1920 []
## 1921 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 1922 []
## 1923 [{’text’: ’piersmorgan’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’Stressed’, ’indices’: [96, 105]}]
## 1924 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 1925 []
## 1926 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’FreeHarry’, ’indices’: [60, 70]}, {’text’: ’Oprah’, ’indices’: [71, 77]}, {’text’: ’HarryandMeghanOprah’, ’indices’: [78, 98]}]
## 1927 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’FreeHarry’, ’indices’: [60, 70]}, {’text’: ’Oprah’, ’indices’: [71, 77]}, {’text’: ’HarryandMeghanOprah’, ’indices’: [78, 98]}]
## 1928 [{’text’: ’GodSaveOurQueen’, ’indices’: [91, 107]}]
## 1929 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 1930 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 1931 [{’text’: ’SerenaWilliams’, ’indices’: [0, 15]}, {’text’: ’GabrielleUnion’, ’indices’: [17, 32]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 1932 [{’text’: ’UKmedia’, ’indices’: [37, 45]}, {’text’: ’Scotland’, ’indices’: [103, 112]}, {’text’: ’MeghanMarkle’, ’indices’: [113, 126]}]
## 1933 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}, {’text’: ’PrinceAndrew’, ’indices’: [103, 116]}]
## 1934 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}, {’text’: ’PrinceAndrew’, ’indices’: [103, 116]}]
## 1935 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 1936 [{’text’: ’etsy’, ’indices’: [55, 60]}, {’text’: ’meghanmarkle’, ’indices’: [96, 109]}]
## 1937 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1938 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 1939 []
## 1940 []
## 1941 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [114, 136]}]
## 1942 []
## 1943 []
## 1944 []
## 1945 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}]
## 1946 [{’text’: ’theroyalfamily’, ’indices’: [34, 49]}, {’text’: ’attacking’, ’indices’: [64, 74]}, {’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 1947 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 1948 []
## 1949 [{’text’: ’gmb’, ’indices’: [64, 68]}]
## 1950 [{’text’: ’gmb’, ’indices’: [64, 68]}]
## 1951 [{’text’: ’gmb’, ’indices’: [64, 68]}]
## 1952 [{’text’: ’gmb’, ’indices’: [64, 68]}]
## 1953 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’actress’, ’indices’: [37, 45]}]
## 1954 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’actress’, ’indices’: [37, 45]}]
## 1955 [{’text’: ’meghanmarkle’, ’indices’: [14, 27]}]
## 1956 []
## 1957 []
## 1958 [{’text’: ’eu’, ’indices’: [50, 53]}, {’text’: ’europe’, ’indices’: [54, 61]}, {’text’: ’usa’, ’indices’: [62, 66]}, {’text’: ’EEUU’, ’indices’: [67, 72]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [73, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1959 [{’text’: ’eu’, ’indices’: [50, 53]}, {’text’: ’europe’, ’indices’: [54, 61]}, {’text’: ’usa’, ’indices’: [62, 66]}, {’text’: ’EEUU’, ’indices’: [67, 72]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [73, 95]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 1960 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 1961 []
## 1962 []
353
## 1963 []
## 1964 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’BlackWoman’, ’indices’: [43, 54]}]
## 1965 [{’text’: ’MAGAMeghanMcCain’, ’indices’: [28, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 1966 [{’text’: ’MAGAMeghanMcCain’, ’indices’: [28, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 1967 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 1968 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 1969 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1970 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 1971 []
## 1972 []
## 1973 []
## 1974 []
## 1975 []
## 1976 []
## 1977 []
## 1978 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [60, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [124, 137]}]
## 1979 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 1980 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1981 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1982 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 1983 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 1984 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 1985 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’OprahMeghanHarry’, ’indices’: [79, 96]}]
## 1986 []
## 1987 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 1988 []
## 1989 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’ThisMorning’, ’indices’: [100, 112]}]
## 1990 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’ThisMorning’, ’indices’: [100, 112]}]
## 1991 []
## 1992 [{’text’: ’Outnumbered’, ’indices’: [11, 23]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 1993 []
## 1994 []
## 1995 [{’text’: ’MeghanMarkle’, ’indices’: [106, 119]}, {’text’: ’KateMiddleton’, ’indices’: [123, 137]}]
## 1996 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 1997 [{’text’: ’princeharry’, ’indices’: [31, 43]}, {’text’: ’PrinceHarryIsALiar’, ’indices’: [53, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’HarryandMeghan’, ’indices’: [87, 102]}]
## 1998 [{’text’: ’princeharry’, ’indices’: [31, 43]}, {’text’: ’PrinceHarryIsALiar’, ’indices’: [53, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’HarryandMeghan’, ’indices’: [87, 102]}]
## 1999 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 2000 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 2001 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 2002 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 2003 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 2004 []
## 2005 []
## 2006 []
## 2007 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 2008 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 2009 []
## 2010 []
## 2011 []
## 2012 []
## 2013 []
## 2014 []
## 2015 []
## 2016 []
354
## 2017 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2018 [{’text’: ’GMB’, ’indices’: [73, 77]}, {’text’: ’HarryandMeghan’, ’indices’: [83, 98]}]
## 2019 []
## 2020 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 2021 []
## 2022 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 2023 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 2024 [{’text’: ’meghanmarkle’, ’indices’: [43, 56]}, {’text’: ’princeharry’, ’indices’: [57, 69]}]
## 2025 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’OprahMeghanHarry’, ’indices’: [86, 103]}]
## 2026 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’GMB’, ’indices’: [14, 18]}]
## 2027 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 2028 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 2029 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 2030 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 2031 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 2032 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 2033 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 2034 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 2035 []
## 2036 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 2037 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 2038 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 2039 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 2040 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2041 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2042 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2043 []
## 2044 []
## 2045 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 2046 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 2047 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 2048 [{’text’: ’PrinceHarry’, ’indices’: [13, 25]}, {’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 2049 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 2050 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [36, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’MeghanAndHarry’, ’indices’: [73, 88]}]
## 2051 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [36, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’MeghanAndHarry’, ’indices’: [73, 88]}]
## 2052 [{’text’: ’WomensDayEveryDay’, ’indices’: [10, 28]}, {’text’: ’InternationalWomensDay’, ’indices’: [74, 97]}, {’text’: ’IWD2021’, ’indices’: [98, 106]}]
## 2053 [{’text’: ’MeghanMarkle’, ’indices’: [113, 126]}]
## 2054 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’CashAndHarry’, ’indices’: [53, 66]}]
## 2055 []
## 2056 [{’text’: ’Harry’, ’indices’: [64, 70]}, {’text’: ’Meghan’, ’indices’: [75, 82]}]
## 2057 [{’text’: ’Harry’, ’indices’: [64, 70]}, {’text’: ’Meghan’, ’indices’: [75, 82]}]
## 2058 [{’text’: ’Harry’, ’indices’: [64, 70]}, {’text’: ’Meghan’, ’indices’: [75, 82]}]
## 2059 [{’text’: ’Harry’, ’indices’: [64, 70]}, {’text’: ’Meghan’, ’indices’: [75, 82]}]
## 2060 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 2061 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 2062 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 2063 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 2064 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’lies’, ’indices’: [52, 57]}, {’text’: ’KateMiddleton’, ’indices’: [84, 98]}]
## 2065 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 2066 []
## 2067 []
## 2068 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 2069 []
## 2070 []
355
## 2071 []
## 2072 []
## 2073 []
## 2074 []
## 2075 [{’text’: ’piersmorganIsABully’, ’indices’: [13, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 2076 []
## 2077 []
## 2078 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2079 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2080 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2081 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2082 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2083 []
## 2084 []
## 2085 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}]
## 2086 [{’text’: ’PiersMorgan’, ’indices’: [56, 68]}, {’text’: ’piers’, ’indices’: [69, 75]}, {’text’: ’MeghanMarkle’, ’indices’: [76, 89]}, {’text’: ’AlexBeresford’, ’indices’: [90, 104]}, {’text’: ’gmb’, ’indices’: [105, 109]}]
## 2087 []
## 2088 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’jasonknauf’, ’indices’: [64, 75]}]
## 2089 []
## 2090 []
## 2091 []
## 2092 []
## 2093 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [21, 43]}]
## 2094 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 2095 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 2096 [{’text’: ’TheCrown’, ’indices’: [48, 57]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 2097 [{’text’: ’TheCrown’, ’indices’: [48, 57]}, {’text’: ’OprahMeghanHarry’, ’indices’: [72, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 2098 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’PrinceHarry’, ’indices’: [79, 91]}]
## 2099 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’internationalwomensday2021’, ’indices’: [40, 67]}]
## 2100 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’internationalwomensday2021’, ’indices’: [40, 67]}]
## 2101 []
## 2102 []
## 2103 [{’text’: ’MeghanMarkle’, ’indices’: [3, 16]}]
## 2104 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2105 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 2106 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’PrinceHarry’, ’indices’: [51, 63]}, {’text’: ’catchphrase’, ’indices’: [64, 76]}, {’text’: ’piersmorgan’, ’indices’: [77, 89]}]
## 2107 [{’text’: ’US’, ’indices’: [47, 50]}, {’text’: ’Americans’, ’indices’: [78, 88]}]
## 2108 [{’text’: ’US’, ’indices’: [47, 50]}, {’text’: ’Americans’, ’indices’: [78, 88]}]
## 2109 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 2110 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 2111 [{’text’: ’racistfamily’, ’indices’: [39, 52]}, {’text’: ’PiersMorgan’, ’indices’: [88, 100]}]
## 2112 [{’text’: ’racistfamily’, ’indices’: [39, 52]}, {’text’: ’PiersMorgan’, ’indices’: [88, 100]}]
## 2113 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 2114 []
## 2115 []
## 2116 []
## 2117 []
## 2118 []
## 2119 []
## 2120 []
## 2121 []
## 2122 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 2123 []
## 2124 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
356
## 2125 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 2126 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 2127 [{’text’: ’princeharry’, ’indices’: [30, 42]}, {’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 2128 [{’text’: ’OprahMeghanHarry’, ’indices’: [17, 34]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [35, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’shadyassroyals’, ’indices’: [72, 87]}, {’text’: ’Harryistherealprincecharming’, ’indices’: [88, 117]}]
## 2129 [{’text’: ’piersmorgan’, ’indices’: [87, 99]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 2130 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2131 []
## 2132 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [27, 49]}, {’text’: ’MeghanAndHarry’, ’indices’: [50, 65]}, {’text’: ’PrincessDiana’, ’indices’: [66, 80]}, {’text’: ’PrinceAndrew’, ’indices’: [81, 94]}, {’text’: ’OprahWinfrey’, ’indices’: [95, 108]}]
## 2133 []
## 2134 []
## 2135 [{’text’: ’OfCom’, ’indices’: [13, 19]}, {’text’: ’PiersMorgan’, ’indices’: [61, 73]}, {’text’: ’GMB’, ’indices’: [89, 93]}]
## 2136 [{’text’: ’OfCom’, ’indices’: [13, 19]}, {’text’: ’PiersMorgan’, ’indices’: [61, 73]}, {’text’: ’GMB’, ’indices’: [89, 93]}]
## 2137 [{’text’: ’OfCom’, ’indices’: [13, 19]}, {’text’: ’PiersMorgan’, ’indices’: [61, 73]}, {’text’: ’GMB’, ’indices’: [89, 93]}]
## 2138 [{’text’: ’PrinceHarry’, ’indices’: [32, 44]}]
## 2139 [{’text’: ’PrinceHarry’, ’indices’: [32, 44]}]
## 2140 []
## 2141 []
## 2142 [{’text’: ’PiersMorgan’, ’indices’: [74, 86]}]
## 2143 [{’text’: ’PiersMorgan’, ’indices’: [74, 86]}]
## 2144 [{’text’: ’PiersMorgan’, ’indices’: [74, 86]}]
## 2145 [{’text’: ’PiersMorgan’, ’indices’: [74, 86]}]
## 2146 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 2147 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 2148 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 2149 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 2150 []
## 2151 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2152 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 2153 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 2154 []
## 2155 []
## 2156 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’HarryandMeghan’, ’indices’: [31, 46]}]
## 2157 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}, {’text’: ’PrinceHarry’, ’indices’: [32, 44]}, {’text’: ’RoyalFamily’, ’indices’: [69, 81]}]
## 2158 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}, {’text’: ’PrinceHarry’, ’indices’: [32, 44]}, {’text’: ’RoyalFamily’, ’indices’: [69, 81]}]
## 2159 []
## 2160 []
## 2161 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 2162 []
## 2163 []
## 2164 [{’text’: ’KentTonight’, ’indices’: [0, 12]}, {’text’: ’MeghanAndHarry’, ’indices’: [20, 35]}]
## 2165 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’OprahMeghanHarry’, ’indices’: [84, 101]}]
## 2166 []
## 2167 []
## 2168 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 2169 [{’text’: ’meghanmarkle’, ’indices’: [50, 63]}, {’text’: ’princeharry’, ’indices’: [64, 76]}, {’text’: ’oprahwinfrey’, ’indices’: [77, 90]}, {’text’: ’queenoftalk’, ’indices’: [91, 103]}]
## 2170 [{’text’: ’Shorts’, ’indices’: [72, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’Funko’, ’indices’: [94, 100]}, {’text’: ’Meghan’, ’indices’: [101, 108]}, {’text’: ’funkopop’, ’indices’: [109, 118]}]
## 2171 [{’text’: ’Shorts’, ’indices’: [72, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’Funko’, ’indices’: [94, 100]}, {’text’: ’Meghan’, ’indices’: [101, 108]}, {’text’: ’funkopop’, ’indices’: [109, 118]}]
## 2172 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 2173 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 2174 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 2175 [{’text’: ’theRoyalFamily’, ’indices’: [52, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2176 [{’text’: ’theRoyalFamily’, ’indices’: [52, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2177 [{’text’: ’theRoyalFamily’, ’indices’: [52, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2178 []
357
## 2179 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 2180 []
## 2181 []
## 2182 []
## 2183 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’law’, ’indices’: [70, 74]}, {’text’: ’Suits’, ’indices’: [80, 86]}]
## 2184 [{’text’: ’royalfamily’, ’indices’: [54, 66]}]
## 2185 []
## 2186 []
## 2187 []
## 2188 []
## 2189 [{’text’: ’BlackLivesMatter’, ’indices’: [52, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}]
## 2190 []
## 2191 []
## 2192 [{’text’: ’PresidentBiden’, ’indices’: [35, 50]}, {’text’: ’Biden’, ’indices’: [51, 57]}, {’text’: ’Trump2024’, ’indices’: [58, 68]}, {’text’: ’GMB’, ’indices’: [69, 73]}, {’text’: ’OprahWinfrey’, ’indices’: [74, 87]}, {’text’: ’CSPAN’, ’indices’: [88, 94]}, {’text’: ’YOUTUBE’, ’indices’: [95, 103]}, {’text’: ’BBCNEWS’, ’indices’: [104, 112]}]
## 2193 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 2194 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’PrinceHarry’, ’indices’: [40, 52]}]
## 2195 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}]
## 2196 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}]
## 2197 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}]
## 2198 []
## 2199 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 2200 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 2201 []
## 2202 []
## 2203 [{’text’: ’MeghanAndHarry’, ’indices’: [43, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [73, 95]}]
## 2204 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 2205 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 2206 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 2207 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 2208 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 2209 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2210 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 2211 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’MeghanAndHarry’, ’indices’: [93, 108]}]
## 2212 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2213 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2214 []
## 2215 []
## 2216 []
## 2217 []
## 2218 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 2219 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’Megxit’, ’indices’: [65, 72]}, {’text’: ’meghanisabully’, ’indices’: [73, 88]}]
## 2220 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’OprahMeghanHarry’, ’indices’: [74, 91]}]
## 2221 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 2222 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 2223 []
## 2224 []
## 2225 []
## 2226 [{’text’: ’MeghanMarkle’, ’indices’: [97, 110]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [111, 133]}]
## 2227 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’Koimoi’, ’indices’: [107, 114]}]
## 2228 [{’text’: ’piersmorgan’, ’indices’: [49, 61]}]
## 2229 []
## 2230 []
## 2231 []
## 2232 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
358
## 2233 []
## 2234 []
## 2235 []
## 2236 []
## 2237 []
## 2238 []
## 2239 []
## 2240 []
## 2241 []
## 2242 []
## 2243 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 2244 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 2245 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 2246 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 2247 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 2248 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 2249 [{’text’: ’meghanmarkle’, ’indices’: [108, 121]}]
## 2250 [{’text’: ’meghanmarkle’, ’indices’: [108, 121]}]
## 2251 [{’text’: ’meghanmarkle’, ’indices’: [108, 121]}]
## 2252 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2253 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 2254 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 2255 []
## 2256 []
## 2257 []
## 2258 []
## 2259 []
## 2260 []
## 2261 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’meghanmarkleisabully’, ’indices’: [67, 88]}]
## 2262 []
## 2263 [{’text’: ’itv’, ’indices’: [38, 42]}, {’text’: ’GMB’, ’indices’: [43, 47]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 2264 [{’text’: ’itv’, ’indices’: [38, 42]}, {’text’: ’GMB’, ’indices’: [43, 47]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 2265 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’Oprah’, ’indices’: [50, 56]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [57, 79]}]
## 2266 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 2267 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [35, 57]}, {’text’: ’BREAKING’, ’indices’: [58, 67]}]
## 2268 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2269 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2270 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 2271 []
## 2272 []
## 2273 []
## 2274 [{’text’: ’girlpower’, ’indices’: [32, 42]}, {’text’: ’MariahCarey’, ’indices’: [105, 117]}, {’text’: ’MeghanMarkle’, ’indices’: [119, 132]}]
## 2275 [{’text’: ’MeghanandHarry’, ’indices’: [37, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 2276 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [90, 112]}]
## 2277 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 2278 [{’text’: ’PrinceHarry’, ’indices’: [43, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 2279 [{’text’: ’PrinceHarry’, ’indices’: [43, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 2280 []
## 2281 []
## 2282 []
## 2283 []
## 2284 []
## 2285 []
## 2286 []
359
## 2287 [{’text’: ’goodmorningbritain’, ’indices’: [79, 98]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 2288 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [80, 102]}]
## 2289 []
## 2290 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 2291 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 2292 []
## 2293 []
## 2294 []
## 2295 []
## 2296 []
## 2297 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2298 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 2299 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 2300 []
## 2301 []
## 2302 [{’text’: ’piersmorgan’, ’indices’: [15, 27]}, {’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’racist’, ’indices’: [98, 105]}]
## 2303 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’MeghanAndHarry’, ’indices’: [53, 68]}, {’text’: ’Oprah’, ’indices’: [69, 75]}]
## 2304 [{’text’: ’boys’, ’indices’: [15, 20]}, {’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’daughter’, ’indices’: [93, 102]}]
## 2305 []
## 2306 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [80, 102]}]
## 2307 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [80, 102]}]
## 2308 [{’text’: ’PrinceWilliam’, ’indices’: [31, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2309 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’piersmorgan’, ’indices’: [59, 71]}, {’text’: ’RoyalFamily’, ’indices’: [72, 84]}, {’text’: ’OprahMeghanHarry’, ’indices’: [85, 102]}]
## 2310 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’piersmorgan’, ’indices’: [59, 71]}, {’text’: ’RoyalFamily’, ’indices’: [72, 84]}, {’text’: ’OprahMeghanHarry’, ’indices’: [85, 102]}]
## 2311 []
## 2312 [{’text’: ’MeghanMarkle’, ’indices’: [125, 138]}]
## 2313 [{’text’: ’MeghanMarkle’, ’indices’: [125, 138]}]
## 2314 [{’text’: ’PrincessDiana’, ’indices’: [25, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [78, 100]}]
## 2315 [{’text’: ’TBT’, ’indices’: [7, 11]}, {’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 2316 [{’text’: ’InternationalWomensDay’, ’indices’: [95, 118]}]
## 2317 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 2318 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’royals’, ’indices’: [78, 85]}]
## 2319 []
## 2320 []
## 2321 [{’text’: ’GorillaGlue’, ’indices’: [86, 98]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}, {’text’: ’InsurrectionsInMyPants’, ’indices’: [113, 136]}]
## 2322 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’MeghanAndHarry’, ’indices’: [72, 87]}]
## 2323 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2324 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2325 [{’text’: ’OprahMeghanHarry’, ’indices’: [26, 43]}]
## 2326 [{’text’: ’BritishTwitter’, ’indices’: [17, 32]}, {’text’: ’TheMonarchy’, ’indices’: [39, 51]}, {’text’: ’TheRoyalFamily’, ’indices’: [52, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [106, 119]}]
## 2327 []
## 2328 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 2329 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 2330 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 2331 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 2332 []
## 2333 [{’text’: ’Bully’, ’indices’: [47, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’DuchessofSussex’, ’indices’: [73, 89]}, {’text’: ’Meghan’, ’indices’: [90, 97]}, {’text’: ’Bully’, ’indices’: [109, 115]}]
## 2334 [{’text’: ’Oprah’, ’indices’: [10, 16]}, {’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 2335 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 2336 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 2337 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 2338 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2339 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2340 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
360
## 2341 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2342 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2343 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2344 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2345 [{’text’: ’Americans’, ’indices’: [0, 10]}, {’text’: ’America’, ’indices’: [11, 19]}]
## 2346 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2347 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2348 []
## 2349 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 2350 [{’text’: ’SunShineSachs’, ’indices’: [58, 72]}]
## 2351 []
## 2352 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}, {’text’: ’RoyalFamily’, ’indices’: [104, 116]}]
## 2353 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}, {’text’: ’RoyalFamily’, ’indices’: [104, 116]}]
## 2354 []
## 2355 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 2356 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2357 [{’text’: ’ASTROLOGY’, ’indices’: [32, 42]}, {’text’: ’MATTER’, ’indices’: [69, 76]}, {’text’: ’FACT’, ’indices’: [80, 85]}]
## 2358 [{’text’: ’ASTROLOGY’, ’indices’: [32, 42]}, {’text’: ’MATTER’, ’indices’: [69, 76]}, {’text’: ’FACT’, ’indices’: [80, 85]}]
## 2359 [{’text’: ’Shorts’, ’indices’: [100, 107]}]
## 2360 [{’text’: ’Shorts’, ’indices’: [100, 107]}]
## 2361 [{’text’: ’Shorts’, ’indices’: [100, 107]}]
## 2362 [{’text’: ’Shorts’, ’indices’: [100, 107]}]
## 2363 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 2364 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2365 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2366 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 2367 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 2368 []
## 2369 []
## 2370 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 2371 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 2372 [{’text’: ’OprahMeghanHarry’, ’indices’: [7, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 2373 [{’text’: ’OprahMeghanHarry’, ’indices’: [7, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 2374 [{’text’: ’TinaKaggia’, ’indices’: [85, 96]}, {’text’: ’KhanYouArrestRuto’, ’indices’: [97, 115]}]
## 2375 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 2376 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}]
## 2377 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 2378 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 2379 []
## 2380 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 2381 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 2382 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 2383 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’RoyalFamily’, ’indices’: [75, 87]}, {’text’: ’RachelLindsay’, ’indices’: [89, 103]}]
## 2384 [{’text’: ’CarnivalOfSoCalledExperts’, ’indices’: [70, 96]}]
## 2385 [{’text’: ’CarnivalOfSoCalledExperts’, ’indices’: [70, 96]}]
## 2386 [{’text’: ’CarnivalOfSoCalledExperts’, ’indices’: [70, 96]}]
## 2387 []
## 2388 []
## 2389 [{’text’: ’Harry’, ’indices’: [22, 28]}, {’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’Oprah’, ’indices’: [53, 59]}]
## 2390 [{’text’: ’piersmorgan’, ’indices’: [42, 54]}, {’text’: ’InternationalWomensDay’, ’indices’: [66, 89]}]
## 2391 [{’text’: ’piersmorgan’, ’indices’: [42, 54]}, {’text’: ’InternationalWomensDay’, ’indices’: [66, 89]}]
## 2392 []
## 2393 []
## 2394 []
361
## 2395 []
## 2396 [{’text’: ’PiersMorgan’, ’indices’: [32, 44]}]
## 2397 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 2398 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 2399 []
## 2400 []
## 2401 []
## 2402 []
## 2403 []
## 2404 []
## 2405 []
## 2406 []
## 2407 []
## 2408 []
## 2409 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2410 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2411 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [69, 91]}]
## 2412 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [69, 91]}]
## 2413 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 2414 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 2415 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 2416 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 2417 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 2418 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 2419 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’OprahMeghanHarry’, ’indices’: [19, 36]}]
## 2420 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 2421 []
## 2422 []
## 2423 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 2424 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 2425 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2426 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2427 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2428 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2429 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2430 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 2431 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}]
## 2432 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 2433 []
## 2434 []
## 2435 []
## 2436 []
## 2437 []
## 2438 []
## 2439 []
## 2440 []
## 2441 []
## 2442 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’OprahMeghanHarry’, ’indices’: [89, 106]}]
## 2443 [{’text’: ’meghanmarkle’, ’indices’: [59, 72]}]
## 2444 [{’text’: ’meghanmarkle’, ’indices’: [59, 72]}]
## 2445 [{’text’: ’meghanmarkle’, ’indices’: [59, 72]}]
## 2446 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 2447 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 2448 []
362
## 2449 [{’text’: ’meganandharryonoprah’, ’indices’: [0, 21]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2450 [{’text’: ’OprahWinfrey’, ’indices’: [14, 27]}, {’text’: ’MeghanAndHarry’, ’indices’: [58, 73]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 2451 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 2452 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’PrinceHarry’, ’indices’: [41, 53]}, {’text’: ’WhiteHouse’, ’indices’: [54, 65]}, {’text’: ’OprahMeghanHarry’, ’indices’: [66, 83]}, {’text’: ’OprahWinfrey’, ’indices’: [84, 97]}, {’text’: ’Video’, ’indices’: [98, 104]}, {’text’: ’interview’, ’indices’: [105, 115]}]
## 2453 [{’text’: ’girlpower’, ’indices’: [73, 83]}, {’text’: ’Feminism’, ’indices’: [84, 93]}, {’text’: ’HarryandMeghan’, ’indices’: [94, 109]}]
## 2454 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’PrincessDiana’, ’indices’: [37, 51]}]
## 2455 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 2456 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}, {’text’: ’OprahMeghanHarry’, ’indices’: [48, 65]}]
## 2457 []
## 2458 []
## 2459 []
## 2460 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’Markle’, ’indices’: [77, 84]}]
## 2461 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 2462 []
## 2463 []
## 2464 []
## 2465 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 2466 [{’text’: ’HarryandMeghan’, ’indices’: [77, 92]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [93, 115]}]
## 2467 [{’text’: ’HarryandMeghan’, ’indices’: [77, 92]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [93, 115]}]
## 2468 []
## 2469 [{’text’: ’N4TM’, ’indices’: [43, 48]}]
## 2470 []
## 2471 []
## 2472 [{’text’: ’PrinceHarry’, ’indices’: [11, 23]}, {’text’: ’William’, ’indices’: [81, 89]}, {’text’: ’RoyalFamily’, ’indices’: [91, 103]}, {’text’: ’Mar7Coup’, ’indices’: [104, 113]}]
## 2473 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 2474 [{’text’: ’Oprah’, ’indices’: [35, 41]}]
## 2475 [{’text’: ’Oprah’, ’indices’: [35, 41]}]
## 2476 [{’text’: ’Oprah’, ’indices’: [32, 38]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 2477 [{’text’: ’Oprah’, ’indices’: [32, 38]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 2478 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’piersmorgan’, ’indices’: [106, 118]}]
## 2479 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’piersmorgan’, ’indices’: [106, 118]}]
## 2480 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 2481 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2482 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2483 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 2484 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 2485 []
## 2486 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 2487 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 2488 []
## 2489 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 2490 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 2491 []
## 2492 []
## 2493 []
## 2494 []
## 2495 []
## 2496 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’Diana’, ’indices’: [29, 35]}]
## 2497 []
## 2498 []
## 2499 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’COVID19’, ’indices’: [73, 81]}]
## 2500 []
## 2501 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2502 [{’text’: ’MeghanAndHarry’, ’indices’: [76, 91]}]
363
## 2503 [{’text’: ’MeghanAndHarry’, ’indices’: [76, 91]}]
## 2504 []
## 2505 []
## 2506 []
## 2507 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 2508 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’Suits’, ’indices’: [45, 51]}]
## 2509 []
## 2510 []
## 2511 []
## 2512 []
## 2513 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 2514 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 2515 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2516 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2517 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 2518 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’meghanharryoprah’, ’indices’: [99, 116]}]
## 2519 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 2520 [{’text’: ’ThomasMarkle’, ’indices’: [42, 55]}]
## 2521 [{’text’: ’ThomasMarkle’, ’indices’: [42, 55]}]
## 2522 [{’text’: ’ThomasMarkle’, ’indices’: [42, 55]}]
## 2523 [{’text’: ’InternationalWomensDay’, ’indices’: [3, 26]}, {’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2524 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 2525 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 2526 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 2527 []
## 2528 [{’text’: ’MeghanAndHarry’, ’indices’: [34, 49]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [64, 86]}]
## 2529 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2530 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 2531 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’DuchessofSussex’, ’indices’: [54, 70]}]
## 2532 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [39, 61]}, {’text’: ’RoyalFamily’, ’indices’: [62, 74]}, {’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 2533 [{’text’: ’JeffreyEpstein’, ’indices’: [48, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 2534 [{’text’: ’JeffreyEpstein’, ’indices’: [48, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 2535 []
## 2536 []
## 2537 []
## 2538 []
## 2539 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2540 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2541 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [72, 94]}]
## 2542 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [72, 94]}]
## 2543 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’MeghanAndHarry’, ’indices’: [99, 114]}]
## 2544 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’OprahMeghanHarry’, ’indices’: [107, 124]}]
## 2545 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’OprahMeghanHarry’, ’indices’: [107, 124]}]
## 2546 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’OprahMeghanHarry’, ’indices’: [107, 124]}]
## 2547 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’OprahMeghanHarry’, ’indices’: [107, 124]}]
## 2548 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}, {’text’: ’OprahMeghanHarry’, ’indices’: [107, 124]}]
## 2549 []
## 2550 []
## 2551 [{’text’: ’ugly’, ’indices’: [56, 61]}]
## 2552 [{’text’: ’ugly’, ’indices’: [56, 61]}]
## 2553 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 2554 [{’text’: ’chrisship’, ’indices’: [43, 53]}, {’text’: ’itv’, ’indices’: [61, 65]}, {’text’: ’shaded’, ’indices’: [74, 81]}, {’text’: ’view’, ’indices’: [86, 91]}]
## 2555 [{’text’: ’chrisship’, ’indices’: [43, 53]}, {’text’: ’itv’, ’indices’: [61, 65]}, {’text’: ’shaded’, ’indices’: [74, 81]}, {’text’: ’view’, ’indices’: [86, 91]}]
## 2556 []
364
## 2557 []
## 2558 []
## 2559 []
## 2560 [{’text’: ’firepiersmorgan’, ’indices’: [18, 34]}, {’text’: ’itv’, ’indices’: [35, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 2561 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 2562 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 2563 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’HappyInternationalWomensDay’, ’indices’: [74, 102]}, {’text’: ’HarryMeghanOprah’, ’indices’: [103, 120]}]
## 2564 [{’text’: ’meghanmarkle’, ’indices’: [16, 29]}]
## 2565 []
## 2566 []
## 2567 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 2568 []
## 2569 []
## 2570 []
## 2571 [{’text’: ’factsdontcareaboutyourfeelings’, ’indices’: [70, 101]}]
## 2572 [{’text’: ’factsdontcareaboutyourfeelings’, ’indices’: [70, 101]}]
## 2573 [{’text’: ’DogecoinRise’, ’indices’: [58, 71]}, {’text’: ’fitnessgirl’, ’indices’: [72, 84]}, {’text’: ’subscribe’, ’indices’: [85, 95]}, {’text’: ’YouTubers’, ’indices’: [96, 106]}]
## 2574 []
## 2575 [{’text’: ’megixt’, ’indices’: [104, 111]}]
## 2576 [{’text’: ’megixt’, ’indices’: [104, 111]}]
## 2577 [{’text’: ’FirstandOnly’, ’indices’: [63, 76]}]
## 2578 [{’text’: ’PrinceHarry’, ’indices’: [50, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 2579 []
## 2580 []
## 2581 []
## 2582 []
## 2583 []
## 2584 []
## 2585 []
## 2586 []
## 2587 []
## 2588 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’AmandaGorman’, ’indices’: [92, 105]}, {’text’: ’OprahMeghanHarry’, ’indices’: [106, 123]}]
## 2589 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 2590 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 2591 []
## 2592 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 2593 []
## 2594 []
## 2595 []
## 2596 []
## 2597 [{’text’: ’AbolishTheMonarchy’, ’indices’: [10, 29]}, {’text’: ’MeghanAndHarry’, ’indices’: [79, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2598 [{’text’: ’AbolishTheMonarchy’, ’indices’: [10, 29]}, {’text’: ’MeghanAndHarry’, ’indices’: [79, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2599 []
## 2600 []
## 2601 []
## 2602 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 2603 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 2604 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 2605 []
## 2606 []
## 2607 []
## 2608 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’Oprah’, ’indices’: [83, 89]}]
## 2609 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 2610 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’PrinceHarry’, ’indices’: [48, 60]}, {’text’: ’Oprah’, ’indices’: [64, 70]}]
365
## 2611 [{’text’: ’decent’, ’indices’: [49, 56]}]
## 2612 [{’text’: ’decent’, ’indices’: [49, 56]}]
## 2613 []
## 2614 []
## 2615 []
## 2616 []
## 2617 []
## 2618 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 2619 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 2620 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 2621 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 2622 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 2623 []
## 2624 []
## 2625 []
## 2626 []
## 2627 []
## 2628 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2629 []
## 2630 []
## 2631 []
## 2632 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 2633 []
## 2634 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’Meghan’, ’indices’: [73, 80]}]
## 2635 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’Meghan’, ’indices’: [73, 80]}]
## 2636 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’Meghan’, ’indices’: [73, 80]}]
## 2637 []
## 2638 []
## 2639 []
## 2640 []
## 2641 []
## 2642 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [16, 38]}, {’text’: ’BuckinghamPalace’, ’indices’: [39, 56]}, {’text’: ’TheCrown’, ’indices’: [57, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’KensingtonPalace’, ’indices’: [81, 98]}]
## 2643 [{’text’: ’Meghan’, ’indices’: [0, 7]}, {’text’: ’MeghanMarkle’, ’indices’: [8, 21]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [22, 44]}]
## 2644 [{’text’: ’BREAKING’, ’indices’: [0, 9]}, {’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2645 [{’text’: ’BREAKING’, ’indices’: [0, 9]}, {’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2646 [{’text’: ’BREAKING’, ’indices’: [0, 9]}, {’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2647 []
## 2648 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 2649 []
## 2650 [{’text’: ’meghanmarkle’, ’indices’: [5, 18]}]
## 2651 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2652 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2653 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 2654 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 2655 []
## 2656 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’OprahMeghanHarry’, ’indices’: [74, 91]}, {’text’: ’Megxit’, ’indices’: [92, 99]}]
## 2657 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’OprahMeghanHarry’, ’indices’: [74, 91]}, {’text’: ’Megxit’, ’indices’: [92, 99]}]
## 2658 []
## 2659 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 2660 [{’text’: ’MegynKelly’, ’indices’: [111, 122]}, {’text’: ’MeghanMarkle’, ’indices’: [123, 136]}]
## 2661 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 2662 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 2663 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 2664 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
366
## 2665 [{’text’: ’breakingnews’, ’indices’: [0, 13]}, {’text’: ’thankyou’, ’indices’: [14, 23]}, {’text’: ’PiersMorgan’, ’indices’: [33, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’AlexBeresford’, ’indices’: [86, 100]}]
## 2666 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’RoyalFamily’, ’indices’: [27, 39]}, {’text’: ’PiersMorgan’, ’indices’: [40, 52]}]
## 2667 [{’text’: ’Hush’, ’indices’: [46, 51]}]
## 2668 [{’text’: ’Hush’, ’indices’: [46, 51]}]
## 2669 [{’text’: ’ChooseToChallenge’, ’indices’: [0, 18]}, {’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 2670 [{’text’: ’ChooseToChallenge’, ’indices’: [0, 18]}, {’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 2671 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’RoyalFamily’, ’indices’: [90, 102]}]
## 2672 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 2673 []
## 2674 []
## 2675 []
## 2676 []
## 2677 [{’text’: ’OprahWinfrey’, ’indices’: [54, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 2678 [{’text’: ’OprahWinfrey’, ’indices’: [54, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 2679 [{’text’: ’OprahWinfrey’, ’indices’: [54, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 2680 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 2681 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 2682 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 2683 [{’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}]
## 2684 [{’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}]
## 2685 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’auspol’, ’indices’: [57, 64]}, {’text’: ’piersmorgan’, ’indices’: [65, 77]}, {’text’: ’9today’, ’indices’: [78, 85]}]
## 2686 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’auspol’, ’indices’: [57, 64]}, {’text’: ’piersmorgan’, ’indices’: [65, 77]}, {’text’: ’9today’, ’indices’: [78, 85]}]
## 2687 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’auspol’, ’indices’: [57, 64]}, {’text’: ’piersmorgan’, ’indices’: [65, 77]}, {’text’: ’9today’, ’indices’: [78, 85]}]
## 2688 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}, {’text’: ’OprahMeghanHarry’, ’indices’: [57, 74]}]
## 2689 [{’text’: ’OprahMeghanHarry’, ’indices’: [65, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2690 [{’text’: ’OprahMeghanHarry’, ’indices’: [65, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2691 []
## 2692 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 2693 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 2694 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 2695 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 2696 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}, {’text’: ’PrinceHarry’, ’indices’: [52, 64]}, {’text’: ’BuckinghamPalace’, ’indices’: [65, 82]}, {’text’: ’tiktok’, ’indices’: [83, 90]}]
## 2697 []
## 2698 []
## 2699 [{’text’: ’SelfVictimization’, ’indices’: [14, 32]}, {’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’Trumps’, ’indices’: [61, 68]}]
## 2700 [{’text’: ’PrinceHarry’, ’indices’: [18, 30]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 2701 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 2702 []
## 2703 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 2704 [{’text’: ’meghanmarkle’, ’indices’: [68, 81]}]
## 2705 [{’text’: ’meghanmarkle’, ’indices’: [68, 81]}]
## 2706 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’OprahMeghanHarry’, ’indices’: [94, 111]}]
## 2707 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [50, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’PrinceHarry’, ’indices’: [87, 99]}, {’text’: ’Oprah’, ’indices’: [100, 106]}]
## 2708 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 2709 []
## 2710 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 2711 [{’text’: ’meghanmarkle’, ’indices’: [84, 97]}]
## 2712 [{’text’: ’meghanmarkle’, ’indices’: [84, 97]}]
## 2713 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 2714 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 2715 []
## 2716 []
## 2717 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 2718 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}, {’text’: ’PrinceHarry’, ’indices’: [106, 118]}, {’text’: ’BlowUp’, ’indices’: [119, 126]}, {’text’: ’FijiTour’, ’indices’: [127, 136]}]
367
## 2719 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2720 []
## 2721 []
## 2722 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 2723 [{’text’: ’notcourageous’, ’indices’: [12, 26]}, {’text’: ’sad’, ’indices’: [27, 31]}, {’text’: ’misguided’, ’indices’: [32, 42]}, {’text’: ’shameful’, ’indices’: [43, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 2724 [{’text’: ’CNN’, ’indices’: [13, 17]}]
## 2725 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 2726 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’Harry’, ’indices’: [78, 84]}]
## 2727 []
## 2728 []
## 2729 []
## 2730 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’MeghanAndHarry’, ’indices’: [39, 54]}, {’text’: ’Oprah’, ’indices’: [56, 62]}, {’text’: ’SundayNight’, ’indices’: [64, 76]}, {’text’: ’TheRacistRoyals’, ’indices’: [78, 94]}]
## 2731 []
## 2732 [{’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}]
## 2733 [{’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}]
## 2734 [{’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}]
## 2735 []
## 2736 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [72, 94]}, {’text’: ’MeghanAndHarry’, ’indices’: [95, 110]}, {’text’: ’Meghan’, ’indices’: [111, 118]}, {’text’: ’MeghanMarkle’, ’indices’: [119, 132]}]
## 2737 [{’text’: ’Yawn’, ’indices’: [14, 19]}, {’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 2738 [{’text’: ’meghanmarkle’, ’indices’: [50, 63]}, {’text’: ’meghanmarkle’, ’indices’: [82, 95]}]
## 2739 []
## 2740 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’MeghanAndHarry’, ’indices’: [100, 115]}]
## 2741 []
## 2742 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 2743 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 2744 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 2745 [{’text’: ’MeghanMarkle’, ’indices’: [122, 135]}]
## 2746 [{’text’: ’PiersMorgan’, ’indices’: [99, 111]}]
## 2747 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 2748 []
## 2749 [{’text’: ’ThisMorning’, ’indices’: [63, 75]}, {’text’: ’MeghanMarkle’, ’indices’: [76, 89]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [90, 112]}]
## 2750 [{’text’: ’mentalhealth’, ’indices’: [30, 43]}, {’text’: ’meghanmarkle’, ’indices’: [44, 57]}, {’text’: ’dailymail’, ’indices’: [66, 76]}]
## 2751 [{’text’: ’mentalhealth’, ’indices’: [30, 43]}, {’text’: ’meghanmarkle’, ’indices’: [44, 57]}, {’text’: ’dailymail’, ’indices’: [66, 76]}]
## 2752 []
## 2753 [{’text’: ’Grifter’, ’indices’: [84, 92]}, {’text’: ’YachtGirl’, ’indices’: [93, 103]}]
## 2754 []
## 2755 [{’text’: ’meghanisaliar’, ’indices’: [11, 25]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 2756 []
## 2757 []
## 2758 []
## 2759 [{’text’: ’kingdom’, ’indices’: [47, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’RoyalFamily’, ’indices’: [100, 112]}]
## 2760 []
## 2761 []
## 2762 []
## 2763 []
## 2764 []
## 2765 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2766 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2767 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 2768 [{’text’: ’BritishGovt’, ’indices’: [36, 48]}, {’text’: ’HRH’, ’indices’: [50, 54]}]
## 2769 [{’text’: ’BritishGovt’, ’indices’: [36, 48]}, {’text’: ’HRH’, ’indices’: [50, 54]}]
## 2770 [{’text’: ’BritishGovt’, ’indices’: [36, 48]}, {’text’: ’HRH’, ’indices’: [50, 54]}]
## 2771 [{’text’: ’joe’, ’indices’: [69, 73]}, {’text’: ’MeghanMarkle’, ’indices’: [74, 87]}, {’text’: ’RacistBritain’, ’indices’: [88, 102]}]
## 2772 []
368
## 2773 []
## 2774 [{’text’: ’PiersMorgan’, ’indices’: [47, 59]}]
## 2775 [{’text’: ’PiersMorgan’, ’indices’: [47, 59]}]
## 2776 [{’text’: ’PiersMorgan’, ’indices’: [47, 59]}]
## 2777 []
## 2778 []
## 2779 []
## 2780 []
## 2781 []
## 2782 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 2783 []
## 2784 [{’text’: ’mysogyny’, ’indices’: [9, 18]}, {’text’: ’PrinceAndrew’, ’indices’: [69, 82]}]
## 2785 []
## 2786 []
## 2787 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 2788 []
## 2789 [{’text’: ’Meghan’, ’indices’: [50, 57]}]
## 2790 [{’text’: ’Meghan’, ’indices’: [50, 57]}]
## 2791 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’HarryandMeghan’, ’indices’: [76, 91]}]
## 2792 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2793 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2794 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2795 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2796 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2797 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2798 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2799 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 2800 [{’text’: ’Repost’, ’indices’: [20, 27]}]
## 2801 [{’text’: ’Repost’, ’indices’: [20, 27]}]
## 2802 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}, {’text’: ’PrinceHarry’, ’indices’: [35, 47]}, {’text’: ’HarryandMegan’, ’indices’: [95, 109]}]
## 2803 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’MentalHealth’, ’indices’: [54, 67]}, {’text’: ’Pregnancy’, ’indices’: [85, 95]}]
## 2804 [{’text’: ’OprahMeghanHarry’, ’indices’: [32, 49]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2805 [{’text’: ’PrinceHarry’, ’indices’: [32, 44]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 2806 []
## 2807 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’ShutUp’, ’indices’: [72, 79]}, {’text’: ’GoAway’, ’indices’: [80, 87]}]
## 2808 []
## 2809 []
## 2810 [{’text’: ’Oprah’, ’indices’: [95, 101]}]
## 2811 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 2812 []
## 2813 []
## 2814 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 2815 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 2816 [{’text’: ’ThomasMarkle’, ’indices’: [18, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2817 [{’text’: ’ThomasMarkle’, ’indices’: [18, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2818 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 2819 []
## 2820 []
## 2821 []
## 2822 []
## 2823 []
## 2824 []
## 2825 []
## 2826 []
369
## 2827 []
## 2828 []
## 2829 []
## 2830 []
## 2831 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 2832 []
## 2833 [{’text’: ’istandwithmeghan’, ’indices’: [23, 40]}, {’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 2834 []
## 2835 []
## 2836 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 2837 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 2838 []
## 2839 []
## 2840 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2841 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2842 []
## 2843 [{’text’: ’ThomasMarkle’, ’indices’: [28, 41]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 2844 []
## 2845 []
## 2846 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}, {’text’: ’BlackTwitter’, ’indices’: [114, 127]}]
## 2847 []
## 2848 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 2849 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 2850 []
## 2851 []
## 2852 []
## 2853 []
## 2854 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 2855 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 2856 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 2857 [{’text’: ’MeghanMarkle’, ’indices’: [4, 17]}]
## 2858 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [9, 31]}]
## 2859 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [9, 31]}]
## 2860 [{’text’: ’internationalwomensday2021’, ’indices’: [29, 56]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 2861 [{’text’: ’internationalwomensday2021’, ’indices’: [29, 56]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 2862 []
## 2863 []
## 2864 []
## 2865 []
## 2866 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 2867 []
## 2868 []
## 2869 [{’text’: ’PrinceCharles’, ’indices’: [23, 37]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’MeghanAndHarry’, ’indices’: [99, 114]}]
## 2870 [{’text’: ’PrinceCharles’, ’indices’: [23, 37]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’MeghanAndHarry’, ’indices’: [99, 114]}]
## 2871 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2872 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2873 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2874 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 2875 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2876 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2877 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 2878 [{’text’: ’SelfVictimization’, ’indices’: [15, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’Trumps’, ’indices’: [62, 69]}]
## 2879 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’PiersMorgan’, ’indices’: [67, 79]}]
## 2880 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
370
## 2881 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2882 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2883 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2884 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 2885 []
## 2886 []
## 2887 []
## 2888 []
## 2889 []
## 2890 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 2891 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 2892 []
## 2893 []
## 2894 []
## 2895 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 2896 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 2897 [{’text’: ’British’, ’indices’: [34, 42]}]
## 2898 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [80, 102]}]
## 2899 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 2900 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 2901 [{’text’: ’meghanmarkle’, ’indices’: [34, 47]}]
## 2902 []
## 2903 []
## 2904 []
## 2905 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 2906 [{’text’: ’MeghanMarkle’, ’indices’: [4, 17]}]
## 2907 []
## 2908 []
## 2909 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 2910 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 2911 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’HarryandMeghan’, ’indices’: [99, 114]}]
## 2912 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’HarryandMeghan’, ’indices’: [99, 114]}]
## 2913 [{’text’: ’williamandkate’, ’indices’: [14, 29]}, {’text’: ’RoyalFamily’, ’indices’: [87, 99]}]
## 2914 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 2915 [{’text’: ’Me_again’, ’indices’: [17, 26]}]
## 2916 [{’text’: ’Me_again’, ’indices’: [17, 26]}]
## 2917 []
## 2918 [{’text’: ’SelfVictimization’, ’indices’: [15, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’Trumps’, ’indices’: [62, 69]}]
## 2919 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [38, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’HarryandMeghan’, ’indices’: [75, 90]}]
## 2920 []
## 2921 []
## 2922 []
## 2923 []
## 2924 []
## 2925 []
## 2926 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [25, 47]}, {’text’: ’MeghanAndHarry’, ’indices’: [48, 63]}, {’text’: ’PrincessDiana’, ’indices’: [64, 78]}, {’text’: ’PrinceAndrew’, ’indices’: [79, 92]}, {’text’: ’OprahWinfrey’, ’indices’: [93, 106]}]
## 2927 []
## 2928 []
## 2929 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [42, 64]}]
## 2930 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [42, 64]}]
## 2931 []
## 2932 []
## 2933 []
## 2934 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’PrinceHarry’, ’indices’: [102, 114]}]
371
## 2935 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’PrinceHarry’, ’indices’: [102, 114]}]
## 2936 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’MeghanAndHarry’, ’indices’: [81, 96]}]
## 2937 [{’text’: ’rms’, ’indices’: [84, 88]}, {’text’: ’zakmir’, ’indices’: [89, 96]}, {’text’: ’garethcave’, ’indices’: [97, 108]}]
## 2938 [{’text’: ’rms’, ’indices’: [84, 88]}, {’text’: ’zakmir’, ’indices’: [89, 96]}, {’text’: ’garethcave’, ’indices’: [97, 108]}]
## 2939 [{’text’: ’rms’, ’indices’: [84, 88]}, {’text’: ’zakmir’, ’indices’: [89, 96]}, {’text’: ’garethcave’, ’indices’: [97, 108]}]
## 2940 [{’text’: ’rms’, ’indices’: [84, 88]}, {’text’: ’zakmir’, ’indices’: [89, 96]}, {’text’: ’garethcave’, ’indices’: [97, 108]}]
## 2941 [{’text’: ’MeghanAndHarry’, ’indices’: [0, 15]}]
## 2942 [{’text’: ’MeghanAndHarry’, ’indices’: [0, 15]}]
## 2943 [{’text’: ’MeghanAndHarry’, ’indices’: [0, 15]}]
## 2944 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2945 []
## 2946 []
## 2947 []
## 2948 []
## 2949 []
## 2950 []
## 2951 []
## 2952 [{’text’: ’meghanmarkle’, ’indices’: [96, 109]}]
## 2953 []
## 2954 []
## 2955 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 2956 [{’text’: ’piersmorgan’, ’indices’: [30, 42]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}]
## 2957 [{’text’: ’PrinceHarry’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [55, 77]}]
## 2958 []
## 2959 []
## 2960 [{’text’: ’Oprah’, ’indices’: [55, 61]}, {’text’: ’OprahMeghanHarry’, ’indices’: [98, 115]}, {’text’: ’MeghanMarkle’, ’indices’: [116, 129]}]
## 2961 [{’text’: ’Oprah’, ’indices’: [55, 61]}, {’text’: ’OprahMeghanHarry’, ’indices’: [98, 115]}, {’text’: ’MeghanMarkle’, ’indices’: [116, 129]}]
## 2962 [{’text’: ’Oprah’, ’indices’: [55, 61]}, {’text’: ’OprahMeghanHarry’, ’indices’: [98, 115]}, {’text’: ’MeghanMarkle’, ’indices’: [116, 129]}]
## 2963 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’MeghanAndHarry’, ’indices’: [33, 48]}, {’text’: ’HarryMeghanOprah’, ’indices’: [50, 67]}]
## 2964 []
## 2965 []
## 2966 []
## 2967 [{’text’: ’InternationalWomensDay’, ’indices’: [53, 76]}, {’text’: ’KhanYouArrestRuto’, ’indices’: [77, 95]}, {’text’: ’ODMPanics’, ’indices’: [96, 106]}, {’text’: ’BBIBurden’, ’indices’: [107, 117]}, {’text’: ’MeghanMarkle’, ’indices’: [118, 131]}]
## 2968 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 2969 []
## 2970 [{’text’: ’TheCrown’, ’indices’: [0, 9]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 2971 []
## 2972 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 2973 [{’text’: ’TheCrown’, ’indices’: [37, 46]}, {’text’: ’OprahMeghanHarry’, ’indices’: [61, 78]}, {’text’: ’MeghanAndHarry’, ’indices’: [79, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 2974 [{’text’: ’SelfVictimization’, ’indices’: [13, 31]}, {’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’Trumps’, ’indices’: [60, 67]}]
## 2975 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 2976 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’DuchessofCambridge’, ’indices’: [86, 105]}]
## 2977 []
## 2978 []
## 2979 []
## 2980 []
## 2981 []
## 2982 []
## 2983 []
## 2984 [{’text’: ’HarryandMegan’, ’indices’: [35, 49]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [54, 76]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’MeghanAndHarry’, ’indices’: [91, 106]}]
## 2985 []
## 2986 []
## 2987 [{’text’: ’KatemadeMeghancry’, ’indices’: [97, 115]}]
## 2988 [{’text’: ’actress’, ’indices’: [30, 38]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’OprahMeghanHarry’, ’indices’: [93, 110]}]
372
## 2989 [{’text’: ’MeghanMarkle’, ’indices’: [106, 119]}]
## 2990 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}, {’text’: ’QueenElizabeth’, ’indices’: [41, 56]}, {’text’: ’QueenCharlotte’, ’indices’: [63, 78]}]
## 2991 [{’text’: ’piersmorgan’, ’indices’: [10, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’MeghanAndHarry’, ’indices’: [38, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’MeghanAndHarry’, ’indices’: [68, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 2992 [{’text’: ’HarryandMeghan’, ’indices’: [78, 93]}, {’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}]
## 2993 []
## 2994 []
## 2995 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [36, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’lovingthis’, ’indices’: [73, 84]}]
## 2996 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 2997 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 2998 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [30, 52]}]
## 2999 []
## 3000 []
## 3001 []
## 3002 [{’text’: ’SelfVictimization’, ’indices’: [10, 28]}, {’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’Trumps’, ’indices’: [57, 64]}]
## 3003 [{’text’: ’TheCrown’, ’indices’: [41, 50]}, {’text’: ’OprahMeghanHarry’, ’indices’: [65, 82]}, {’text’: ’MeghanAndHarry’, ’indices’: [83, 98]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 3004 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’MeghanMarkleIsALiar’, ’indices’: [30, 50]}, {’text’: ’MeghanMarkleIsABully’, ’indices’: [51, 72]}, {’text’: ’Oprah’, ’indices’: [73, 79]}, {’text’: ’OprahMeghanHarry’, ’indices’: [80, 97]}]
## 3005 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3006 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’MeghanAndHarry’, ’indices’: [51, 66]}, {’text’: ’PrinceWilliam’, ’indices’: [67, 81]}]
## 3007 [{’text’: ’piersmorgan’, ’indices’: [31, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’MeghanAndHarry’, ’indices’: [59, 74]}, {’text’: ’TheOffice’, ’indices’: [75, 85]}]
## 3008 [{’text’: ’piersmorgan’, ’indices’: [31, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’MeghanAndHarry’, ’indices’: [59, 74]}, {’text’: ’TheOffice’, ’indices’: [75, 85]}]
## 3009 []
## 3010 []
## 3011 []
## 3012 []
## 3013 []
## 3014 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3015 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3016 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’meghanharryoprah’, ’indices’: [35, 52]}]
## 3017 []
## 3018 []
## 3019 [{’text’: ’TheCrown’, ’indices’: [58, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 3020 [{’text’: ’cancelmarkle’, ’indices’: [19, 32]}, {’text’: ’meghanmarkle’, ’indices’: [33, 46]}, {’text’: ’meghanmarkleisabully’, ’indices’: [47, 68]}]
## 3021 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3022 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3023 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’PiersMorgan’, ’indices’: [82, 94]}]
## 3024 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’OprahMeghanHarry’, ’indices’: [98, 115]}]
## 3025 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’OprahMeghanHarry’, ’indices’: [98, 115]}]
## 3026 [{’text’: ’RoyalFamily’, ’indices’: [46, 58]}]
## 3027 [{’text’: ’RoyalFamily’, ’indices’: [75, 87]}]
## 3028 []
## 3029 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [88, 110]}, {’text’: ’MeghanAndHarry’, ’indices’: [111, 126]}, {’text’: ’MeghanMarkle’, ’indices’: [127, 140]}]
## 3030 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 3031 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 3032 []
## 3033 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 3034 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 3035 []
## 3036 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3037 []
## 3038 []
## 3039 []
## 3040 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 3041 [{’text’: ’PrinceHarry’, ’indices’: [34, 46]}, {’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’HarryandMegan’, ’indices’: [61, 75]}, {’text’: ’ToxicPress’, ’indices’: [76, 87]}, {’text’: ’UKtabloids’, ’indices’: [88, 99]}, {’text’: ’ToxicPress’, ’indices’: [100, 111]}]
## 3042 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
373
## 3043 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3044 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3045 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3046 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3047 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3048 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3049 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3050 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’PrinceHarry’, ’indices’: [55, 67]}]
## 3051 []
## 3052 []
## 3053 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 3054 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 3055 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 3056 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 3057 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 3058 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 3059 [{’text’: ’TrumpTV’, ’indices’: [47, 55]}]
## 3060 []
## 3061 []
## 3062 []
## 3063 []
## 3064 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 3065 [{’text’: ’QueenElizabeth’, ’indices’: [99, 114]}]
## 3066 [{’text’: ’QueenElizabeth’, ’indices’: [99, 114]}]
## 3067 [{’text’: ’QueenElizabeth’, ’indices’: [99, 114]}]
## 3068 [{’text’: ’QueenElizabeth’, ’indices’: [99, 114]}]
## 3069 [{’text’: ’QueenElizabeth’, ’indices’: [99, 114]}]
## 3070 []
## 3071 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 3072 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 3073 []
## 3074 []
## 3075 []
## 3076 [{’text’: ’Oprah’, ’indices’: [60, 66]}]
## 3077 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’SystemicRacism’, ’indices’: [97, 112]}]
## 3078 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’SystemicRacism’, ’indices’: [97, 112]}]
## 3079 [{’text’: ’meghanmarkle’, ’indices’: [102, 115]}]
## 3080 [{’text’: ’meghanmarkle’, ’indices’: [102, 115]}]
## 3081 [{’text’: ’meghanmarkle’, ’indices’: [102, 115]}]
## 3082 [{’text’: ’meghanmarkle’, ’indices’: [102, 115]}]
## 3083 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 3084 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 3085 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 3086 [{’text’: ’piersmorgan’, ’indices’: [49, 61]}, {’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 3087 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 3088 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 3089 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 3090 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 3091 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [68, 90]}]
## 3092 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’OprahMeghanHarry’, ’indices’: [71, 88]}]
## 3093 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’OprahMeghanHarry’, ’indices’: [71, 88]}]
## 3094 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 3095 []
## 3096 []
374
## 3097 []
## 3098 []
## 3099 []
## 3100 []
## 3101 []
## 3102 []
## 3103 [{’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 3104 [{’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 3105 [{’text’: ’MeghanMarkle’, ’indices’: [112, 125]}]
## 3106 []
## 3107 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}]
## 3108 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}]
## 3109 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}]
## 3110 []
## 3111 []
## 3112 []
## 3113 [{’text’: ’InternationalWomensDay’, ’indices’: [6, 29]}, {’text’: ’internationalevrouwendag’, ’indices’: [30, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 3114 [{’text’: ’InternationalWomensDay’, ’indices’: [6, 29]}, {’text’: ’internationalevrouwendag’, ’indices’: [30, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 3115 [{’text’: ’InternationalWomensDay’, ’indices’: [6, 29]}, {’text’: ’internationalevrouwendag’, ’indices’: [30, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 3116 [{’text’: ’dickie’, ’indices’: [74, 81]}, {’text’: ’RoyalFamily’, ’indices’: [82, 94]}, {’text’: ’RoyalExperts’, ’indices’: [95, 108]}, {’text’: ’MeghanMarkle’, ’indices’: [109, 122]}, {’text’: ’MeghanAndHarry’, ’indices’: [123, 138]}]
## 3117 []
## 3118 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’MeghanAndHarry’, ’indices’: [101, 116]}, {’text’: ’Meghan’, ’indices’: [117, 124]}]
## 3119 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 3120 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 3121 []
## 3122 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 3123 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 3124 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 3125 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’Meghan’, ’indices’: [59, 66]}, {’text’: ’RoyalFamily’, ’indices’: [67, 79]}, {’text’: ’RoyalRacism’, ’indices’: [80, 92]}]
## 3126 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3127 [{’text’: ’Commonwealth’, ’indices’: [68, 81]}, {’text’: ’CANZUK’, ’indices’: [82, 89]}, {’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}]
## 3128 [{’text’: ’Commonwealth’, ’indices’: [68, 81]}, {’text’: ’CANZUK’, ’indices’: [82, 89]}, {’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}]
## 3129 [{’text’: ’MeghanAndHarry’, ’indices’: [82, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 3130 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’TrailerTrash’, ’indices’: [80, 93]}, {’text’: ’Hillbillies’, ’indices’: [94, 106]}]
## 3131 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’TrailerTrash’, ’indices’: [80, 93]}, {’text’: ’Hillbillies’, ’indices’: [94, 106]}]
## 3132 []
## 3133 []
## 3134 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’MeghanAndHarry’, ’indices’: [73, 88]}, {’text’: ’OprahMeghanHarry’, ’indices’: [89, 106]}]
## 3135 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’MeghanAndHarry’, ’indices’: [73, 88]}, {’text’: ’OprahMeghanHarry’, ’indices’: [89, 106]}]
## 3136 []
## 3137 []
## 3138 []
## 3139 [{’text’: ’MeghanMarkle’, ’indices’: [128, 141]}]
## 3140 [{’text’: ’MeghanMarkle’, ’indices’: [128, 141]}]
## 3141 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’JussieSmollett’, ’indices’: [32, 47]}, {’text’: ’NoOneBelievesYou’, ’indices’: [64, 81]}]
## 3142 []
## 3143 []
## 3144 []
## 3145 []
## 3146 []
## 3147 [{’text’: ’PrinceHarry’, ’indices’: [44, 56]}]
## 3148 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 3149 [{’text’: ’MeganandHarry’, ’indices’: [101, 115]}]
## 3150 [{’text’: ’MeganandHarry’, ’indices’: [101, 115]}]
375
## 3151 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 3152 [{’text’: ’Megxit’, ’indices’: [85, 92]}, {’text’: ’ThomasMarkle’, ’indices’: [93, 106]}]
## 3153 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 3154 []
## 3155 []
## 3156 []
## 3157 []
## 3158 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 3159 [{’text’: ’MeghanAndHarry’, ’indices’: [5, 20]}, {’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 3160 [{’text’: ’MeghanAndHarry’, ’indices’: [5, 20]}, {’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 3161 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 3162 [{’text’: ’PiersMorgan’, ’indices’: [31, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 3163 []
## 3164 []
## 3165 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [53, 75]}]
## 3166 [{’text’: ’Marr’, ’indices’: [22, 27]}, {’text’: ’nhspayrise’, ’indices’: [28, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’BackToSchool’, ’indices’: [54, 67]}]
## 3167 [{’text’: ’Marr’, ’indices’: [22, 27]}, {’text’: ’nhspayrise’, ’indices’: [28, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’BackToSchool’, ’indices’: [54, 67]}]
## 3168 [{’text’: ’Marr’, ’indices’: [22, 27]}, {’text’: ’nhspayrise’, ’indices’: [28, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [40, 53]}, {’text’: ’BackToSchool’, ’indices’: [54, 67]}]
## 3169 [{’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 3170 [{’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 3171 []
## 3172 [{’text’: ’newsmax’, ’indices’: [26, 34]}, {’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 3173 [{’text’: ’meghanmarkle’, ’indices’: [28, 41]}, {’text’: ’princeharry’, ’indices’: [56, 68]}]
## 3174 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 3175 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 3176 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 3177 []
## 3178 [{’text’: ’BuckinghamPalace’, ’indices’: [13, 30]}, {’text’: ’RoyalFamily’, ’indices’: [31, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}, {’text’: ’MeghanAndHarry’, ’indices’: [72, 87]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [88, 110]}]
## 3179 []
## 3180 []
## 3181 []
## 3182 []
## 3183 []
## 3184 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 3185 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 3186 [{’text’: ’TheCrown’, ’indices’: [76, 85]}, {’text’: ’TheQueen’, ’indices’: [86, 95]}]
## 3187 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 3188 []
## 3189 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 3190 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’MeghanAndHarry’, ’indices’: [61, 76]}, {’text’: ’TheTig’, ’indices’: [77, 84]}]
## 3191 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’MeghanAndHarry’, ’indices’: [98, 113]}]
## 3192 [{’text’: ’MeghanAndHarry’, ’indices’: [59, 74]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 3193 [{’text’: ’MeghanMarkle’, ’indices’: [106, 119]}]
## 3194 []
## 3195 []
## 3196 [{’text’: ’dontbuythesun’, ’indices’: [58, 72]}]
## 3197 [{’text’: ’dontbuythesun’, ’indices’: [58, 72]}]
## 3198 [{’text’: ’dontbuythesun’, ’indices’: [58, 72]}]
## 3199 []
## 3200 []
## 3201 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3202 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3203 [{’text’: ’OprahMeghanHarry’, ’indices’: [89, 106]}]
## 3204 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’InternationalWomensDay’, ’indices’: [65, 88]}]
376
## 3205 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 3206 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 3207 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 3208 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 3209 []
## 3210 []
## 3211 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 3212 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 3213 []
## 3214 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’Meghan’, ’indices’: [96, 103]}]
## 3215 [{’text’: ’meghanmarkle’, ’indices’: [36, 49]}, {’text’: ’nocajonesharry’, ’indices’: [54, 69]}]
## 3216 [{’text’: ’meghanmarkle’, ’indices’: [34, 47]}]
## 3217 []
## 3218 []
## 3219 []
## 3220 []
## 3221 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 3222 []
## 3223 [{’text’: ’royalFamily’, ’indices’: [57, 69]}]
## 3224 [{’text’: ’PrinceHarry’, ’indices’: [37, 49]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}, {’text’: ’HarryandMegan’, ’indices’: [64, 78]}, {’text’: ’Ofrah’, ’indices’: [79, 85]}, {’text’: ’Ofrah’, ’indices’: [86, 92]}, {’text’: ’Toxicpres’, ’indices’: [93, 103]}, {’text’: ’Royals’, ’indices’: [104, 111]}]
## 3225 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 3226 []
## 3227 []
## 3228 []
## 3229 [{’text’: ’goodmorningbritain’, ’indices’: [58, 77]}]
## 3230 [{’text’: ’MeghanMarkle’, ’indices’: [8, 21]}]
## 3231 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3232 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 3233 [{’text’: ’PiersMorgan’, ’indices’: [50, 62]}]
## 3234 [{’text’: ’PiersMorgan’, ’indices’: [50, 62]}]
## 3235 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 3236 []
## 3237 []
## 3238 []
## 3239 []
## 3240 [{’text’: ’meghanmarkle’, ’indices’: [47, 60]}]
## 3241 [{’text’: ’mentalhealth’, ’indices’: [52, 65]}]
## 3242 []
## 3243 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 3244 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 3245 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 3246 []
## 3247 []
## 3248 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’PrinceHarry’, ’indices’: [44, 56]}]
## 3249 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [44, 66]}]
## 3250 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 3251 [{’text’: ’KateMiddleton’, ’indices’: [26, 40]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 3252 []
## 3253 []
## 3254 []
## 3255 []
## 3256 []
## 3257 [{’text’: ’OprahMeghanHarryAfrica’, ’indices’: [77, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3258 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
377
## 3259 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}, {’text’: ’MeghanAndHarry’, ’indices’: [63, 78]}]
## 3260 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}, {’text’: ’MeghanAndHarry’, ’indices’: [63, 78]}]
## 3261 []
## 3262 []
## 3263 []
## 3264 []
## 3265 []
## 3266 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3267 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3268 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3269 []
## 3270 []
## 3271 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’PrinceHarry’, ’indices’: [45, 57]}, {’text’: ’RoyalFamily’, ’indices’: [65, 77]}, {’text’: ’racism’, ’indices’: [81, 88]}]
## 3272 [{’text’: ’KateMiddleton’, ’indices’: [14, 28]}]
## 3273 [{’text’: ’KateMiddleton’, ’indices’: [14, 28]}]
## 3274 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’ArchiWell’, ’indices’: [99, 109]}]
## 3275 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’ArchiWell’, ’indices’: [99, 109]}]
## 3276 []
## 3277 []
## 3278 []
## 3279 [{’text’: ’England’, ’indices’: [0, 8]}, {’text’: ’USA’, ’indices’: [9, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [15, 37]}]
## 3280 [{’text’: ’MeghanAndHarry’, ’indices’: [0, 15]}, {’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [30, 52]}, {’text’: ’PiersMorgan’, ’indices’: [124, 136]}]
## 3281 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 3282 [{’text’: ’Harry’, ’indices’: [26, 32]}, {’text’: ’London’, ’indices’: [55, 62]}]
## 3283 [{’text’: ’gmb’, ’indices’: [0, 4]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [92, 114]}]
## 3284 [{’text’: ’abolishmegan’, ’indices’: [80, 93]}, {’text’: ’blackwitch’, ’indices’: [94, 105]}, {’text’: ’MeghanMarkle’, ’indices’: [106, 119]}]
## 3285 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3286 []
## 3287 []
## 3288 []
## 3289 [{’text’: ’MEGXIT’, ’indices’: [55, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’MeghanMarkleIsALiar’, ’indices’: [77, 97]}]
## 3290 [{’text’: ’MEGXIT’, ’indices’: [55, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’MeghanMarkleIsALiar’, ’indices’: [77, 97]}]
## 3291 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 3292 [{’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’MeghanHarry’, ’indices’: [86, 98]}]
## 3293 [{’text’: ’HarryandMeghan’, ’indices’: [68, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3294 [{’text’: ’HarryandMeghan’, ’indices’: [68, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3295 [{’text’: ’HarryandMeghan’, ’indices’: [68, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3296 [{’text’: ’HarryandMeghan’, ’indices’: [68, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 3297 [{’text’: ’meghanmarkle’, ’indices’: [35, 48]}]
## 3298 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3299 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3300 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3301 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3302 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3303 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3304 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3305 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3306 []
## 3307 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 3308 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 3309 []
## 3310 []
## 3311 []
## 3312 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
378
## 3313 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 3314 [{’text’: ’PrinceHarry’, ’indices’: [22, 34]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 3315 [{’text’: ’OprahMeghanHarry’, ’indices’: [80, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 3316 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’PrinceHarry’, ’indices’: [95, 107]}]
## 3317 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 3318 [{’text’: ’MeghanAndHarry’, ’indices’: [17, 32]}, {’text’: ’CNN’, ’indices’: [104, 108]}, {’text’: ’CBS’, ’indices’: [109, 113]}]
## 3319 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3320 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3321 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3322 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [76, 98]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 3323 [{’text’: ’Royal’, ’indices’: [18, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 3324 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 3325 []
## 3326 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’MeghanAndHarry’, ’indices’: [27, 42]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [43, 65]}, {’text’: ’Charles’, ’indices’: [66, 74]}, {’text’: ’piersmorganIsABully’, ’indices’: [90, 110]}]
## 3327 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’MeghanAndHarry’, ’indices’: [27, 42]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [43, 65]}, {’text’: ’Charles’, ’indices’: [66, 74]}, {’text’: ’piersmorganIsABully’, ’indices’: [90, 110]}]
## 3328 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’MeghanAndHarry’, ’indices’: [27, 42]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [43, 65]}, {’text’: ’Charles’, ’indices’: [66, 74]}, {’text’: ’piersmorganIsABully’, ’indices’: [90, 110]}]
## 3329 []
## 3330 []
## 3331 []
## 3332 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3333 [{’text’: ’larryking’, ’indices’: [96, 106]}]
## 3334 [{’text’: ’PrinceWilliam’, ’indices’: [0, 14]}, {’text’: ’PrinceHarry’, ’indices’: [27, 39]}, {’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 3335 []
## 3336 []
## 3337 []
## 3338 []
## 3339 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’PrincessEugenie’, ’indices’: [63, 79]}, {’text’: ’PrinceHarry’, ’indices’: [95, 107]}]
## 3340 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 3341 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 3342 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 3343 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 3344 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’MARRY’, ’indices’: [77, 83]}, {’text’: ’MeghanHarryOprah’, ’indices’: [84, 101]}]
## 3345 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’MARRY’, ’indices’: [77, 83]}, {’text’: ’MeghanHarryOprah’, ’indices’: [84, 101]}]
## 3346 []
## 3347 []
## 3348 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’PrinceHarry’, ’indices’: [30, 42]}, {’text’: ’BingeNew’, ’indices’: [106, 115]}]
## 3349 []
## 3350 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3351 []
## 3352 [{’text’: ’TheHills’, ’indices’: [64, 73]}, {’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
## 3353 [{’text’: ’TheHills’, ’indices’: [64, 73]}, {’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
## 3354 [{’text’: ’RoyalFamily’, ’indices’: [55, 67]}]
## 3355 []
## 3356 [{’text’: ’PrinceHarry’, ’indices’: [21, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 3357 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’disbelief’, ’indices’: [93, 103]}]
## 3358 []
## 3359 [{’text’: ’sussexsquad’, ’indices’: [31, 43]}, {’text’: ’meghanmarkle’, ’indices’: [70, 83]}]
## 3360 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 3361 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 3362 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 3363 [{’text’: ’Meghan’, ’indices’: [73, 80]}]
## 3364 [{’text’: ’Meghan’, ’indices’: [73, 80]}]
## 3365 [{’text’: ’Meghan’, ’indices’: [73, 80]}]
## 3366 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
379
## 3367 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 3368 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 3369 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 3370 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 3371 []
## 3372 []
## 3373 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 3374 []
## 3375 []
## 3376 []
## 3377 []
## 3378 []
## 3379 []
## 3380 []
## 3381 []
## 3382 []
## 3383 [{’text’: ’SkyNewsAust’, ’indices’: [30, 42]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [91, 113]}]
## 3384 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 3385 []
## 3386 [{’text’: ’princeharry’, ’indices’: [28, 40]}, {’text’: ’princewilliam’, ’indices’: [54, 68]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}, {’text’: ’KateMiddleton’, ’indices’: [96, 110]}]
## 3387 [{’text’: ’princeharry’, ’indices’: [28, 40]}, {’text’: ’princewilliam’, ’indices’: [54, 68]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}, {’text’: ’KateMiddleton’, ’indices’: [96, 110]}]
## 3388 []
## 3389 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 3390 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 3391 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}, {’text’: ’Archie’, ’indices’: [49, 56]}, {’text’: ’MeghanAndHarry’, ’indices’: [104, 119]}, {’text’: ’OprahHarryMeghan’, ’indices’: [120, 137]}]
## 3392 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [35, 57]}, {’text’: ’MeghanAndHarry’, ’indices’: [58, 73]}, {’text’: ’PrincessDiana’, ’indices’: [74, 88]}, {’text’: ’PrinceAndrew’, ’indices’: [89, 102]}]
## 3393 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [35, 57]}, {’text’: ’MeghanAndHarry’, ’indices’: [58, 73]}, {’text’: ’PrincessDiana’, ’indices’: [74, 88]}, {’text’: ’PrinceAndrew’, ’indices’: [89, 102]}]
## 3394 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [61, 83]}, {’text’: ’AEWRevolution’, ’indices’: [85, 99]}]
## 3395 [{’text’: ’NinakiPriddy’, ’indices’: [44, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}]
## 3396 [{’text’: ’NinakiPriddy’, ’indices’: [44, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}]
## 3397 [{’text’: ’piersmorgan’, ’indices’: [0, 12]}, {’text’: ’GMB’, ’indices’: [23, 27]}, {’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’Piers’, ’indices’: [46, 52]}]
## 3398 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 3399 []
## 3400 []
## 3401 []
## 3402 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 3403 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 3404 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [0, 22]}, {’text’: ’outrage’, ’indices’: [24, 32]}, {’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 3405 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3406 []
## 3407 []
## 3408 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 3409 [{’text’: ’OprahMeghanHarry’, ’indices’: [52, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’PrinceHarry’, ’indices’: [91, 103]}]
## 3410 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 3411 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 3412 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}, {’text’: ’OprahMeghanHarry’, ’indices’: [80, 97]}, {’text’: ’bravo’, ’indices’: [98, 104]}]
## 3413 [{’text’: ’BritishPieWeek’, ’indices’: [94, 109]}]
## 3414 [{’text’: ’BritishPieWeek’, ’indices’: [94, 109]}]
## 3415 [{’text’: ’BritishPieWeek’, ’indices’: [94, 109]}]
## 3416 [{’text’: ’BritishPieWeek’, ’indices’: [94, 109]}]
## 3417 [{’text’: ’MentalHealthAwareness’, ’indices’: [29, 51]}, {’text’: ’suicide’, ’indices’: [52, 60]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}, {’text’: ’MeghanMarkle’, ’indices’: [114, 127]}]
## 3418 []
## 3419 [{’text’: ’meghanMarkle’, ’indices’: [46, 59]}, {’text’: ’MentalHealth’, ’indices’: [85, 98]}]
## 3420 [{’text’: ’meghanMarkle’, ’indices’: [46, 59]}, {’text’: ’MentalHealth’, ’indices’: [85, 98]}]
380
## 3421 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [99, 121]}, {’text’: ’MeghanMarkle’, ’indices’: [122, 135]}]
## 3422 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’JussieSmollett’, ’indices’: [33, 48]}]
## 3423 []
## 3424 []
## 3425 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [20, 42]}, {’text’: ’Meghan’, ’indices’: [43, 50]}, {’text’: ’MeghanMarkle’, ’indices’: [51, 64]}, {’text’: ’meangirls’, ’indices’: [65, 75]}]
## 3426 []
## 3427 []
## 3428 []
## 3429 [{’text’: ’piersmorgan’, ’indices’: [65, 77]}]
## 3430 [{’text’: ’piersmorgan’, ’indices’: [65, 77]}]
## 3431 [{’text’: ’piersmorgan’, ’indices’: [65, 77]}]
## 3432 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3433 [{’text’: ’RoyalFamily’, ’indices’: [47, 59]}, {’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’MeghanAndHarry’, ’indices’: [74, 89]}, {’text’: ’racism’, ’indices’: [90, 97]}]
## 3434 []
## 3435 []
## 3436 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 3437 [{’text’: ’racism’, ’indices’: [36, 43]}]
## 3438 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’MeghanAndHarry’, ’indices’: [91, 106]}]
## 3439 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’MeghanAndHarry’, ’indices’: [91, 106]}]
## 3440 []
## 3441 []
## 3442 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 3443 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 3444 [{’text’: ’MeghanHarryOprah’, ’indices’: [60, 77]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [78, 100]}]
## 3445 [{’text’: ’MeghanMarkle’, ’indices’: [125, 138]}]
## 3446 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 3447 []
## 3448 []
## 3449 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’MeghanAndHarry’, ’indices’: [49, 64]}]
## 3450 []
## 3451 []
## 3452 [{’text’: ’TheFirm’, ’indices’: [89, 97]}]
## 3453 []
## 3454 []
## 3455 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’Striptheirtitles’, ’indices’: [95, 112]}]
## 3456 []
## 3457 [{’text’: ’shesanactress’, ’indices’: [60, 74]}, {’text’: ’playingitwell’, ’indices’: [75, 89]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}, {’text’: ’MeghanMarkle’, ’indices’: [106, 119]}, {’text’: ’herdad’, ’indices’: [120, 127]}, {’text’: ’DramaAlert’, ’indices’: [128, 139]}]
## 3458 []
## 3459 []
## 3460 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’PrinceHarry’, ’indices’: [102, 114]}, {’text’: ’Oprah’, ’indices’: [115, 121]}]
## 3461 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’PrinceHarry’, ’indices’: [102, 114]}, {’text’: ’Oprah’, ’indices’: [115, 121]}]
## 3462 []
## 3463 []
## 3464 [{’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 3465 [{’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 3466 [{’text’: ’NBC’, ’indices’: [38, 42]}, {’text’: ’BlackTwitter’, ’indices’: [43, 56]}, {’text’: ’blackface’, ’indices’: [57, 67]}, {’text’: ’RacismIsNotAnOpinion’, ’indices’: [68, 89]}]
## 3467 [{’text’: ’OprahMeghanHarry’, ’indices’: [57, 74]}]
## 3468 [{’text’: ’OprahMeghanHarry’, ’indices’: [57, 74]}]
## 3469 []
## 3470 []
## 3471 []
## 3472 []
## 3473 []
## 3474 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}, {’text’: ’princeharry’, ’indices’: [14, 26]}, {’text’: ’Oprah’, ’indices’: [27, 33]}]
381
## 3475 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 3476 []
## 3477 []
## 3478 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’RoyalFamily’, ’indices’: [78, 90]}]
## 3479 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’RoyalFamily’, ’indices’: [78, 90]}]
## 3480 [{’text’: ’TheCrown’, ’indices’: [54, 63]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [92, 114]}]
## 3481 [{’text’: ’PrinceHarry’, ’indices’: [93, 105]}]
## 3482 [{’text’: ’PrinceHarry’, ’indices’: [83, 95]}]
## 3483 [{’text’: ’MeghanMarkle’, ’indices’: [125, 138]}]
## 3484 [{’text’: ’internationalwomensday2021’, ’indices’: [16, 43]}, {’text’: ’AbolishTheMonarcy’, ’indices’: [44, 62]}, {’text’: ’Meghan’, ’indices’: [63, 70]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’ChooseToChallenge2021’, ’indices’: [85, 107]}]
## 3485 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}, {’text’: ’RachelZane’, ’indices’: [76, 87]}]
## 3486 [{’text’: ’BBC’, ’indices’: [59, 63]}]
## 3487 [{’text’: ’Shorts’, ’indices’: [76, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’Funko’, ’indices’: [98, 104]}, {’text’: ’Meghan’, ’indices’: [105, 112]}]
## 3488 [{’text’: ’Shorts’, ’indices’: [76, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’Funko’, ’indices’: [98, 104]}, {’text’: ’Meghan’, ’indices’: [105, 112]}]
## 3489 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 3490 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 3491 []
## 3492 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 3493 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 3494 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 3495 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 3496 []
## 3497 []
## 3498 []
## 3499 [{’text’: ’interview’, ’indices’: [45, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’Harry’, ’indices’: [81, 87]}]
## 3500 [{’text’: ’PrinceHarry’, ’indices’: [17, 29]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 3501 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 3502 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 3503 []
## 3504 []
## 3505 [{’text’: ’Meghan’, ’indices’: [82, 89]}]
## 3506 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 3507 []
## 3508 []
## 3509 [{’text’: ’racism’, ’indices’: [103, 110]}]
## 3510 [{’text’: ’gmb’, ’indices’: [90, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [109, 131]}]
## 3511 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 3512 []
## 3513 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 3514 []
## 3515 []
## 3516 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 3517 [{’text’: ’DeFi’, ’indices’: [72, 77]}, {’text’: ’GenerationEquality’, ’indices’: [78, 97]}]
## 3518 [{’text’: ’MeghanMarkle’, ’indices’: [127, 140]}]
## 3519 []
## 3520 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}]
## 3521 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 3522 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 3523 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 3524 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 3525 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 3526 []
## 3527 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’WomensHistoryMonth’, ’indices’: [89, 108]}]
## 3528 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
382
## 3529 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 3530 []
## 3531 []
## 3532 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}, {’text’: ’MeghanAndHarry’, ’indices’: [114, 129]}]
## 3533 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}, {’text’: ’MentalHealth’, ’indices’: [61, 74]}, {’text’: ’BuckinghamPalace’, ’indices’: [89, 106]}]
## 3534 [{’text’: ’PrinceHarry’, ’indices’: [90, 102]}]
## 3535 [{’text’: ’PrinceHarry’, ’indices’: [90, 102]}]
## 3536 [{’text’: ’PrinceHarry’, ’indices’: [90, 102]}]
## 3537 []
## 3538 []
## 3539 [{’text’: ’TheCrown’, ’indices’: [51, 60]}, {’text’: ’OprahMeghanHarry’, ’indices’: [75, 92]}, {’text’: ’MeghanAndHarry’, ’indices’: [93, 108]}]
## 3540 [{’text’: ’TheCrown’, ’indices’: [51, 60]}, {’text’: ’OprahMeghanHarry’, ’indices’: [75, 92]}, {’text’: ’MeghanAndHarry’, ’indices’: [93, 108]}]
## 3541 []
## 3542 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 3543 [{’text’: ’OprahMeghanHarry’, ’indices’: [47, 64]}]
## 3544 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3545 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3546 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 3547 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}]
## 3548 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 3549 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 3550 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 3551 [{’text’: ’Baldrick’, ’indices’: [31, 40]}, {’text’: ’MeghanAndHarry’, ’indices’: [59, 74]}, {’text’: ’piersmorgan’, ’indices’: [75, 87]}, {’text’: ’piersmorganIsABully’, ’indices’: [88, 108]}, {’text’: ’GMB’, ’indices’: [109, 113]}]
## 3552 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’Royals’, ’indices’: [73, 80]}, {’text’: ’royalty’, ’indices’: [81, 89]}, {’text’: ’RoyalFamily’, ’indices’: [90, 102]}]
## 3553 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’Royals’, ’indices’: [73, 80]}, {’text’: ’royalty’, ’indices’: [81, 89]}, {’text’: ’RoyalFamily’, ’indices’: [90, 102]}]
## 3554 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’MeghanAndHarry’, ’indices’: [69, 84]}, {’text’: ’OprahHarryMeghan’, ’indices’: [85, 102]}]
## 3555 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’Oprah’, ’indices’: [101, 107]}]
## 3556 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’Oprah’, ’indices’: [101, 107]}]
## 3557 []
## 3558 []
## 3559 []
## 3560 []
## 3561 []
## 3562 []
## 3563 []
## 3564 []
## 3565 []
## 3566 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 3567 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 3568 [{’text’: ’shadyassroyals’, ’indices’: [14, 29]}, {’text’: ’OprahMeghanHarry’, ’indices’: [30, 47]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [48, 70]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}]
## 3569 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’OprahMeghanHarry’, ’indices’: [60, 77]}]
## 3570 []
## 3571 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 3572 [{’text’: ’MeghanAndHarry’, ’indices’: [51, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’oprah’, ’indices’: [81, 87]}, {’text’: ’KateMiddleton’, ’indices’: [88, 102]}, {’text’: ’kate’, ’indices’: [103, 108]}]
## 3573 [{’text’: ’MeghanAndHarry’, ’indices’: [51, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’oprah’, ’indices’: [81, 87]}, {’text’: ’KateMiddleton’, ’indices’: [88, 102]}, {’text’: ’kate’, ’indices’: [103, 108]}]
## 3574 [{’text’: ’MeghanAndHarry’, ’indices’: [51, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’oprah’, ’indices’: [81, 87]}, {’text’: ’KateMiddleton’, ’indices’: [88, 102]}, {’text’: ’kate’, ’indices’: [103, 108]}]
## 3575 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’WeGotYouSis’, ’indices’: [38, 50]}]
## 3576 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’Harry’, ’indices’: [51, 57]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [83, 105]}]
## 3577 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 3578 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 3579 []
## 3580 [{’text’: ’Meghan’, ’indices’: [0, 7]}, {’text’: ’nyt’, ’indices’: [8, 12]}, {’text’: ’mar8_21’, ’indices’: [13, 21]}, {’text’: ’nytimes’, ’indices’: [28, 36]}, {’text’: ’daily’, ’indices’: [37, 43]}, {’text’: ’news’, ’indices’: [44, 49]}, {’text’: ’royal’, ’indices’: [85, 91]}, {’text’: ’life’, ’indices’: [92, 97]}]
## 3581 [{’text’: ’Slovakian’, ’indices’: [37, 47]}, {’text’: ’PrinceHarry’, ’indices’: [85, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [104, 117]}]
## 3582 [{’text’: ’Slovakian’, ’indices’: [37, 47]}, {’text’: ’PrinceHarry’, ’indices’: [85, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [104, 117]}]
383
## 3583 []
## 3584 []
## 3585 []
## 3586 []
## 3587 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 3588 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3589 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3590 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3591 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [71, 93]}]
## 3592 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’MeghanAndHarry’, ’indices’: [48, 63]}]
## 3593 [{’text’: ’Disney’, ’indices’: [108, 115]}]
## 3594 []
## 3595 []
## 3596 []
## 3597 [{’text’: ’PrincessLatifa’, ’indices’: [54, 69]}]
## 3598 [{’text’: ’PrincessLatifa’, ’indices’: [54, 69]}]
## 3599 [{’text’: ’PrincessLatifa’, ’indices’: [54, 69]}]
## 3600 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [44, 66]}, {’text’: ’MeghanAndHarry’, ’indices’: [67, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’BJP’, ’indices’: [97, 101]}]
## 3601 [{’text’: ’PuffTheMagicDragon’, ’indices’: [26, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’PrinceHarry’, ’indices’: [60, 72]}, {’text’: ’Oprah’, ’indices’: [73, 79]}, {’text’: ’Baltimore’, ’indices’: [80, 90]}]
## 3602 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 3603 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 3604 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 3605 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’theroyalfamily’, ’indices’: [101, 116]}]
## 3606 [{’text’: ’BreakingNews’, ’indices’: [0, 13]}]
## 3607 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 3608 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 3609 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 3610 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3611 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}, {’text’: ’Animals’, ’indices’: [45, 53]}, {’text’: ’Birds’, ’indices’: [54, 60]}]
## 3612 []
## 3613 []
## 3614 []
## 3615 []
## 3616 []
## 3617 [{’text’: ’WomensDay’, ’indices’: [34, 44]}, {’text’: ’Woman’, ’indices’: [55, 61]}, {’text’: ’ScottFraud’, ’indices’: [68, 79]}]
## 3618 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’OprahMeghanHarry’, ’indices’: [61, 78]}, {’text’: ’MentalHealthAwareness’, ’indices’: [79, 101]}]
## 3619 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 3620 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 3621 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’PrinceHarry’, ’indices’: [96, 108]}]
## 3622 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’PrinceHarry’, ’indices’: [96, 108]}]
## 3623 [{’text’: ’Harry’, ’indices’: [57, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3624 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’PrinceHarry’, ’indices’: [42, 54]}]
## 3625 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’PrinceHarry’, ’indices’: [42, 54]}]
## 3626 [{’text’: ’PrincessDiana’, ’indices’: [29, 43]}, {’text’: ’cinderella’, ’indices’: [44, 55]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [56, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’PrinceHarry’, ’indices’: [93, 105]}]
## 3627 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’MeghanAndHarry’, ’indices’: [77, 92]}]
## 3628 [{’text’: ’DrawPiersMorgan’, ’indices’: [77, 93]}, {’text’: ’PiersMorgan’, ’indices’: [94, 106]}]
## 3629 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’OprahInterview’, ’indices’: [97, 112]}]
## 3630 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3631 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3632 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3633 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3634 [{’text’: ’PiersMorgan’, ’indices’: [30, 42]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’PrinceHarry’, ’indices’: [57, 69]}]
## 3635 [{’text’: ’PiersMorgan’, ’indices’: [30, 42]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’PrinceHarry’, ’indices’: [57, 69]}]
## 3636 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}]
384
## 3637 [{’text’: ’Oprah’, ’indices’: [24, 30]}, {’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 3638 [{’text’: ’PinochioPrincess’, ’indices’: [24, 41]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 3639 []
## 3640 []
## 3641 []
## 3642 []
## 3643 []
## 3644 []
## 3645 []
## 3646 []
## 3647 []
## 3648 []
## 3649 []
## 3650 []
## 3651 []
## 3652 []
## 3653 []
## 3654 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 3655 []
## 3656 []
## 3657 []
## 3658 []
## 3659 []
## 3660 []
## 3661 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 3662 []
## 3663 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 3664 []
## 3665 []
## 3666 []
## 3667 []
## 3668 []
## 3669 []
## 3670 []
## 3671 []
## 3672 [{’text’: ’SelfVictimization’, ’indices’: [15, 33]}, {’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’Trumps’, ’indices’: [62, 69]}]
## 3673 []
## 3674 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 3675 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 3676 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 3677 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 3678 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 3679 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 3680 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3681 [{’text’: ’truth’, ’indices’: [13, 19]}, {’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 3682 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3683 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3684 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’MeghanAndHarry’, ’indices’: [70, 85]}]
## 3685 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’MeghanAndHarry’, ’indices’: [70, 85]}]
## 3686 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3687 [{’text’: ’RoyalFamily’, ’indices’: [14, 26]}, {’text’: ’RoyalFamily’, ’indices’: [84, 96]}]
## 3688 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 3689 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 3690 [{’text’: ’Royals’, ’indices’: [32, 39]}]
385
## 3691 []
## 3692 []
## 3693 []
## 3694 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 3695 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 3696 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 3697 [{’text’: ’OprahMeghanHarry’, ’indices’: [102, 119]}]
## 3698 []
## 3699 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 3700 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3701 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3702 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3703 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3704 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3705 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}, {’text’: ’Beyonce’, ’indices’: [90, 98]}, {’text’: ’OprahMeghanHarry’, ’indices’: [99, 116]}]
## 3706 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3707 [{’text’: ’WallisSimpson’, ’indices’: [23, 37]}, {’text’: ’Harry’, ’indices’: [78, 84]}]
## 3708 [{’text’: ’WallisSimpson’, ’indices’: [23, 37]}, {’text’: ’Harry’, ’indices’: [78, 84]}]
## 3709 []
## 3710 []
## 3711 []
## 3712 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3713 []
## 3714 []
## 3715 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [77, 99]}]
## 3716 []
## 3717 [{’text’: ’SerenaWilliams’, ’indices’: [13, 28]}, {’text’: ’UK’, ’indices’: [57, 60]}]
## 3718 [{’text’: ’meghanmarkle’, ’indices’: [45, 58]}]
## 3719 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3720 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3721 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 3722 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’PrinceHarry’, ’indices’: [73, 85]}]
## 3723 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3724 []
## 3725 []
## 3726 []
## 3727 []
## 3728 [{’text’: ’Suckers’, ’indices’: [32, 40]}, {’text’: ’markled’, ’indices’: [54, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 3729 []
## 3730 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 3731 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’Misogynoir’, ’indices’: [82, 93]}, {’text’: ’StandwithMeghan’, ’indices’: [107, 123]}]
## 3732 [{’text’: ’thetalk’, ’indices’: [4, 12]}, {’text’: ’meghanmarkle’, ’indices’: [82, 95]}]
## 3733 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 3734 []
## 3735 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 3736 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 3737 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 3738 []
## 3739 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 3740 [{’text’: ’familyroyal’, ’indices’: [38, 50]}, {’text’: ’UK’, ’indices’: [108, 111]}]
## 3741 [{’text’: ’familyroyal’, ’indices’: [38, 50]}, {’text’: ’UK’, ’indices’: [108, 111]}]
## 3742 [{’text’: ’markled’, ’indices’: [45, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 3743 [{’text’: ’OprahMeghanHarry’, ’indices’: [69, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 3744 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’MeghanAndHarry’, ’indices’: [100, 115]}]
386
## 3745 [{’text’: ’British’, ’indices’: [11, 19]}, {’text’: ’racism’, ’indices’: [43, 50]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 3746 [{’text’: ’MeghanMarkle’, ’indices’: [42, 55]}]
## 3747 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 3748 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 3749 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 3750 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3751 [{’text’: ’Oprah’, ’indices’: [13, 19]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [53, 75]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 3752 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 3753 []
## 3754 []
## 3755 [{’text’: ’SelfVictimization’, ’indices’: [26, 44]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’Trumps’, ’indices’: [73, 80]}]
## 3756 [{’text’: ’SelfVictimization’, ’indices’: [26, 44]}, {’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’Trumps’, ’indices’: [73, 80]}]
## 3757 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 3758 []
## 3759 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’piersmorgan’, ’indices’: [77, 89]}]
## 3760 []
## 3761 []
## 3762 []
## 3763 []
## 3764 []
## 3765 []
## 3766 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 3767 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3768 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 3769 []
## 3770 [{’text’: ’oprahmeghanharry’, ’indices’: [43, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’HarryMeghanOprah’, ’indices’: [76, 93]}]
## 3771 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 3772 [{’text’: ’meganandharry’, ’indices’: [83, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}, {’text’: ’boners’, ’indices’: [112, 119]}]
## 3773 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3774 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 3775 []
## 3776 [{’text’: ’C’, ’indices’: [44, 46]}, {’text’: ’P’, ’indices’: [51, 53]}, {’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 3777 []
## 3778 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3779 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3780 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3781 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 3782 []
## 3783 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [26, 48]}, {’text’: ’MeghanAndHarry’, ’indices’: [49, 64]}, {’text’: ’PrincessDiana’, ’indices’: [65, 79]}, {’text’: ’PrinceAndrew’, ’indices’: [80, 93]}, {’text’: ’OprahWinfrey’, ’indices’: [94, 107]}]
## 3784 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 3785 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 3786 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 3787 []
## 3788 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 3789 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 3790 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 3791 [{’text’: ’drhilary’, ’indices’: [19, 28]}, {’text’: ’goodmorningbritain’, ’indices’: [68, 87]}, {’text’: ’PiersMorgan’, ’indices’: [103, 115]}]
## 3792 [{’text’: ’drhilary’, ’indices’: [19, 28]}, {’text’: ’goodmorningbritain’, ’indices’: [68, 87]}, {’text’: ’PiersMorgan’, ’indices’: [103, 115]}]
## 3793 [{’text’: ’drhilary’, ’indices’: [19, 28]}, {’text’: ’goodmorningbritain’, ’indices’: [68, 87]}, {’text’: ’PiersMorgan’, ’indices’: [103, 115]}]
## 3794 []
## 3795 []
## 3796 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3797 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3798 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
387
## 3799 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 3800 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’Disney’, ’indices’: [65, 72]}]
## 3801 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’Disney’, ’indices’: [65, 72]}]
## 3802 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’Disney’, ’indices’: [65, 72]}]
## 3803 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 3804 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3805 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}, {’text’: ’HarryandMeghan’, ’indices’: [89, 104]}, {’text’: ’bullying’, ’indices’: [105, 114]}]
## 3806 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’Andrew’, ’indices’: [74, 81]}]
## 3807 [{’text’: ’MeghanAndHarry’, ’indices’: [95, 110]}]
## 3808 [{’text’: ’MeghanAndHarry’, ’indices’: [95, 110]}]
## 3809 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3810 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [78, 100]}]
## 3811 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [78, 100]}]
## 3812 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [78, 100]}]
## 3813 []
## 3814 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 3815 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 3816 []
## 3817 []
## 3818 []
## 3819 []
## 3820 []
## 3821 []
## 3822 []
## 3823 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 3824 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}]
## 3825 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 3826 []
## 3827 []
## 3828 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 3829 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 3830 []
## 3831 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 3832 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}, {’text’: ’PrinceHarry’, ’indices’: [52, 64]}]
## 3833 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}]
## 3834 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’racist’, ’indices’: [64, 71]}, {’text’: ’MeghanAndHarry’, ’indices’: [81, 96]}]
## 3835 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’racist’, ’indices’: [64, 71]}, {’text’: ’MeghanAndHarry’, ’indices’: [81, 96]}]
## 3836 []
## 3837 [{’text’: ’dianaknew’, ’indices’: [38, 48]}, {’text’: ’OprahMeghanHarry’, ’indices’: [49, 66]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [67, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3838 [{’text’: ’dianaknew’, ’indices’: [38, 48]}, {’text’: ’OprahMeghanHarry’, ’indices’: [49, 66]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [67, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3839 []
## 3840 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3841 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3842 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 3843 []
## 3844 []
## 3845 []
## 3846 []
## 3847 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 3848 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 3849 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 3850 [{’text’: ’ThomasMarkle’, ’indices’: [15, 28]}, {’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3851 [{’text’: ’DramaQueen’, ’indices’: [54, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 3852 [{’text’: ’DramaQueen’, ’indices’: [54, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
388
## 3853 [{’text’: ’MEGXIT’, ’indices’: [94, 101]}, {’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 3854 [{’text’: ’MEGXIT’, ’indices’: [94, 101]}, {’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 3855 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}, {’text’: ’HarryandMeghan’, ’indices’: [25, 40]}]
## 3856 []
## 3857 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 3858 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’PrinceHarry’, ’indices’: [93, 105]}]
## 3859 [{’text’: ’PrinceHarry’, ’indices’: [78, 90]}]
## 3860 []
## 3861 []
## 3862 []
## 3863 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 3864 []
## 3865 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3866 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3867 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3868 [{’text’: ’Freedomofspeech’, ’indices’: [77, 93]}]
## 3869 [{’text’: ’Freedomofspeech’, ’indices’: [77, 93]}]
## 3870 [{’text’: ’Freedomofspeech’, ’indices’: [77, 93]}]
## 3871 [{’text’: ’PrinceWilliam’, ’indices’: [33, 47]}, {’text’: ’PrinceHarry’, ’indices’: [62, 74]}]
## 3872 []
## 3873 [{’text’: ’thomasmarkle’, ’indices’: [53, 66]}]
## 3874 [{’text’: ’meghanmarkle’, ’indices’: [43, 56]}, {’text’: ’Harry’, ’indices’: [79, 85]}]
## 3875 [{’text’: ’Britain’, ’indices’: [20, 28]}, {’text’: ’monarchy’, ’indices’: [31, 40]}, {’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 3876 [{’text’: ’MeghanMarkle’, ’indices’: [111, 124]}]
## 3877 [{’text’: ’HarryandMeghanOprah’, ’indices’: [9, 29]}]
## 3878 [{’text’: ’Salute’, ’indices’: [19, 26]}, {’text’: ’live’, ’indices’: [58, 63]}, {’text’: ’TV’, ’indices’: [65, 68]}, {’text’: ’goodmorningbritain’, ’indices’: [69, 88]}, {’text’: ’voicing’, ’indices’: [89, 97]}]
## 3879 []
## 3880 []
## 3881 []
## 3882 []
## 3883 []
## 3884 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}, {’text’: ’MeghanAndHarry’, ’indices’: [92, 107]}, {’text’: ’Meghan’, ’indices’: [108, 115]}]
## 3885 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’OprahMeghanHarry’, ’indices’: [105, 122]}]
## 3886 []
## 3887 []
## 3888 [{’text’: ’YOUARE’, ’indices’: [17, 24]}, {’text’: ’RACIST’, ’indices’: [25, 32]}, {’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’AINtMUCHDARKER’, ’indices’: [54, 69]}, {’text’: ’MYMOTHER’, ’indices’: [76, 85]}, {’text’: ’POLISH’, ’indices’: [92, 99]}, {’text’: ’ANCIENTRY’, ’indices’: [100, 110]}]
## 3889 []
## 3890 []
## 3891 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 3892 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 3893 [{’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 3894 [{’text’: ’MeghanMarkle’, ’indices’: [110, 123]}]
## 3895 []
## 3896 []
## 3897 []
## 3898 []
## 3899 []
## 3900 []
## 3901 []
## 3902 []
## 3903 []
## 3904 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 3905 [{’text’: ’PrinceHarry’, ’indices’: [86, 98]}]
## 3906 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
389
## 3907 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 3908 []
## 3909 []
## 3910 [{’text’: ’PrinceHarry’, ’indices’: [14, 26]}, {’text’: ’Racism’, ’indices’: [32, 39]}]
## 3911 []
## 3912 []
## 3913 []
## 3914 []
## 3915 []
## 3916 []
## 3917 []
## 3918 [{’text’: ’MeghanMarkle’, ’indices’: [104, 117]}, {’text’: ’MeghanAndHarry’, ’indices’: [119, 134]}]
## 3919 []
## 3920 []
## 3921 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 3922 []
## 3923 []
## 3924 []
## 3925 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 3926 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 3927 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 3928 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 3929 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 3930 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 3931 []
## 3932 [{’text’: ’PrinceHarry’, ’indices’: [7, 19]}]
## 3933 [{’text’: ’PrinceHarry’, ’indices’: [7, 19]}]
## 3934 []
## 3935 []
## 3936 []
## 3937 []
## 3938 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 3939 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 3940 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3941 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 3942 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’Suicide’, ’indices’: [29, 37]}]
## 3943 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 3944 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3945 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3946 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 3947 [{’text’: ’HH’, ’indices’: [67, 70]}, {’text’: ’hailhitler’, ’indices’: [71, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 3948 []
## 3949 [{’text’: ’Archie’, ’indices’: [42, 49]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [50, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’PrinceHarry’, ’indices’: [87, 99]}, {’text’: ’PrincessDiana’, ’indices’: [100, 114]}]
## 3950 [{’text’: ’meghanmarkle’, ’indices’: [35, 48]}]
## 3951 []
## 3952 [{’text’: ’Harry’, ’indices’: [13, 19]}, {’text’: ’RoyalFamily’, ’indices’: [48, 60]}, {’text’: ’Diana’, ’indices’: [71, 77]}, {’text’: ’MeghanMarkle’, ’indices’: [78, 91]}]
## 3953 []
## 3954 []
## 3955 [{’text’: ’OprahMeghanHarry’, ’indices’: [70, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 3956 [{’text’: ’Oprah’, ’indices’: [24, 30]}, {’text’: ’missedit’, ’indices’: [54, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’PrinceHarryandMeghan’, ’indices’: [78, 99]}]
## 3957 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}, {’text’: ’PrinceHarry’, ’indices’: [42, 54]}, {’text’: ’RoyalFamily’, ’indices’: [61, 73]}]
## 3958 []
## 3959 []
## 3960 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [85, 107]}]
390
## 3961 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [85, 107]}]
## 3962 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 3963 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}, {’text’: ’PrinceHarry’, ’indices’: [39, 51]}, {’text’: ’MeghanAndHarry’, ’indices’: [53, 68]}]
## 3964 [{’text’: ’MeghanMarkle’, ’indices’: [25, 38]}, {’text’: ’PrinceHarry’, ’indices’: [39, 51]}, {’text’: ’MeghanAndHarry’, ’indices’: [53, 68]}]
## 3965 []
## 3966 []
## 3967 []
## 3968 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’OprahMeghanHarry’, ’indices’: [75, 92]}, {’text’: ’cbs’, ’indices’: [93, 97]}]
## 3969 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’OprahMeghanHarry’, ’indices’: [75, 92]}, {’text’: ’cbs’, ’indices’: [93, 97]}]
## 3970 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 3971 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 3972 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 3973 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [63, 85]}]
## 3974 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3975 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 3976 [{’text’: ’royalfamily’, ’indices’: [66, 78]}]
## 3977 []
## 3978 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 3979 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 3980 [{’text’: ’InternationalWomensDay’, ’indices’: [44, 67]}]
## 3981 [{’text’: ’InternationalWomensDay’, ’indices’: [44, 67]}]
## 3982 []
## 3983 []
## 3984 []
## 3985 []
## 3986 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 3987 [{’text’: ’PrinceHarry’, ’indices’: [36, 48]}, {’text’: ’MeghanMarkle’, ’indices’: [53, 66]}, {’text’: ’OprahMeghanHarry’, ’indices’: [118, 135]}]
## 3988 []
## 3989 []
## 3990 []
## 3991 []
## 3992 []
## 3993 []
## 3994 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’RoyalFamily’, ’indices’: [86, 98]}]
## 3995 []
## 3996 []
## 3997 []
## 3998 []
## 3999 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 4000 []
## 4001 []
## 4002 []
## 4003 []
## 4004 []
## 4005 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 4006 [{’text’: ’meghanMarkle’, ’indices’: [24, 37]}]
## 4007 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 4008 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 4009 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 4010 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 4011 [{’text’: ’MeghanMarkle’, ’indices’: [103, 116]}]
## 4012 [{’text’: ’MeghanMarkle’, ’indices’: [4, 17]}, {’text’: ’PiersMorgan’, ’indices’: [43, 55]}]
## 4013 []
## 4014 []
391
## 4015 [{’text’: ’msnbc’, ’indices’: [19, 25]}]
## 4016 [{’text’: ’msnbc’, ’indices’: [19, 25]}]
## 4017 []
## 4018 []
## 4019 []
## 4020 []
## 4021 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 4022 []
## 4023 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 4024 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 4025 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 4026 [{’text’: ’racism’, ’indices’: [9, 16]}, {’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 4027 [{’text’: ’racism’, ’indices’: [9, 16]}, {’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 4028 []
## 4029 []
## 4030 []
## 4031 []
## 4032 []
## 4033 []
## 4034 [{’text’: ’GMB’, ’indices’: [103, 107]}]
## 4035 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 4036 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 4037 []
## 4038 []
## 4039 []
## 4040 []
## 4041 []
## 4042 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 4043 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 4044 []
## 4045 [{’text’: ’OprahMeghanHarry’, ’indices’: [39, 56]}, {’text’: ’OprahWinfrey’, ’indices’: [57, 70]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’Harry’, ’indices’: [85, 91]}, {’text’: ’7NEWS’, ’indices’: [124, 130]}]
## 4046 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’OprahMeghanHarry’, ’indices’: [74, 91]}]
## 4047 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}, {’text’: ’OprahMeghanHarry’, ’indices’: [74, 91]}]
## 4048 [{’text’: ’Suckers’, ’indices’: [28, 36]}, {’text’: ’markled’, ’indices’: [50, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 4049 [{’text’: ’SelfVictimization’, ’indices’: [12, 30]}, {’text’: ’MeghanMarkle’, ’indices’: [31, 44]}, {’text’: ’Trumps’, ’indices’: [59, 66]}]
## 4050 []
## 4051 []
## 4052 []
## 4053 []
## 4054 []
## 4055 []
## 4056 []
## 4057 []
## 4058 []
## 4059 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 4060 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 4061 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 4062 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’BuckinghamPalace’, ’indices’: [86, 103]}]
## 4063 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 4064 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 4065 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’MeghanAndHarry’, ’indices’: [97, 112]}]
## 4066 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 4067 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 4068 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [21, 43]}, {’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
392
## 4069 []
## 4070 []
## 4071 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’dontbebitter’, ’indices’: [72, 85]}, {’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 4072 []
## 4073 []
## 4074 []
## 4075 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 4076 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’MeghanAndHarry’, ’indices’: [83, 98]}, {’text’: ’PiersMorgan’, ’indices’: [99, 111]}, {’text’: ’FreeMeghan’, ’indices’: [112, 123]}]
## 4077 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 4078 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 4079 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
## 4080 []
## 4081 [{’text’: ’Monarchy’, ’indices’: [18, 27]}]
## 4082 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 4083 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [47, 69]}]
## 4084 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 4085 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 4086 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 4087 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4088 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4089 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4090 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 4091 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 4092 []
## 4093 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 4094 [{’text’: ’shadyassroyals’, ’indices’: [27, 42]}, {’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’MeghanAndHarry’, ’indices’: [57, 72]}, {’text’: ’meghanharryoprah’, ’indices’: [73, 90]}]
## 4095 []
## 4096 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 4097 []
## 4098 []
## 4099 []
## 4100 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’NigelFarage’, ’indices’: [87, 99]}]
## 4101 []
## 4102 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [61, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 4103 []
## 4104 []
## 4105 [{’text’: ’CANT’, ’indices’: [60, 65]}]
## 4106 [{’text’: ’CANT’, ’indices’: [60, 65]}]
## 4107 [{’text’: ’CANT’, ’indices’: [60, 65]}]
## 4108 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 4109 []
## 4110 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’RoyalFamily’, ’indices’: [42, 54]}]
## 4111 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’RoyalFamily’, ’indices’: [42, 54]}]
## 4112 [{’text’: ’piersmorgan’, ’indices’: [18, 30]}, {’text’: ’goodmorningbritain’, ’indices’: [39, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 4113 [{’text’: ’British’, ’indices’: [89, 97]}, {’text’: ’racist’, ’indices’: [102, 109]}]
## 4114 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4115 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [14, 36]}]
## 4116 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 4117 []
## 4118 []
## 4119 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}, {’text’: ’OprahMeghanHarry’, ’indices’: [87, 104]}]
## 4120 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 4121 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 4122 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
393
## 4123 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 4124 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 4125 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’MeghanAndHarry’, ’indices’: [42, 57]}, {’text’: ’Meghan’, ’indices’: [58, 65]}, {’text’: ’PrinceAndrew’, ’indices’: [66, 79]}, {’text’: ’Princess’, ’indices’: [80, 89]}, {’text’: ’OprahMeghanHarry’, ’indices’: [90, 107]}, {’text’: ’Duchess’, ’indices’: [108, 116]}]
## 4126 [{’text’: ’SussexSquad’, ’indices’: [21, 33]}, {’text’: ’HarryMeghanOprah’, ’indices’: [60, 77]}, {’text’: ’HarryandMeghan’, ’indices’: [78, 93]}, {’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 4127 [{’text’: ’sackalexberesford’, ’indices’: [54, 72]}, {’text’: ’alanjones’, ’indices’: [73, 83]}, {’text’: ’SkyNewsAustralia’, ’indices’: [84, 101]}, {’text’: ’skynews’, ’indices’: [102, 110]}, {’text’: ’gmb’, ’indices’: [111, 115]}]
## 4128 [{’text’: ’sackalexberesford’, ’indices’: [54, 72]}, {’text’: ’alanjones’, ’indices’: [73, 83]}, {’text’: ’SkyNewsAustralia’, ’indices’: [84, 101]}, {’text’: ’skynews’, ’indices’: [102, 110]}, {’text’: ’gmb’, ’indices’: [111, 115]}]
## 4129 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [70, 92]}, {’text’: ’OwnTVRocks’, ’indices’: [93, 104]}]
## 4130 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [70, 92]}, {’text’: ’OwnTVRocks’, ’indices’: [93, 104]}]
## 4131 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [70, 92]}, {’text’: ’OwnTVRocks’, ’indices’: [93, 104]}]
## 4132 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4133 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4134 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’CarolineFlack’, ’indices’: [99, 113]}]
## 4135 []
## 4136 []
## 4137 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanAndHarry’, ’indices’: [23, 38]}, {’text’: ’meghanharryoprah’, ’indices’: [39, 56]}, {’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’Megan’, ’indices’: [71, 77]}]
## 4138 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’MeghanAndHarry’, ’indices’: [49, 64]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [66, 88]}]
## 4139 [{’text’: ’MAGA’, ’indices’: [89, 94]}]
## 4140 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4141 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4142 []
## 4143 []
## 4144 [{’text’: ’OprahMeghanHarry’, ’indices’: [41, 58]}, {’text’: ’OprahMeghanHarryAfrica’, ’indices’: [59, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 4145 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’Tanisha’, ’indices’: [110, 118]}]
## 4146 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’Tanisha’, ’indices’: [110, 118]}]
## 4147 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’Tanisha’, ’indices’: [110, 118]}]
## 4148 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’Tanisha’, ’indices’: [110, 118]}]
## 4149 [{’text’: ’TheRoyals’, ’indices’: [62, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’Tanisha’, ’indices’: [110, 118]}]
## 4150 []
## 4151 []
## 4152 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’black’, ’indices’: [31, 37]}]
## 4153 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 4154 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’PrinceHarry’, ’indices’: [90, 102]}]
## 4155 []
## 4156 [{’text’: ’RHOE’, ’indices’: [56, 61]}, {’text’: ’MeghanMarkle’, ’indices’: [62, 75]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [76, 98]}, {’text’: ’OprahMeghanHarry’, ’indices’: [99, 116]}]
## 4157 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [51, 73]}]
## 4158 [{’text’: ’OneYoungWorld’, ’indices’: [76, 90]}, {’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 4159 [{’text’: ’OneYoungWorld’, ’indices’: [76, 90]}, {’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 4160 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 4161 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 4162 [{’text’: ’InternationalWomensDay’, ’indices’: [34, 57]}]
## 4163 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’PrinceHarry’, ’indices’: [65, 77]}, {’text’: ’Royals’, ’indices’: [104, 111]}]
## 4164 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’OprahMeghanHarry’, ’indices’: [86, 103]}]
## 4165 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}]
## 4166 []
## 4167 []
## 4168 []
## 4169 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 4170 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 4171 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 4172 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 4173 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 4174 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 4175 [{’text’: ’meghanmarkle’, ’indices’: [98, 111]}]
## 4176 [{’text’: ’meghanmarkle’, ’indices’: [98, 111]}]
394
## 4177 []
## 4178 []
## 4179 [{’text’: ’piersmorgan’, ’indices’: [32, 44]}]
## 4180 [{’text’: ’piersmorgan’, ’indices’: [32, 44]}]
## 4181 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 4182 []
## 4183 []
## 4184 []
## 4185 []
## 4186 []
## 4187 []
## 4188 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 4189 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4190 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4191 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4192 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’TheRoyalFamily’, ’indices’: [80, 95]}]
## 4193 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [19, 41]}, {’text’: ’HarryandMeghan’, ’indices’: [42, 57]}, {’text’: ’IAmWithMeghan’, ’indices’: [58, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 4194 [{’text’: ’markled’, ’indices’: [41, 49]}, {’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 4195 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’Archie’, ’indices’: [98, 105]}]
## 4196 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’Archie’, ’indices’: [98, 105]}]
## 4197 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}, {’text’: ’Oprah’, ’indices’: [38, 44]}, {’text’: ’OprahMeghanHarry’, ’indices’: [45, 62]}]
## 4198 []
## 4199 []
## 4200 []
## 4201 []
## 4202 []
## 4203 [{’text’: ’Harry’, ’indices’: [67, 73]}, {’text’: ’racist’, ’indices’: [86, 93]}]
## 4204 [{’text’: ’Harry’, ’indices’: [67, 73]}, {’text’: ’racist’, ’indices’: [86, 93]}]
## 4205 []
## 4206 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 4207 []
## 4208 []
## 4209 []
## 4210 [{’text’: ’lesterandcharlie’, ’indices’: [26, 43]}, {’text’: ’royaltyfamily’, ’indices’: [44, 58]}, {’text’: ’archie’, ’indices’: [59, 66]}, {’text’: ’meghanmarkle’, ’indices’: [67, 80]}]
## 4211 []
## 4212 []
## 4213 [{’text’: ’CNN’, ’indices’: [13, 17]}]
## 4214 []
## 4215 []
## 4216 []
## 4217 [{’text’: ’PrinceHarry’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’OprahWinfrey’, ’indices’: [35, 48]}, {’text’: ’Hollywood’, ’indices’: [86, 96]}]
## 4218 [{’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}]
## 4219 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4220 []
## 4221 []
## 4222 [{’text’: ’BlackLivesMatter’, ’indices’: [7, 24]}, {’text’: ’Buckingham’, ’indices’: [29, 40]}]
## 4223 [{’text’: ’BlackLivesMatter’, ’indices’: [7, 24]}, {’text’: ’Buckingham’, ’indices’: [29, 40]}]
## 4224 []
## 4225 []
## 4226 []
## 4227 []
## 4228 [{’text’: ’meghan’, ’indices’: [53, 60]}, {’text’: ’meghanmarkle’, ’indices’: [61, 74]}, {’text’: ’PrinceHarry’, ’indices’: [75, 87]}, {’text’: ’PrinceCharles’, ’indices’: [88, 102]}, {’text’: ’PrinceAndrew’, ’indices’: [103, 116]}]
## 4229 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 4230 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
395
## 4231 [{’text’: ’QueenElizabethII’, ’indices’: [41, 58]}, {’text’: ’PrinceHarry’, ’indices’: [87, 99]}]
## 4232 [{’text’: ’meghanmarkle’, ’indices’: [21, 34]}, {’text’: ’PrinceHarry’, ’indices’: [39, 51]}]
## 4233 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4234 [{’text’: ’Epstein’, ’indices’: [29, 37]}, {’text’: ’GhislaineMaxwell’, ’indices’: [42, 59]}, {’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 4235 [{’text’: ’MeghanAndHarry’, ’indices’: [37, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4236 [{’text’: ’MeghanAndHarry’, ’indices’: [37, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4237 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}, {’text’: ’OprahMeghanHarry’, ’indices’: [43, 60]}]
## 4238 []
## 4239 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’PrinceHarry’, ’indices’: [19, 31]}, {’text’: ’ThomasMarkle’, ’indices’: [79, 92]}]
## 4240 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’OprahMeghanHarry’, ’indices’: [64, 81]}]
## 4241 []
## 4242 [{’text’: ’racism’, ’indices’: [47, 54]}]
## 4243 []
## 4244 []
## 4245 []
## 4246 []
## 4247 []
## 4248 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [67, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 4249 [{’text’: ’OprahMeghanHarry’, ’indices’: [87, 104]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}]
## 4250 [{’text’: ’meghanmarkle’, ’indices’: [63, 76]}]
## 4251 [{’text’: ’meghanmarkle’, ’indices’: [63, 76]}]
## 4252 [{’text’: ’meghanmarkle’, ’indices’: [63, 76]}]
## 4253 [{’text’: ’piersmorgan’, ’indices’: [100, 112]}]
## 4254 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 4255 []
## 4256 []
## 4257 []
## 4258 []
## 4259 [{’text’: ’MeghanMarkle’, ’indices’: [111, 124]}, {’text’: ’MeghanAndHarry’, ’indices’: [125, 140]}]
## 4260 []
## 4261 []
## 4262 [{’text’: ’MeghanTheBully’, ’indices’: [83, 98]}]
## 4263 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 4264 []
## 4265 []
## 4266 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [61, 83]}, {’text’: ’HarryandMeghan’, ’indices’: [84, 99]}]
## 4267 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [61, 83]}, {’text’: ’HarryandMeghan’, ’indices’: [84, 99]}]
## 4268 [{’text’: ’PiersMorgan’, ’indices’: [63, 75]}]
## 4269 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4270 []
## 4271 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 4272 [{’text’: ’PiersMorgan’, ’indices’: [57, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 4273 []
## 4274 []
## 4275 []
## 4276 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 4277 []
## 4278 []
## 4279 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [57, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 4280 []
## 4281 [{’text’: ’BlackTwitter’, ’indices’: [35, 48]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 4282 [{’text’: ’paparazzi’, ’indices’: [52, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’princess’, ’indices’: [110, 119]}]
## 4283 [{’text’: ’paparazzi’, ’indices’: [52, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’princess’, ’indices’: [110, 119]}]
## 4284 [{’text’: ’paparazzi’, ’indices’: [52, 62]}, {’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’princess’, ’indices’: [110, 119]}]
396
## 4285 []
## 4286 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [58, 80]}, {’text’: ’MeghanAndHarry’, ’indices’: [81, 96]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 4287 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [58, 80]}, {’text’: ’MeghanAndHarry’, ’indices’: [81, 96]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 4288 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’crybaby’, ’indices’: [14, 22]}, {’text’: ’norealstruggle’, ’indices’: [23, 38]}, {’text’: ’ClickBait’, ’indices’: [39, 49]}, {’text’: ’Thankyou’, ’indices’: [81, 90]}, {’text’: ’lovepiersmorgan’, ’indices’: [92, 108]}]
## 4289 []
## 4290 []
## 4291 [{’text’: ’Oprah’, ’indices’: [89, 95]}]
## 4292 [{’text’: ’Oprah’, ’indices’: [89, 95]}]
## 4293 [{’text’: ’Oprah’, ’indices’: [89, 95]}]
## 4294 [{’text’: ’Oprah’, ’indices’: [89, 95]}]
## 4295 [{’text’: ’Oprah’, ’indices’: [89, 95]}]
## 4296 []
## 4297 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}, {’text’: ’marriedwithchildren’, ’indices’: [28, 48]}]
## 4298 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 4299 [{’text’: ’TheView’, ’indices’: [0, 8]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 4300 [{’text’: ’TheView’, ’indices’: [0, 8]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 4301 []
## 4302 []
## 4303 []
## 4304 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’PrinceHarry’, ’indices’: [14, 26]}]
## 4305 []
## 4306 []
## 4307 []
## 4308 []
## 4309 []
## 4310 []
## 4311 []
## 4312 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 4313 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 4314 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 4315 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 4316 [{’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 4317 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 4318 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 4319 [{’text’: ’Doprah’, ’indices’: [43, 50]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 4320 []
## 4321 []
## 4322 []
## 4323 []
## 4324 [{’text’: ’africaglobalgateway’, ’indices’: [67, 87]}, {’text’: ’wednesdaythought’, ’indices’: [88, 105]}]
## 4325 [{’text’: ’africaglobalgateway’, ’indices’: [67, 87]}, {’text’: ’wednesdaythought’, ’indices’: [88, 105]}]
## 4326 [{’text’: ’Meghanmarkle’, ’indices’: [13, 26]}, {’text’: ’PrinceAndrew’, ’indices’: [71, 84]}]
## 4327 [{’text’: ’Breaking’, ’indices’: [0, 9]}]
## 4328 [{’text’: ’Boris’, ’indices’: [54, 60]}, {’text’: ’Irish’, ’indices’: [78, 84]}, {’text’: ’TestAndTrace’, ’indices’: [108, 121]}]
## 4329 []
## 4330 []
## 4331 []
## 4332 []
## 4333 []
## 4334 [{’text’: ’HarryandMeghan’, ’indices’: [91, 106]}]
## 4335 [{’text’: ’HarryandMeghan’, ’indices’: [91, 106]}]
## 4336 [{’text’: ’HarryandMeghan’, ’indices’: [91, 106]}]
## 4337 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 4338 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [62, 84]}, {’text’: ’RoyalFamily’, ’indices’: [85, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
397
## 4339 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 4340 [{’text’: ’SimiGarewal’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’Oprah’, ’indices’: [81, 87]}, {’text’: ’OprahHarryMeghan’, ’indices’: [88, 105]}]
## 4341 [{’text’: ’PrinceHarry’, ’indices’: [33, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 4342 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 4343 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 4344 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 4345 [{’text’: ’NicolaSturgeon’, ’indices’: [50, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’Private’, ’indices’: [106, 114]}]
## 4346 [{’text’: ’NicolaSturgeon’, ’indices’: [50, 65]}, {’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’Private’, ’indices’: [106, 114]}]
## 4347 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 4348 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 4349 []
## 4350 []
## 4351 []
## 4352 [{’text’: ’meghanmarkle’, ’indices’: [10, 23]}]
## 4353 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4354 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 4355 []
## 4356 []
## 4357 []
## 4358 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’OprahMeghanHarry’, ’indices’: [69, 86]}]
## 4359 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4360 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4361 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’QueenElizabeth’, ’indices’: [51, 66]}]
## 4362 [{’text’: ’OprahMeghanHarry’, ’indices’: [0, 17]}]
## 4363 []
## 4364 [{’text’: ’mentalhealth’, ’indices’: [76, 89]}]
## 4365 [{’text’: ’mentalhealth’, ’indices’: [76, 89]}]
## 4366 [{’text’: ’mentalhealth’, ’indices’: [76, 89]}]
## 4367 [{’text’: ’mentalhealth’, ’indices’: [76, 89]}]
## 4368 [{’text’: ’mentalhealth’, ’indices’: [76, 89]}]
## 4369 [{’text’: ’mentalhealth’, ’indices’: [76, 89]}]
## 4370 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4371 [{’text’: ’SAVAGE’, ’indices’: [42, 49]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 4372 [{’text’: ’SAVAGE’, ’indices’: [42, 49]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 4373 []
## 4374 []
## 4375 [{’text’: ’Oprah’, ’indices’: [17, 23]}]
## 4376 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 4377 []
## 4378 []
## 4379 []
## 4380 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 4381 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’PrinceHarry’, ’indices’: [73, 85]}]
## 4382 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’PrinceHarry’, ’indices’: [73, 85]}]
## 4383 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’PrinceHarry’, ’indices’: [73, 85]}]
## 4384 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}, {’text’: ’PrinceHarry’, ’indices’: [73, 85]}]
## 4385 [{’text’: ’meganandharry’, ’indices’: [0, 14]}, {’text’: ’female’, ’indices’: [60, 67]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}]
## 4386 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 4387 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 4388 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 4389 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 4390 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 4391 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
## 4392 [{’text’: ’MeghanMarkle’, ’indices’: [61, 74]}]
398
## 4393 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [33, 55]}, {’text’: ’MeghanMarkle’, ’indices’: [56, 69]}, {’text’: ’MeghanHarry’, ’indices’: [70, 82]}]
## 4394 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’MeghanAndHarry’, ’indices’: [48, 63]}]
## 4395 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 4396 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 4397 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 4398 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 4399 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 4400 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 4401 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 4402 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 4403 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 4404 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 4405 []
## 4406 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 4407 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 4408 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}, {’text’: ’PrinceHarry’, ’indices’: [116, 128]}]
## 4409 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}, {’text’: ’PrinceHarry’, ’indices’: [116, 128]}]
## 4410 [{’text’: ’MeghanMarkle’, ’indices’: [102, 115]}, {’text’: ’PrinceHarry’, ’indices’: [116, 128]}]
## 4411 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}, {’text’: ’MeghanAndHarry’, ’indices’: [64, 79]}, {’text’: ’Royals’, ’indices’: [80, 87]}]
## 4412 [{’text’: ’OprahMeghanHarry’, ’indices’: [92, 109]}]
## 4413 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 4414 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 4415 []
## 4416 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 4417 [{’text’: ’GMB’, ’indices’: [31, 35]}]
## 4418 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 4419 []
## 4420 []
## 4421 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’Oprah’, ’indices’: [55, 61]}]
## 4422 [{’text’: ’FACT’, ’indices’: [93, 98]}]
## 4423 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [46, 68]}]
## 4424 [{’text’: ’Meghanmarkle’, ’indices’: [86, 99]}]
## 4425 [{’text’: ’Meghanmarkle’, ’indices’: [86, 99]}]
## 4426 []
## 4427 []
## 4428 []
## 4429 []
## 4430 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 4431 []
## 4432 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4433 []
## 4434 []
## 4435 []
## 4436 []
## 4437 [{’text’: ’PrinceHarry’, ’indices’: [89, 101]}]
## 4438 [{’text’: ’AbolishTheMonarchy’, ’indices’: [32, 51]}]
## 4439 [{’text’: ’AbolishTheMonarchy’, ’indices’: [32, 51]}]
## 4440 []
## 4441 []
## 4442 []
## 4443 []
## 4444 []
## 4445 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 4446 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}]
399
## 4447 [{’text’: ’MaymayEntrata’, ’indices’: [75, 89]}, {’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’WomensHistoryMonth’, ’indices’: [106, 125]}]
## 4448 []
## 4449 [{’text’: ’proof’, ’indices’: [52, 58]}, {’text’: ’truth’, ’indices’: [93, 99]}, {’text’: ’Oprah’, ’indices’: [108, 114]}]
## 4450 [{’text’: ’proof’, ’indices’: [52, 58]}, {’text’: ’truth’, ’indices’: [93, 99]}, {’text’: ’Oprah’, ’indices’: [108, 114]}]
## 4451 [{’text’: ’proof’, ’indices’: [52, 58]}, {’text’: ’truth’, ’indices’: [93, 99]}, {’text’: ’Oprah’, ’indices’: [108, 114]}]
## 4452 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4453 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 4454 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 4455 [{’text’: ’Minimal’, ’indices’: [106, 114]}]
## 4456 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [34, 56]}]
## 4457 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 4458 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 4459 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 4460 [{’text’: ’RoyalFamily’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 4461 [{’text’: ’RoyalFamily’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 4462 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}]
## 4463 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}, {’text’: ’PrinceHarry’, ’indices’: [53, 65]}]
## 4464 []
## 4465 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}]
## 4466 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’Meghan’, ’indices’: [48, 55]}, {’text’: ’PrinceAndrew’, ’indices’: [89, 102]}]
## 4467 [{’text’: ’MeghanMarkle’, ’indices’: [7, 20]}]
## 4468 []
## 4469 []
## 4470 []
## 4471 [{’text’: ’piersmorgan’, ’indices’: [18, 30]}, {’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 4472 [{’text’: ’piersmorgan’, ’indices’: [18, 30]}, {’text’: ’MeghanMarkle’, ’indices’: [102, 115]}]
## 4473 [{’text’: ’Oprah’, ’indices’: [11, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4474 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 4475 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 4476 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 4477 [{’text’: ’MeghanMarkle’, ’indices’: [94, 107]}]
## 4478 []
## 4479 [{’text’: ’Oprah’, ’indices’: [0, 6]}, {’text’: ’MillionLittlePieces’, ’indices’: [69, 89]}]
## 4480 [{’text’: ’Oprah’, ’indices’: [0, 6]}, {’text’: ’MillionLittlePieces’, ’indices’: [69, 89]}]
## 4481 [{’text’: ’Oprah’, ’indices’: [0, 6]}, {’text’: ’MillionLittlePieces’, ’indices’: [69, 89]}]
## 4482 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4483 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’PrinceHarry’, ’indices’: [39, 51]}]
## 4484 [{’text’: ’meghanmarkle’, ’indices’: [30, 43]}, {’text’: ’whitesupremacy’, ’indices’: [71, 86]}, {’text’: ’britishroyals’, ’indices’: [87, 101]}]
## 4485 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’PrinceHarry’, ’indices’: [18, 30]}]
## 4486 [{’text’: ’OprahMeghanHarry’, ’indices’: [42, 59]}, {’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 4487 []
## 4488 []
## 4489 []
## 4490 []
## 4491 []
## 4492 []
## 4493 []
## 4494 []
## 4495 []
## 4496 [{’text’: ’GodSavetheQueen’, ’indices’: [50, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 4497 []
## 4498 []
## 4499 []
## 4500 []
400
## 4501 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}, {’text’: ’PrinceHarry’, ’indices’: [68, 80]}]
## 4502 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 4503 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 4504 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 4505 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 4506 [{’text’: ’piersmorgansacked’, ’indices’: [46, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 4507 [{’text’: ’piersmorgansacked’, ’indices’: [46, 64]}, {’text’: ’MeghanMarkle’, ’indices’: [66, 79]}]
## 4508 []
## 4509 [{’text’: ’Harry’, ’indices’: [37, 43]}]
## 4510 [{’text’: ’Harry’, ’indices’: [37, 43]}]
## 4511 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}, {’text’: ’suicidal’, ’indices’: [57, 66]}]
## 4512 [{’text’: ’PrinceHarry’, ’indices’: [17, 29]}, {’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 4513 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 4514 []
## 4515 []
## 4516 []
## 4517 []
## 4518 [{’text’: ’meghanMarkle’, ’indices’: [46, 59]}]
## 4519 [{’text’: ’meghanMarkle’, ’indices’: [46, 59]}]
## 4520 [{’text’: ’meghanMarkle’, ’indices’: [46, 59]}]
## 4521 []
## 4522 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4523 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4524 [{’text’: ’MeghanMarkle’, ’indices’: [56, 69]}]
## 4525 []
## 4526 [{’text’: ’meghansblooddiamonds’, ’indices’: [39, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4527 [{’text’: ’meghansblooddiamonds’, ’indices’: [39, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4528 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 4529 []
## 4530 []
## 4531 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 4532 [{’text’: ’MeghanMarkle’, ’indices’: [11, 24]}]
## 4533 [{’text’: ’JusticeWarby’, ’indices’: [17, 30]}, {’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 4534 []
## 4535 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [48, 70]}]
## 4536 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [48, 70]}]
## 4537 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’piersmorgan’, ’indices’: [75, 87]}]
## 4538 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [87, 109]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [110, 132]}]
## 4539 []
## 4540 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 4541 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 4542 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’AfricanAmerican’, ’indices’: [96, 112]}]
## 4543 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 4544 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 4545 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 4546 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 4547 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’scrapingthebarrell’, ’indices’: [69, 88]}]
## 4548 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 4549 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’UK’, ’indices’: [60, 63]}, {’text’: ’RoyalFamily’, ’indices’: [64, 76]}, {’text’: ’QueenElizabeth’, ’indices’: [81, 96]}]
## 4550 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’UK’, ’indices’: [60, 63]}, {’text’: ’RoyalFamily’, ’indices’: [64, 76]}, {’text’: ’QueenElizabeth’, ’indices’: [81, 96]}]
## 4551 [{’text’: ’MeghanAndHarry’, ’indices’: [20, 35]}, {’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’OprahMeghanHarry’, ’indices’: [50, 67]}, {’text’: ’OprahHarryMeghan’, ’indices’: [68, 85]}, {’text’: ’OprahMeghanHarryAfrica’, ’indices’: [86, 109]}]
## 4552 [{’text’: ’PrinceAndrew’, ’indices’: [54, 67]}]
## 4553 [{’text’: ’Shorts’, ’indices’: [73, 80]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}, {’text’: ’Funko’, ’indices’: [95, 101]}, {’text’: ’Meghan’, ’indices’: [102, 109]}, {’text’: ’funkopop’, ’indices’: [110, 119]}]
## 4554 [{’text’: ’Shorts’, ’indices’: [73, 80]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}, {’text’: ’Funko’, ’indices’: [95, 101]}, {’text’: ’Meghan’, ’indices’: [102, 109]}, {’text’: ’funkopop’, ’indices’: [110, 119]}]
401
## 4555 []
## 4556 [{’text’: ’mvp’, ’indices’: [84, 88]}, {’text’: ’madameSpeakerPelosi’, ’indices’: [89, 109]}]
## 4557 [{’text’: ’mvp’, ’indices’: [84, 88]}, {’text’: ’madameSpeakerPelosi’, ’indices’: [89, 109]}]
## 4558 [{’text’: ’mvp’, ’indices’: [84, 88]}, {’text’: ’madameSpeakerPelosi’, ’indices’: [89, 109]}]
## 4559 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’lies’, ’indices’: [48, 53]}, {’text’: ’Archie’, ’indices’: [58, 65]}, {’text’: ’security’, ’indices’: [84, 93]}, {’text’: ’protection’, ’indices’: [94, 105]}]
## 4560 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 4561 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 4562 []
## 4563 []
## 4564 [{’text’: ’PiersMorgan’, ’indices’: [0, 12]}, {’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 4565 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’IWD2021’, ’indices’: [77, 85]}]
## 4566 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’IWD2021’, ’indices’: [77, 85]}]
## 4567 []
## 4568 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 4569 []
## 4570 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’PrinceHarry’, ’indices’: [70, 82]}]
## 4571 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}]
## 4572 [{’text’: ’Harry’, ’indices’: [22, 28]}, {’text’: ’Meghan’, ’indices’: [33, 40]}, {’text’: ’Queen’, ’indices’: [78, 84]}]
## 4573 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 4574 [{’text’: ’MeghanMarkle’, ’indices’: [23, 36]}]
## 4575 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}, {’text’: ’PrinceHarry’, ’indices’: [34, 46]}]
## 4576 []
## 4577 []
## 4578 []
## 4579 []
## 4580 []
## 4581 []
## 4582 []
## 4583 []
## 4584 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 4585 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}]
## 4586 [{’text’: ’RoyalFamily’, ’indices’: [79, 91]}, {’text’: ’meghanMarkle’, ’indices’: [97, 110]}]
## 4587 [{’text’: ’RoyalFamily’, ’indices’: [79, 91]}, {’text’: ’meghanMarkle’, ’indices’: [97, 110]}]
## 4588 []
## 4589 []
## 4590 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [26, 48]}, {’text’: ’OprahMeghanHarry’, ’indices’: [49, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [67, 80]}, {’text’: ’SussexSquad’, ’indices’: [81, 93]}]
## 4591 [{’text’: ’pissmorgan’, ’indices’: [45, 56]}]
## 4592 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [66, 88]}, {’text’: ’piersmorgan’, ’indices’: [89, 101]}]
## 4593 [{’text’: ’TinaKaggia’, ’indices’: [80, 91]}, {’text’: ’KhanYouArrestRuto’, ’indices’: [92, 110]}]
## 4594 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}, {’text’: ’OprahMeghanHarry’, ’indices’: [79, 96]}]
## 4595 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 4596 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 4597 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 4598 [{’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 4599 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 4600 [{’text’: ’MeghanMarkle’, ’indices’: [76, 89]}]
## 4601 []
## 4602 []
## 4603 []
## 4604 []
## 4605 []
## 4606 [{’text’: ’NEW’, ’indices’: [0, 4]}, {’text’: ’InternationalWomensDay’, ’indices’: [86, 109]}]
## 4607 [{’text’: ’Shorts’, ’indices’: [60, 67]}, {’text’: ’MeghanMarkle’, ’indices’: [68, 81]}, {’text’: ’Funko’, ’indices’: [82, 88]}, {’text’: ’Meghan’, ’indices’: [89, 96]}, {’text’: ’funkopop’, ’indices’: [97, 106]}, {’text’: ’YouTuber’, ’indices’: [107, 116]}]
## 4608 [{’text’: ’goodmorningbritain’, ’indices’: [29, 48]}, {’text’: ’gmb’, ’indices’: [55, 59]}, {’text’: ’PiersMorgan’, ’indices’: [60, 72]}, {’text’: ’Piers’, ’indices’: [73, 79]}, {’text’: ’AlexBeresford’, ’indices’: [80, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
402
## 4609 [{’text’: ’goodmorningbritain’, ’indices’: [29, 48]}, {’text’: ’gmb’, ’indices’: [55, 59]}, {’text’: ’PiersMorgan’, ’indices’: [60, 72]}, {’text’: ’Piers’, ’indices’: [73, 79]}, {’text’: ’AlexBeresford’, ’indices’: [80, 94]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 4610 []
## 4611 []
## 4612 [{’text’: ’vilified’, ’indices’: [71, 80]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 4613 [{’text’: ’vilified’, ’indices’: [71, 80]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 4614 [{’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 4615 []
## 4616 []
## 4617 []
## 4618 [{’text’: ’MeghanMarkle’, ’indices’: [8, 21]}]
## 4619 [{’text’: ’MeghanMarkle’, ’indices’: [123, 136]}]
## 4620 [{’text’: ’MeghanMarkle’, ’indices’: [123, 136]}]
## 4621 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}, {’text’: ’BLM’, ’indices’: [110, 114]}]
## 4622 []
## 4623 []
## 4624 []
## 4625 []
## 4626 []
## 4627 []
## 4628 []
## 4629 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4630 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 4631 []
## 4632 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 4633 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 4634 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 4635 [{’text’: ’piersmorgan’, ’indices’: [53, 65]}, {’text’: ’piersmorganIsABully’, ’indices’: [66, 86]}]
## 4636 [{’text’: ’piersmorgan’, ’indices’: [53, 65]}, {’text’: ’piersmorganIsABully’, ’indices’: [66, 86]}]
## 4637 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [23, 45]}, {’text’: ’mentalhealth’, ’indices’: [46, 59]}]
## 4638 []
## 4639 []
## 4640 [{’text’: ’BlackTwitter’, ’indices’: [98, 111]}]
## 4641 [{’text’: ’PrincessDiana’, ’indices’: [77, 91]}, {’text’: ’CarolineFlack’, ’indices’: [101, 115]}]
## 4642 [{’text’: ’PrincessDiana’, ’indices’: [77, 91]}, {’text’: ’CarolineFlack’, ’indices’: [101, 115]}]
## 4643 []
## 4644 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’Oprah’, ’indices’: [50, 56]}]
## 4645 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’markle2024’, ’indices’: [105, 116]}]
## 4646 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 4647 []
## 4648 []
## 4649 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [30, 52]}]
## 4650 []
## 4651 []
## 4652 []
## 4653 []
## 4654 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 4655 []
## 4656 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [84, 106]}]
## 4657 [{’text’: ’RailaCryingBaby’, ’indices’: [79, 95]}]
## 4658 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 4659 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 4660 []
## 4661 []
## 4662 []
403
## 4663 []
## 4664 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4665 [{’text’: ’rhony’, ’indices’: [91, 97]}, {’text’: ’realhousewives’, ’indices’: [98, 113]}]
## 4666 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 4667 [{’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 4668 [{’text’: ’STFU’, ’indices’: [10, 15]}, {’text’: ’MeghanMarkle’, ’indices’: [50, 63]}, {’text’: ’RoyalFamily’, ’indices’: [70, 82]}]
## 4669 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 4670 [{’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 4671 []
## 4672 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 4673 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’BABYSHOWER’, ’indices’: [47, 58]}, {’text’: ’NYC’, ’indices’: [62, 66]}]
## 4674 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}, {’text’: ’BABYSHOWER’, ’indices’: [47, 58]}, {’text’: ’NYC’, ’indices’: [62, 66]}]
## 4675 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 4676 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 4677 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 4678 [{’text’: ’BeyGood’, ’indices’: [38, 46]}]
## 4679 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’WhiteHouse’, ’indices’: [117, 128]}]
## 4680 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 4681 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}]
## 4682 [{’text’: ’SelfVictimization’, ’indices’: [5, 23]}, {’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’Trumps’, ’indices’: [52, 59]}]
## 4683 [{’text’: ’QueenElizabeth’, ’indices’: [84, 99]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}, {’text’: ’PrinceHarry’, ’indices’: [114, 126]}, {’text’: ’PeaceTalks’, ’indices’: [127, 138]}]
## 4684 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}, {’text’: ’MeghanAndHarry’, ’indices’: [58, 73]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [74, 96]}]
## 4685 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’Karen’, ’indices’: [45, 51]}]
## 4686 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 4687 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 4688 []
## 4689 []
## 4690 []
## 4691 [{’text’: ’MeghanMarkle’, ’indices’: [124, 137]}]
## 4692 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}]
## 4693 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}]
## 4694 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}]
## 4695 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}, {’text’: ’OprahMeghanHarry’, ’indices’: [96, 113]}]
## 4696 []
## 4697 [{’text’: ’MeghanMarkle’, ’indices’: [38, 51]}]
## 4698 []
## 4699 []
## 4700 [{’text’: ’ROYALFAMILY’, ’indices’: [28, 40]}, {’text’: ’Harry’, ’indices’: [75, 81]}, {’text’: ’Meghanmarkle’, ’indices’: [88, 101]}]
## 4701 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [33, 55]}, {’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}, {’text’: ’PrincessDiana’, ’indices’: [72, 86]}, {’text’: ’PrinceAndrew’, ’indices’: [87, 100]}, {’text’: ’OprahWinfrey’, ’indices’: [101, 114]}]
## 4702 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [33, 55]}, {’text’: ’MeghanAndHarry’, ’indices’: [56, 71]}, {’text’: ’PrincessDiana’, ’indices’: [72, 86]}, {’text’: ’PrinceAndrew’, ’indices’: [87, 100]}, {’text’: ’OprahWinfrey’, ’indices’: [101, 114]}]
## 4703 [{’text’: ’TheCrown’, ’indices’: [40, 49]}, {’text’: ’OprahMeghanHarry’, ’indices’: [64, 81]}, {’text’: ’MeghanAndHarry’, ’indices’: [82, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 4704 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 4705 [{’text’: ’MeghanMarkle’, ’indices’: [44, 57]}]
## 4706 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 4707 []
## 4708 []
## 4709 []
## 4710 []
## 4711 []
## 4712 []
## 4713 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4714 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4715 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4716 []
404
## 4717 []
## 4718 []
## 4719 []
## 4720 []
## 4721 [{’text’: ’OprahWinfrey’, ’indices’: [56, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}, {’text’: ’PrinceHarry’, ’indices’: [101, 113]}]
## 4722 [{’text’: ’OprahWinfrey’, ’indices’: [56, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [81, 94]}, {’text’: ’PrinceHarry’, ’indices’: [101, 113]}]
## 4723 []
## 4724 []
## 4725 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 4726 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 4727 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 4728 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 4729 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 4730 [{’text’: ’sunshinesachs’, ’indices’: [13, 27]}, {’text’: ’HarveyWeinstein’, ’indices’: [40, 56]}]
## 4731 []
## 4732 []
## 4733 [{’text’: ’MeghanMarkle’, ’indices’: [12, 25]}, {’text’: ’OprahMeghanHarry’, ’indices’: [84, 101]}]
## 4734 [{’text’: ’ArchieHarrison’, ’indices’: [33, 48]}, {’text’: ’meghanmarkle’, ’indices’: [53, 66]}]
## 4735 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 4736 []
## 4737 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 4738 [{’text’: ’MeghanMarkle’, ’indices’: [108, 121]}, {’text’: ’MeghanAndHarry’, ’indices’: [122, 137]}]
## 4739 [{’text’: ’monarchy’, ’indices’: [77, 86]}, {’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [101, 123]}]
## 4740 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 4741 []
## 4742 []
## 4743 []
## 4744 []
## 4745 []
## 4746 []
## 4747 []
## 4748 []
## 4749 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 4750 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 4751 []
## 4752 []
## 4753 []
## 4754 []
## 4755 []
## 4756 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 4757 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 4758 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 4759 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 4760 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 4761 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 4762 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 4763 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 4764 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}, {’text’: ’OprahMeghanHarry’, ’indices’: [85, 102]}]
## 4765 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 4766 [{’text’: ’OprahMeghanHarry’, ’indices’: [66, 83]}, {’text’: ’HarryandMeghan’, ’indices’: [84, 99]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 4767 [{’text’: ’OprahMeghanHarry’, ’indices’: [66, 83]}, {’text’: ’HarryandMeghan’, ’indices’: [84, 99]}, {’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 4768 []
## 4769 []
## 4770 []
405
## 4771 []
## 4772 []
## 4773 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}, {’text’: ’bully’, ’indices’: [114, 120]}, {’text’: ’wow’, ’indices’: [121, 125]}]
## 4774 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}, {’text’: ’bully’, ’indices’: [114, 120]}, {’text’: ’wow’, ’indices’: [121, 125]}]
## 4775 [{’text’: ’MUFC’, ’indices’: [37, 42]}, {’text’: ’march8th’, ’indices’: [57, 66]}, {’text’: ’ManchesterDerby’, ’indices’: [67, 83]}, {’text’: ’MeghanMarkle’, ’indices’: [84, 97]}, {’text’: ’MadeinLagos’, ’indices’: [98, 110]}]
## 4776 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 4777 [{’text’: ’GodwinAward’, ’indices’: [47, 59]}]
## 4778 []
## 4779 []
## 4780 []
## 4781 []
## 4782 []
## 4783 []
## 4784 []
## 4785 []
## 4786 []
## 4787 []
## 4788 []
## 4789 []
## 4790 []
## 4791 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [23, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [97, 110]}]
## 4792 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 4793 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 4794 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 4795 [{’text’: ’harrymeghan’, ’indices’: [69, 81]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [82, 104]}]
## 4796 [{’text’: ’harrymeghan’, ’indices’: [69, 81]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [82, 104]}]
## 4797 []
## 4798 []
## 4799 []
## 4800 []
## 4801 []
## 4802 [{’text’: ’PiersMorgan’, ’indices’: [5, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [36, 49]}]
## 4803 []
## 4804 [{’text’: ’carryonchatting’, ’indices’: [50, 66]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 4805 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4806 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4807 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 4808 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}, {’text’: ’MeghanAndHarry’, ’indices’: [80, 95]}]
## 4809 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’KateMiddleton’, ’indices’: [101, 115]}]
## 4810 [{’text’: ’MeghanMarkle’, ’indices’: [72, 85]}, {’text’: ’KateMiddleton’, ’indices’: [101, 115]}]
## 4811 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 4812 [{’text’: ’piersmorganIsABully’, ’indices’: [37, 57]}]
## 4813 []
## 4814 []
## 4815 []
## 4816 []
## 4817 []
## 4818 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 4819 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 4820 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4821 []
## 4822 []
## 4823 []
## 4824 []
406
## 4825 []
## 4826 []
## 4827 []
## 4828 [{’text’: ’MeghanAndHarry’, ’indices’: [96, 111]}, {’text’: ’MeghanMarkle’, ’indices’: [113, 126]}]
## 4829 [{’text’: ’HarrySadClown’, ’indices’: [45, 59]}, {’text’: ’MeghanSNAKE’, ’indices’: [60, 72]}, {’text’: ’MeghanLIAR’, ’indices’: [73, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 4830 [{’text’: ’PrinceHarry’, ’indices’: [79, 91]}, {’text’: ’MeghanMarkle’, ’indices’: [96, 109]}]
## 4831 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 4832 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 4833 []
## 4834 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’MeghanAndHarry’, ’indices’: [53, 68]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [69, 91]}]
## 4835 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’MeghanAndHarry’, ’indices’: [53, 68]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [69, 91]}]
## 4836 [{’text’: ’MeghanMarkle’, ’indices’: [10, 23]}]
## 4837 []
## 4838 []
## 4839 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}]
## 4840 [{’text’: ’obsession’, ’indices’: [53, 63]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 4841 [{’text’: ’MeghanMarkle’, ’indices’: [83, 96]}]
## 4842 []
## 4843 []
## 4844 [{’text’: ’meghanmarkle’, ’indices’: [47, 60]}]
## 4845 [{’text’: ’meghanmarkle’, ’indices’: [47, 60]}]
## 4846 [{’text’: ’MeghanMarkle’, ’indices’: [85, 98]}, {’text’: ’OprahMeghanHarry’, ’indices’: [99, 116]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [117, 139]}]
## 4847 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 4848 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’FreeMeghan’, ’indices’: [83, 94]}, {’text’: ’mondaythoughts’, ’indices’: [95, 110]}]
## 4849 [{’text’: ’meghanmarkle’, ’indices’: [20, 33]}]
## 4850 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}, {’text’: ’Harry’, ’indices’: [96, 102]}]
## 4851 []
## 4852 []
## 4853 []
## 4854 [{’text’: ’meganandharry’, ’indices’: [22, 36]}, {’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 4855 []
## 4856 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 4857 []
## 4858 []
## 4859 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}, {’text’: ’OprahMeghanHarry’, ’indices’: [66, 83]}]
## 4860 [{’text’: ’MeghanMarkle’, ’indices’: [43, 56]}, {’text’: ’harry’, ’indices’: [61, 67]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [117, 139]}]
## 4861 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 4862 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}]
## 4863 [{’text’: ’HarryandMeghan’, ’indices’: [30, 45]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [83, 105]}, {’text’: ’Meghan’, ’indices’: [106, 113]}]
## 4864 [{’text’: ’HarryandMeghan’, ’indices’: [30, 45]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [83, 105]}, {’text’: ’Meghan’, ’indices’: [106, 113]}]
## 4865 [{’text’: ’HarryandMeghan’, ’indices’: [30, 45]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [83, 105]}, {’text’: ’Meghan’, ’indices’: [106, 113]}]
## 4866 []
## 4867 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 4868 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 4869 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 4870 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}]
## 4871 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 4872 []
## 4873 []
## 4874 [{’text’: ’etsy’, ’indices’: [63, 68]}]
## 4875 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [82, 104]}, {’text’: ’MeghanMarkle’, ’indices’: [105, 118]}]
## 4876 [{’text’: ’MeghanMarkle’, ’indices’: [86, 99]}, {’text’: ’WeLoveYouMeghan’, ’indices’: [101, 117]}]
## 4877 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}, {’text’: ’MeghanAndHarry’, ’indices’: [45, 60]}, {’text’: ’PrinceWilliam’, ’indices’: [61, 75]}]
## 4878 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
407
## 4879 []
## 4880 []
## 4881 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 4882 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 4883 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
## 4884 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 4885 [{’text’: ’Queen’, ’indices’: [55, 61]}]
## 4886 []
## 4887 []
## 4888 []
## 4889 []
## 4890 []
## 4891 []
## 4892 []
## 4893 []
## 4894 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 4895 []
## 4896 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 4897 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 4898 [{’text’: ’Shorts’, ’indices’: [72, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’Funko’, ’indices’: [94, 100]}, {’text’: ’Meghan’, ’indices’: [101, 108]}, {’text’: ’funkopop’, ’indices’: [109, 118]}]
## 4899 [{’text’: ’Shorts’, ’indices’: [72, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’Funko’, ’indices’: [94, 100]}, {’text’: ’Meghan’, ’indices’: [101, 108]}, {’text’: ’funkopop’, ’indices’: [109, 118]}]
## 4900 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 4901 [{’text’: ’MeghanMarkle’, ’indices’: [84, 97]}]
## 4902 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 4903 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 4904 [{’text’: ’MeghanMarkle’, ’indices’: [75, 88]}]
## 4905 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 4906 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 4907 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 4908 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 4909 [{’text’: ’Oprah’, ’indices’: [17, 23]}, {’text’: ’OprahWinfrey’, ’indices’: [24, 37]}]
## 4910 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 4911 [{’text’: ’SelfVictimization’, ’indices’: [10, 28]}, {’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’Trumps’, ’indices’: [57, 64]}]
## 4912 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’better’, ’indices’: [57, 64]}, {’text’: ’goodriddance’, ’indices’: [67, 80]}]
## 4913 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’better’, ’indices’: [57, 64]}, {’text’: ’goodriddance’, ’indices’: [67, 80]}]
## 4914 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 4915 [{’text’: ’MeghanMarkle’, ’indices’: [82, 95]}]
## 4916 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 4917 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}]
## 4918 []
## 4919 [{’text’: ’OprahMeghanHarry’, ’indices’: [38, 55]}, {’text’: ’InternationalWomensDay’, ’indices’: [56, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’100DaysOfCode’, ’indices’: [94, 108]}]
## 4920 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 4921 []
## 4922 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 4923 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 4924 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 4925 []
## 4926 []
## 4927 []
## 4928 [{’text’: ’music’, ’indices’: [55, 61]}, {’text’: ’art’, ’indices’: [63, 67]}, {’text’: ’MusicOnAMission’, ’indices’: [69, 85]}, {’text’: ’Barryjhay’, ’indices’: [87, 97]}, {’text’: ’MeghanAndHarry’, ’indices’: [99, 114]}]
## 4929 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’MeghanAndHarry’, ’indices’: [66, 81]}]
## 4930 []
## 4931 []
## 4932 [{’text’: ’MeghanMarkle’, ’indices’: [51, 64]}]
408
## 4933 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’Coming2America’, ’indices’: [84, 99]}]
## 4934 [{’text’: ’bstrong’, ’indices’: [50, 58]}]
## 4935 [{’text’: ’bstrong’, ’indices’: [50, 58]}]
## 4936 [{’text’: ’bstrong’, ’indices’: [50, 58]}]
## 4937 [{’text’: ’bstrong’, ’indices’: [50, 58]}]
## 4938 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4939 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4940 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 4941 [{’text’: ’meghanmarkle’, ’indices’: [12, 25]}]
## 4942 [{’text’: ’dntoprah’, ’indices’: [60, 69]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [70, 92]}, {’text’: ’Royals’, ’indices’: [93, 100]}, {’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 4943 [{’text’: ’KateMiddleton’, ’indices’: [97, 111]}]
## 4944 []
## 4945 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 4946 [{’text’: ’MeghanAndHarry’, ’indices’: [22, 37]}, {’text’: ’Meghan’, ’indices’: [38, 45]}, {’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’Megxit’, ’indices’: [60, 67]}, {’text’: ’QueenElizabeth’, ’indices’: [68, 83]}]
## 4947 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’harry’, ’indices’: [67, 73]}]
## 4948 [{’text’: ’etsy’, ’indices’: [66, 71]}]
## 4949 []
## 4950 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [24, 46]}, {’text’: ’CNN’, ’indices’: [47, 51]}, {’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’Harry’, ’indices’: [66, 72]}, {’text’: ’Meghan’, ’indices’: [73, 80]}, {’text’: ’OprahMeghanHarry’, ’indices’: [86, 103]}]
## 4951 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [24, 46]}, {’text’: ’CNN’, ’indices’: [47, 51]}, {’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’Harry’, ’indices’: [66, 72]}, {’text’: ’Meghan’, ’indices’: [73, 80]}, {’text’: ’OprahMeghanHarry’, ’indices’: [86, 103]}]
## 4952 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’fiction’, ’indices’: [103, 111]}]
## 4953 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 4954 [{’text’: ’PiersMorgan’, ’indices’: [65, 77]}]
## 4955 [{’text’: ’PiersMorgan’, ’indices’: [65, 77]}]
## 4956 []
## 4957 [{’text’: ’MeghanMarkle’, ’indices’: [36, 49]}, {’text’: ’MeghanAndHarry’, ’indices’: [77, 92]}, {’text’: ’goodbyepiers’, ’indices’: [94, 107]}]
## 4958 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 4959 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 4960 []
## 4961 []
## 4962 []
## 4963 []
## 4964 [{’text’: ’SerenaWilliams’, ’indices’: [101, 116]}, {’text’: ’MeghanMarkle’, ’indices’: [117, 130]}]
## 4965 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}]
## 4966 []
## 4967 []
## 4968 []
## 4969 []
## 4970 []
## 4971 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 4972 [{’text’: ’PrinceAndrew’, ’indices’: [31, 44]}]
## 4973 []
## 4974 []
## 4975 []
## 4976 [{’text’: ’WeDeyPlay’, ’indices’: [38, 48]}]
## 4977 [{’text’: ’WeDeyPlay’, ’indices’: [38, 48]}]
## 4978 [{’text’: ’WeDeyPlay’, ’indices’: [38, 48]}]
## 4979 [{’text’: ’meghanmarkle’, ’indices’: [101, 114]}]
## 4980 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4981 [{’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 4982 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4983 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 4984 []
## 4985 []
## 4986 [{’text’: ’PrinceCharles’, ’indices’: [39, 53]}]
409
## 4987 [{’text’: ’PrinceCharles’, ’indices’: [39, 53]}]
## 4988 [{’text’: ’OprahWinfrey’, ’indices’: [0, 13]}, {’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 4989 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’Meghan’, ’indices’: [96, 103]}]
## 4990 [{’text’: ’MeghanMarkle’, ’indices’: [37, 50]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [54, 76]}, {’text’: ’Meghan’, ’indices’: [96, 103]}]
## 4991 []
## 4992 []
## 4993 []
## 4994 []
## 4995 []
## 4996 []
## 4997 []
## 4998 []
## 4999 []
## 5000 []
## 5001 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}]
## 5002 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’M’, ’indices’: [63, 65]}]
## 5003 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’M’, ’indices’: [63, 65]}]
## 5004 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}, {’text’: ’OprahMeghanHarry’, ’indices’: [113, 130]}]
## 5005 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 5006 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 5007 [{’text’: ’MeghanMarkle’, ’indices’: [81, 94]}]
## 5008 [{’text’: ’MeghanMarkle’, ’indices’: [33, 46]}]
## 5009 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 5010 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 5011 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 5012 [{’text’: ’TheRoyals’, ’indices’: [12, 22]}, {’text’: ’TheFirm’, ’indices’: [23, 31]}, {’text’: ’theQueen’, ’indices’: [32, 41]}, {’text’: ’QueenElizabeth’, ’indices’: [42, 57]}, {’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 5013 [{’text’: ’GMB’, ’indices’: [63, 67]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [68, 90]}, {’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 5014 [{’text’: ’BreakingNews’, ’indices’: [0, 13]}, {’text’: ’news’, ’indices’: [55, 60]}]
## 5015 [{’text’: ’BreakingNews’, ’indices’: [0, 13]}, {’text’: ’news’, ’indices’: [55, 60]}]
## 5016 []
## 5017 [{’text’: ’MeghanMarkle’, ’indices’: [89, 102]}]
## 5018 [{’text’: ’OprahMeghanHarry’, ’indices’: [51, 68]}, {’text’: ’MeghanMarkle’, ’indices’: [69, 82]}, {’text’: ’PrinceHarry’, ’indices’: [83, 95]}]
## 5019 [{’text’: ’OprahMeghanHarry’, ’indices’: [80, 97]}]
## 5020 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}, {’text’: ’meganharryoprah’, ’indices’: [105, 121]}]
## 5021 []
## 5022 []
## 5023 []
## 5024 []
## 5025 []
## 5026 []
## 5027 []
## 5028 []
## 5029 []
## 5030 []
## 5031 [{’text’: ’goodmorningbritain’, ’indices’: [48, 67]}, {’text’: ’piersmorganIsABully’, ’indices’: [68, 88]}, {’text’: ’MeghanMarkle’, ’indices’: [89, 102]}, {’text’: ’meghanharryoprah’, ’indices’: [103, 120]}]
## 5032 [{’text’: ’MeghanMarkle’, ’indices’: [28, 41]}, {’text’: ’PrincessDiana’, ’indices’: [86, 100]}]
## 5033 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}]
## 5034 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 5035 [{’text’: ’MeghanMarkle’, ’indices’: [92, 105]}]
## 5036 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [38, 60]}, {’text’: ’MeghanAndHarry’, ’indices’: [61, 76]}, {’text’: ’BritishMonarchy’, ’indices’: [77, 93]}, {’text’: ’BritishRoyalFamily’, ’indices’: [94, 113]}]
## 5037 []
## 5038 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 5039 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}, {’text’: ’decency’, ’indices’: [53, 61]}]
## 5040 []
410
## 5041 []
## 5042 [{’text’: ’justsaying’, ’indices’: [45, 56]}]
## 5043 [{’text’: ’justsaying’, ’indices’: [45, 56]}]
## 5044 [{’text’: ’bombay’, ’indices’: [31, 38]}, {’text’: ’trump’, ’indices’: [60, 66]}, {’text’: ’bananarepublic’, ’indices’: [74, 89]}]
## 5045 [{’text’: ’bombay’, ’indices’: [31, 38]}, {’text’: ’trump’, ’indices’: [60, 66]}, {’text’: ’bananarepublic’, ’indices’: [74, 89]}]
## 5046 []
## 5047 []
## 5048 [{’text’: ’MeghanMarkle’, ’indices’: [60, 73]}]
## 5049 []
## 5050 [{’text’: ’MeghanMarkle’, ’indices’: [63, 76]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [80, 102]}]
## 5051 [{’text’: ’Mixtape’, ’indices’: [13, 21]}, {’text’: ’proboards’, ’indices’: [97, 107]}, {’text’: ’Music’, ’indices’: [108, 114]}]
## 5052 [{’text’: ’Mixtape’, ’indices’: [13, 21]}, {’text’: ’proboards’, ’indices’: [97, 107]}, {’text’: ’Music’, ’indices’: [108, 114]}]
## 5053 []
## 5054 []
## 5055 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 5056 [{’text’: ’MeghanMarkle’, ’indices’: [67, 80]}]
## 5057 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}]
## 5058 []
## 5059 [{’text’: ’Oprah’, ’indices’: [22, 28]}, {’text’: ’MeghanMarkle’, ’indices’: [29, 42]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [43, 65]}]
## 5060 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 5061 []
## 5062 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’PrinceAndrew’, ’indices’: [83, 96]}]
## 5063 [{’text’: ’PrinceHarry’, ’indices’: [66, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 5064 [{’text’: ’PrinceHarry’, ’indices’: [66, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 5065 [{’text’: ’PrinceHarry’, ’indices’: [66, 78]}, {’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 5066 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’KateMiddleton’, ’indices’: [52, 66]}]
## 5067 []
## 5068 []
## 5069 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 5070 []
## 5071 []
## 5072 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 5073 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 5074 [{’text’: ’meghanisaliar’, ’indices’: [17, 31]}, {’text’: ’Meghan’, ’indices’: [64, 71]}, {’text’: ’PrincessDiana’, ’indices’: [77, 91]}, {’text’: ’PrincesDiana’, ’indices’: [94, 107]}]
## 5075 []
## 5076 []
## 5077 []
## 5078 [{’text’: ’MeghanMarkle’, ’indices’: [91, 104]}]
## 5079 [{’text’: ’alexberesford’, ’indices’: [81, 95]}]
## 5080 [{’text’: ’alexberesford’, ’indices’: [81, 95]}]
## 5081 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 5082 []
## 5083 []
## 5084 []
## 5085 []
## 5086 []
## 5087 []
## 5088 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}]
## 5089 []
## 5090 []
## 5091 [{’text’: ’PrinceHarry’, ’indices’: [81, 93]}]
## 5092 []
## 5093 []
## 5094 []
411
## 5095 []
## 5096 []
## 5097 []
## 5098 []
## 5099 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 5100 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [86, 108]}]
## 5101 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 5102 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}]
## 5103 [{’text’: ’MeghanMarkle’, ’indices’: [39, 52]}, {’text’: ’OprahMeghanHarry’, ’indices’: [53, 70]}]
## 5104 [{’text’: ’MeghanMarkle’, ’indices’: [71, 84]}]
## 5105 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 5106 []
## 5107 [{’text’: ’piersmorgan’, ’indices’: [62, 74]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [75, 97]}, {’text’: ’MeghanAndHarry’, ’indices’: [98, 113]}]
## 5108 []
## 5109 []
## 5110 []
## 5111 []
## 5112 []
## 5113 []
## 5114 []
## 5115 []
## 5116 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 5117 [{’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 5118 []
## 5119 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 5120 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 5121 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 5122 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 5123 [{’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 5124 [{’text’: ’MeghanMarkle’, ’indices’: [69, 82]}]
## 5125 []
## 5126 []
## 5127 [{’text’: ’MeghanMarkle’, ’indices’: [73, 86]}, {’text’: ’Oprah’, ’indices’: [95, 101]}]
## 5128 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}, {’text’: ’HarryandMeghan’, ’indices’: [84, 99]}]
## 5129 [{’text’: ’MeghanMarkle’, ’indices’: [80, 93]}, {’text’: ’OprahMeghanHarry’, ’indices’: [95, 112]}, {’text’: ’Commonwealth’, ’indices’: [114, 127]}]
## 5130 [{’text’: ’Harry’, ’indices’: [28, 34]}, {’text’: ’RoyalFamily’, ’indices’: [41, 53]}, {’text’: ’Royals’, ’indices’: [54, 61]}, {’text’: ’USA’, ’indices’: [71, 75]}]
## 5131 [{’text’: ’Harry’, ’indices’: [28, 34]}, {’text’: ’RoyalFamily’, ’indices’: [41, 53]}, {’text’: ’Royals’, ’indices’: [54, 61]}, {’text’: ’USA’, ’indices’: [71, 75]}]
## 5132 []
## 5133 []
## 5134 []
## 5135 []
## 5136 [{’text’: ’PrinceHarry’, ’indices’: [73, 85]}, {’text’: ’MeghanMarkle’, ’indices’: [90, 103]}]
## 5137 [{’text’: ’racism’, ’indices’: [17, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’RoyalFamily’, ’indices’: [98, 110]}]
## 5138 []
## 5139 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [90, 112]}]
## 5140 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}]
## 5141 [{’text’: ’darrengrimes’, ’indices’: [75, 88]}]
## 5142 [{’text’: ’darrengrimes’, ’indices’: [75, 88]}]
## 5143 [{’text’: ’darrengrimes’, ’indices’: [75, 88]}]
## 5144 []
## 5145 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 5146 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}]
## 5147 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 5148 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
412
## 5149 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 5150 [{’text’: ’FoxNews’, ’indices’: [25, 33]}]
## 5151 [{’text’: ’WeLoveYouMeghan’, ’indices’: [45, 61]}, {’text’: ’MeghanMarkle’, ’indices’: [63, 76]}]
## 5152 [{’text’: ’MeghanMarkle’, ’indices’: [53, 66]}]
## 5153 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 5154 [{’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 5155 [{’text’: ’justbecauseimbreathing’, ’indices’: [21, 44]}, {’text’: ’biracial’, ’indices’: [45, 54]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [69, 91]}]
## 5156 [{’text’: ’whitewomen’, ’indices’: [100, 111]}]
## 5157 [{’text’: ’Meghan’, ’indices’: [44, 51]}, {’text’: ’SHERO’, ’indices’: [56, 62]}]
## 5158 [{’text’: ’Meghan’, ’indices’: [44, 51]}, {’text’: ’SHERO’, ’indices’: [56, 62]}]
## 5159 [{’text’: ’MeghanMarkle’, ’indices’: [101, 114]}]
## 5160 []
## 5161 []
## 5162 []
## 5163 []
## 5164 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 5165 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}, {’text’: ’PrinceHarry’, ’indices’: [61, 73]}, {’text’: ’UK’, ’indices’: [85, 88]}, {’text’: ’RoyalFamily’, ’indices’: [89, 101]}]
## 5166 [{’text’: ’MeghanMarkle’, ’indices’: [70, 83]}, {’text’: ’sussexsquad’, ’indices’: [84, 96]}]
## 5167 [{’text’: ’MeghanMarkle’, ’indices’: [17, 30]}, {’text’: ’MeghanAndHarry’, ’indices’: [31, 46]}]
## 5168 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 5169 []
## 5170 []
## 5171 [{’text’: ’MeghanMarkle’, ’indices’: [8, 21]}]
## 5172 [{’text’: ’PantomineDameShoes’, ’indices’: [71, 90]}, {’text’: ’BlockPussy’, ’indices’: [93, 104]}]
## 5173 [{’text’: ’MeghanAndHarry’, ’indices’: [90, 105]}]
## 5174 []
## 5175 []
## 5176 []
## 5177 []
## 5178 []
## 5179 []
## 5180 []
## 5181 []
## 5182 []
## 5183 []
## 5184 [{’text’: ’OprahMeghanHarryAfrica’, ’indices’: [53, 76]}, {’text’: ’HarryandMeghan’, ’indices’: [77, 92]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 5185 []
## 5186 []
## 5187 [{’text’: ’MeghanAndHarry’, ’indices’: [21, 36]}]
## 5188 [{’text’: ’MeghanMarkle’, ’indices’: [18, 31]}, {’text’: ’people’, ’indices’: [77, 84]}, {’text’: ’beyond’, ’indices’: [88, 95]}, {’text’: ’rehearsed’, ’indices’: [105, 115]}]
## 5189 [{’text’: ’MeghanMarkle’, ’indices’: [31, 44]}]
## 5190 []
## 5191 [{’text’: ’MeghanMarkle’, ’indices’: [14, 27]}]
## 5192 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 5193 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}]
## 5194 []
## 5195 []
## 5196 []
## 5197 []
## 5198 []
## 5199 []
## 5200 []
## 5201 []
## 5202 [{’text’: ’OprahMeghanHarry’, ’indices’: [81, 98]}]
413
## 5203 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 5204 [{’text’: ’harrymeghan’, ’indices’: [47, 59]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [60, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’PiersMorgan’, ’indices’: [97, 109]}]
## 5205 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 5206 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 5207 []
## 5208 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’OprahMeghanHarry’, ’indices’: [70, 87]}]
## 5209 [{’text’: ’MeghanMarkle’, ’indices’: [52, 65]}, {’text’: ’PrinceHarry’, ’indices’: [66, 78]}, {’text’: ’HarryandMeghan’, ’indices’: [79, 94]}, {’text’: ’Royals’, ’indices’: [95, 102]}]
## 5210 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 5211 []
## 5212 [{’text’: ’MeghanMarkle’, ’indices’: [41, 54]}]
## 5213 [{’text’: ’piersmorgan’, ’indices’: [58, 70]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 5214 [{’text’: ’piersmorgan’, ’indices’: [58, 70]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 5215 [{’text’: ’piersmorgan’, ’indices’: [58, 70]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 5216 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 5217 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [35, 48]}]
## 5218 []
## 5219 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 5220 []
## 5221 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 5222 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 5223 [{’text’: ’MeghanMarkle’, ’indices’: [68, 81]}]
## 5224 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [22, 44]}, {’text’: ’MeghanAndHarry’, ’indices’: [45, 60]}, {’text’: ’MeghanMarkle’, ’indices’: [61, 74]}, {’text’: ’OprahMeganHarry’, ’indices’: [93, 109]}]
## 5225 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 5226 []
## 5227 []
## 5228 []
## 5229 [{’text’: ’OprahMeganHarry’, ’indices’: [63, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 5230 [{’text’: ’OprahMeganHarry’, ’indices’: [63, 79]}, {’text’: ’MeghanMarkle’, ’indices’: [80, 93]}]
## 5231 []
## 5232 []
## 5233 []
## 5234 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}, {’text’: ’PrinceHarry’, ’indices’: [80, 92]}]
## 5235 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’PrinceAndrew’, ’indices’: [66, 79]}]
## 5236 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [7, 29]}, {’text’: ’MeghanMarkleisaLiar’, ’indices’: [49, 69]}, {’text’: ’MeghanMarkle’, ’indices’: [71, 84]}, {’text’: ’PrinceHarry’, ’indices’: [97, 109]}]
## 5237 [{’text’: ’whitesupremacy’, ’indices’: [95, 110]}]
## 5238 [{’text’: ’whitesupremacy’, ’indices’: [95, 110]}]
## 5239 [{’text’: ’whitesupremacy’, ’indices’: [95, 110]}]
## 5240 [{’text’: ’Oprah’, ’indices’: [11, 17]}, {’text’: ’MeghanMarkle’, ’indices’: [22, 35]}]
## 5241 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’racism’, ’indices’: [105, 112]}]
## 5242 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’racism’, ’indices’: [105, 112]}]
## 5243 []
## 5244 []
## 5245 []
## 5246 []
## 5247 []
## 5248 [{’text’: ’USvsBillieHoliday’, ’indices’: [99, 117]}]
## 5249 []
## 5250 []
## 5251 []
## 5252 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 5253 [{’text’: ’MeghanMarkle’, ’indices’: [5, 18]}]
## 5254 []
## 5255 []
## 5256 []
414
## 5257 [{’text’: ’meghanmarkle’, ’indices’: [85, 98]}]
## 5258 []
## 5259 [{’text’: ’MeghanMarkle’, ’indices’: [65, 78]}]
## 5260 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 5261 [{’text’: ’MeghanMarkle’, ’indices’: [62, 75]}]
## 5262 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}, {’text’: ’MeghanAndHarry’, ’indices’: [30, 45]}, {’text’: ’Oprah’, ’indices’: [46, 52]}]
## 5263 []
## 5264 []
## 5265 []
## 5266 []
## 5267 []
## 5268 []
## 5269 []
## 5270 []
## 5271 []
## 5272 []
## 5273 [{’text’: ’byepiers’, ’indices’: [90, 99]}, {’text’: ’dontcomeback’, ’indices’: [100, 113]}]
## 5274 [{’text’: ’byepiers’, ’indices’: [90, 99]}, {’text’: ’dontcomeback’, ’indices’: [100, 113]}]
## 5275 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 5276 [{’text’: ’MeghanMarkle’, ’indices’: [24, 37]}]
## 5277 [{’text’: ’meghanmarkle’, ’indices’: [12, 25]}]
## 5278 []
## 5279 [{’text’: ’MeghanMarkle’, ’indices’: [9, 22]}]
## 5280 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [98, 120]}, {’text’: ’PiersMorgan’, ’indices’: [121, 133]}]
## 5281 [{’text’: ’MeghanMarkle’, ’indices’: [57, 70]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [98, 120]}, {’text’: ’PiersMorgan’, ’indices’: [121, 133]}]
## 5282 [{’text’: ’MeghanMarkle’, ’indices’: [16, 29]}]
## 5283 []
## 5284 []
## 5285 []
## 5286 []
## 5287 [{’text’: ’MeghanAndHarry’, ’indices’: [60, 75]}, {’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’meghanharryoprah’, ’indices’: [91, 108]}]
## 5288 [{’text’: ’askmeg’, ’indices’: [17, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 5289 [{’text’: ’askmeg’, ’indices’: [17, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 5290 [{’text’: ’askmeg’, ’indices’: [17, 24]}, {’text’: ’MeghanMarkle’, ’indices’: [72, 85]}]
## 5291 [{’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 5292 []
## 5293 []
## 5294 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 5295 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 5296 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 5297 []
## 5298 []
## 5299 []
## 5300 []
## 5301 []
## 5302 []
## 5303 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [73, 95]}, {’text’: ’HarryandMeghan’, ’indices’: [96, 111]}, {’text’: ’RoyalFamily’, ’indices’: [112, 124]}, {’text’: ’MeghanMarkle’, ’indices’: [125, 138]}]
## 5304 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [73, 95]}, {’text’: ’HarryandMeghan’, ’indices’: [96, 111]}, {’text’: ’RoyalFamily’, ’indices’: [112, 124]}, {’text’: ’MeghanMarkle’, ’indices’: [125, 138]}]
## 5305 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 5306 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 5307 [{’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 5308 [{’text’: ’WhitePrivilege’, ’indices’: [52, 67]}, {’text’: ’meganandharry’, ’indices’: [69, 83]}]
## 5309 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}]
## 5310 []
415
## 5311 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5312 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5313 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5314 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5315 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5316 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5317 [{’text’: ’jeremykyle’, ’indices’: [8, 19]}]
## 5318 [{’text’: ’MeghanMarkle’, ’indices’: [49, 62]}, {’text’: ’GMB’, ’indices’: [95, 99]}, {’text’: ’onesided’, ’indices’: [100, 109]}]
## 5319 [{’text’: ’MeghanMarkle’, ’indices’: [27, 40]}]
## 5320 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}]
## 5321 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}, {’text’: ’MeghanAndHarry’, ’indices’: [94, 109]}]
## 5322 [{’text’: ’Suits’, ’indices’: [52, 58]}, {’text’: ’MeghanMarkle’, ’indices’: [95, 108]}]
## 5323 []
## 5324 [{’text’: ’MeghanMarkle’, ’indices’: [21, 34]}]
## 5325 [{’text’: ’MeghanMarkle’, ’indices’: [34, 47]}]
## 5326 [{’text’: ’MeghanMarkle’, ’indices’: [19, 32]}, {’text’: ’HarryandMeghan’, ’indices’: [39, 54]}, {’text’: ’LoveAlwaysWins’, ’indices’: [55, 70]}, {’text’: ’ServiceisUniversal’, ’indices’: [71, 90]}, {’text’: ’OprahMeghanHarry’, ’indices’: [91, 108]}]
## 5327 []
## 5328 [{’text’: ’HarryandMeghanonOprah’, ’indices’: [0, 22]}, {’text’: ’MeghanMarkle’, ’indices’: [29, 42]}]
## 5329 [{’text’: ’MeghanMarkle’, ’indices’: [30, 43]}, {’text’: ’OprahMeghanHarry’, ’indices’: [68, 85]}]
## 5330 [{’text’: ’YogArt’, ’indices’: [30, 37]}, {’text’: ’OprahMeghanHarry’, ’indices’: [43, 60]}, {’text’: ’Oprah’, ’indices’: [78, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 5331 [{’text’: ’YogArt’, ’indices’: [30, 37]}, {’text’: ’OprahMeghanHarry’, ’indices’: [43, 60]}, {’text’: ’Oprah’, ’indices’: [78, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 5332 [{’text’: ’YogArt’, ’indices’: [30, 37]}, {’text’: ’OprahMeghanHarry’, ’indices’: [43, 60]}, {’text’: ’Oprah’, ’indices’: [78, 84]}, {’text’: ’MeghanMarkle’, ’indices’: [85, 98]}]
## 5333 [{’text’: ’MeghanMarkle’, ’indices’: [54, 67]}]
## 5334 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 5335 [{’text’: ’MeghanMarkle’, ’indices’: [40, 53]}]
## 5336 [{’text’: ’ITV’, ’indices’: [14, 18]}]
## 5337 []
## 5338 []
## 5339 []
## 5340 [{’text’: ’piersmorgan’, ’indices’: [23, 35]}, {’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 5341 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 5342 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}]
## 5343 [{’text’: ’MLK’, ’indices’: [36, 40]}]
## 5344 [{’text’: ’PrinceHarry’, ’indices’: [91, 103]}]
## 5345 [{’text’: ’PrinceHarry’, ’indices’: [91, 103]}]
## 5346 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [44, 66]}, {’text’: ’MeghanAndHarry’, ’indices’: [67, 82]}, {’text’: ’MeghanMarkle’, ’indices’: [83, 96]}, {’text’: ’Megxit’, ’indices’: [97, 104]}]
## 5347 [{’text’: ’OfCom’, ’indices’: [47, 53]}, {’text’: ’PiersMorgan’, ’indices’: [95, 107]}]
## 5348 [{’text’: ’OfCom’, ’indices’: [47, 53]}, {’text’: ’PiersMorgan’, ’indices’: [95, 107]}]
## 5349 [{’text’: ’OfCom’, ’indices’: [47, 53]}, {’text’: ’PiersMorgan’, ’indices’: [95, 107]}]
## 5350 [{’text’: ’OfCom’, ’indices’: [47, 53]}, {’text’: ’PiersMorgan’, ’indices’: [95, 107]}]
## 5351 [{’text’: ’MeghanMarkle’, ’indices’: [35, 48]}, {’text’: ’American’, ’indices’: [59, 68]}]
## 5352 [{’text’: ’MeghanMarkle’, ’indices’: [78, 91]}, {’text’: ’MeghanAndHarry’, ’indices’: [93, 108]}]
## 5353 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’ThomasMarkle’, ’indices’: [59, 72]}]
## 5354 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 5355 [{’text’: ’MeghanMarkle’, ’indices’: [48, 61]}]
## 5356 [{’text’: ’MeghanMarkle’, ’indices’: [20, 33]}, {’text’: ’MeghanAndHarry’, ’indices’: [34, 49]}, {’text’: ’HarryandMeghanonOprah’, ’indices’: [50, 72]}]
## 5357 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 5358 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 5359 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}]
## 5360 [{’text’: ’MeghanAndHarry’, ’indices’: [57, 72]}, {’text’: ’MeghanMarkle’, ’indices’: [73, 86]}]
## 5361 [{’text’: ’MeghanAndHarry’, ’indices’: [31, 46]}, {’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [61, 83]}]
## 5362 []
## 5363 [{’text’: ’MuchAdoAboutNothing’, ’indices’: [16, 36]}, {’text’: ’MeghanMarkle’, ’indices’: [93, 106]}]
## 5364 [{’text’: ’PrinceHarry’, ’indices’: [24, 36]}, {’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
416
## 5365 []
## 5366 [{’text’: ’MeghanMarkle’, ’indices’: [45, 58]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [59, 81]}, {’text’: ’MeghanAndHarry’, ’indices’: [82, 97]}]
## 5367 []
## 5368 [{’text’: ’meghanmarkle’, ’indices’: [0, 13]}, {’text’: ’SerenaWilliams’, ’indices’: [14, 29]}, {’text’: ’InternationalWomensDay’, ’indices’: [87, 110]}]
## 5369 [{’text’: ’MeghanMarkle’, ’indices’: [0, 13]}]
## 5370 [{’text’: ’MeghanMarkle’, ’indices’: [55, 68]}]
## 5371 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’MeghanAndHarry’, ’indices’: [67, 82]}]
## 5372 [{’text’: ’MeghanMarkle’, ’indices’: [32, 45]}, {’text’: ’MeghanAndHarry’, ’indices’: [67, 82]}]
## 5373 []
## 5374 [{’text’: ’MeghanMarkle’, ’indices’: [99, 112]}]
## 5375 [{’text’: ’PRINCEHARRY’, ’indices’: [0, 12]}]
## 5376 [{’text’: ’MeghanMarkle’, ’indices’: [46, 59]}, {’text’: ’Oprah’, ’indices’: [73, 79]}]
## 5377 []
## 5378 []
## 5379 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [59, 81]}, {’text’: ’MeghanAndHarry’, ’indices’: [82, 97]}, {’text’: ’MeghanMarkle’, ’indices’: [98, 111]}]
## 5380 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’meghan’, ’indices’: [91, 98]}, {’text’: ’PiersMorgan’, ’indices’: [99, 111]}]
## 5381 [{’text’: ’MeghanMarkle’, ’indices’: [77, 90]}, {’text’: ’meghan’, ’indices’: [91, 98]}, {’text’: ’PiersMorgan’, ’indices’: [99, 111]}]
## 5382 [{’text’: ’MeghanMarkle’, ’indices’: [50, 63]}]
## 5383 [{’text’: ’MeghanMarkle’, ’indices’: [58, 71]}]
## 5384 [{’text’: ’MeghanMarkle’, ’indices’: [87, 100]}, {’text’: ’MeghanAndHarry’, ’indices’: [102, 117]}]
## 5385 []
## 5386 [{’text’: ’MeghanMarkle’, ’indices’: [47, 60]}, {’text’: ’MeghanAndHarry’, ’indices’: [64, 79]}, {’text’: ’PiersMorgan’, ’indices’: [102, 114]}]
## 5387 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [65, 87]}, {’text’: ’MeghanMarkle’, ’indices’: [88, 101]}]
## 5388 []
## 5389 []
## 5390 [{’text’: ’MeghanMarkle’, ’indices’: [13, 26]}, {’text’: ’gmb’, ’indices’: [60, 64]}]
## 5391 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 5392 [{’text’: ’MeghanMarkle’, ’indices’: [74, 87]}]
## 5393 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 5394 [{’text’: ’MeghanMarkle’, ’indices’: [100, 113]}]
## 5395 [{’text’: ’MeghanMarkle’, ’indices’: [15, 28]}]
## 5396 [{’text’: ’MeghanMarkle’, ’indices’: [64, 77]}]
## 5397 [{’text’: ’piersmorgan’, ’indices’: [23, 35]}, {’text’: ’jobless’, ’indices’: [61, 69]}, {’text’: ’sacked’, ’indices’: [74, 81]}, {’text’: ’driven’, ’indices’: [90, 97]}, {’text’: ’USA’, ’indices’: [103, 107]}]
## 5398 [{’text’: ’piersmorgan’, ’indices’: [23, 35]}, {’text’: ’jobless’, ’indices’: [61, 69]}, {’text’: ’sacked’, ’indices’: [74, 81]}, {’text’: ’driven’, ’indices’: [90, 97]}, {’text’: ’USA’, ’indices’: [103, 107]}]
## 5399 [{’text’: ’piersmorgan’, ’indices’: [23, 35]}, {’text’: ’jobless’, ’indices’: [61, 69]}, {’text’: ’sacked’, ’indices’: [74, 81]}, {’text’: ’driven’, ’indices’: [90, 97]}, {’text’: ’USA’, ’indices’: [103, 107]}]
## 5400 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 5401 [{’text’: ’MeghanMarkle’, ’indices’: [79, 92]}]
## 5402 [{’text’: ’HarryMeghanOprah’, ’indices’: [65, 82]}, {’text’: ’Diana’, ’indices’: [83, 89]}, {’text’: ’MeghanandHarryonOprah’, ’indices’: [90, 112]}, {’text’: ’MeghanMarkle’, ’indices’: [113, 126]}]
## 5403 []
## 5404 []
## 5405 []
## 5406 []
## 5407 []
## 5408 [{’text’: ’MeghanMarkle’, ’indices’: [26, 39]}, {’text’: ’OprahMeghanHarry’, ’indices’: [70, 87]}]
## 5409 [{’text’: ’MeghanandHarryonOprah’, ’indices’: [20, 42]}]
## 5410 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5411 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5412 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5413 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5414 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5415 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5416 [{’text’: ’dapomarino’, ’indices’: [12, 23]}]
## 5417 [{’text’: ’meghanmarkleisabully’, ’indices’: [53, 74]}, {’text’: ’princeharry’, ’indices’: [75, 87]}, {’text’: ’meghanmarkle’, ’indices’: [88, 101]}]
## 5418 [{’text’: ’meghanmarkleisabully’, ’indices’: [53, 74]}, {’text’: ’princeharry’, ’indices’: [75, 87]}, {’text’: ’meghanmarkle’, ’indices’: [88, 101]}]
417
## 5419 [{’text’: ’meghanmarkleisabully’, ’indices’: [53, 74]}, {’text’: ’princeharry’, ’indices’: [75, 87]}, {’text’: ’meghanmarkle’, ’indices’: [88, 101]}]
## 5420 [{’text’: ’PrinceHarry’, ’indices’: [40, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 5421 [{’text’: ’PrinceHarry’, ’indices’: [40, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 5422 [{’text’: ’PrinceHarry’, ’indices’: [40, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 5423 [{’text’: ’PrinceHarry’, ’indices’: [40, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 5424 [{’text’: ’PrinceHarry’, ’indices’: [40, 52]}, {’text’: ’MeghanMarkle’, ’indices’: [59, 72]}]
## 5425 []
## 5426 []
## 5427 [{’text’: ’JusticeForGeorgeFloyd’, ’indices’: [82, 104]}]
## 5428 []
## 5429 []
## 5430 []
## 5431 [{’text’: ’workplace’, ’indices’: [83, 93]}, {’text’: ’sexualharassment’, ’indices’: [94, 111]}]
## 5432 [{’text’: ’Shorts’, ’indices’: [70, 77]}, {’text’: ’MeghanMarkle’, ’indices’: [78, 91]}, {’text’: ’Funko’, ’indices’: [92, 98]}, {’text’: ’Meghan’, ’indices’: [99, 106]}, {’text’: ’funkopop’, ’indices’: [107, 116]}]
## 5433 [{’text’: ’Shorts’, ’indices’: [70, 77]}, {’text’: ’MeghanMarkle’, ’indices’: [78, 91]}, {’text’: ’Funko’, ’indices’: [92, 98]}, {’text’: ’Meghan’, ’indices’: [99, 106]}, {’text’: ’funkopop’, ’indices’: [107, 116]}]
## id date_of_tweet datetime
## 1 4238 2021-03-10 2021-03-10 10:41:18
## 2 19187 2021-03-08 2021-03-08 13:54:37
## 3 1760 2021-03-11 2021-03-11 05:22:21
## 4 48661 2021-03-07 2021-03-06 20:53:26
## 5 51137 2021-03-05 2021-03-05 12:00:05
## 6 49676 2021-03-06 2021-03-06 05:57:13
## 7 49676 2021-03-06 2021-03-06 05:57:13
## 8 49676 2021-03-06 2021-03-06 05:57:13
## 9 51436 2021-03-05 2021-03-05 08:18:34
## 10 51436 2021-03-05 2021-03-05 08:18:34
## 11 7457 2021-03-09 2021-03-09 17:49:48
## 12 7457 2021-03-09 2021-03-09 17:49:48
## 13 7457 2021-03-09 2021-03-09 17:49:48
## 14 19035 2021-03-08 2021-03-08 14:02:16
## 15 12349 2021-03-09 2021-03-09 04:03:51
## 16 12349 2021-03-09 2021-03-09 04:03:51
## 17 12349 2021-03-09 2021-03-09 04:03:51
## 18 20932 2021-03-08 2021-03-08 11:54:10
## 19 20932 2021-03-08 2021-03-08 11:54:10
## 20 33100 2021-03-08 2021-03-07 22:23:56
## 21 31555 2021-03-08 2021-03-07 23:22:38
## 22 46403 2021-03-07 2021-03-07 17:01:02
## 23 31913 2021-03-08 2021-03-07 23:08:33
## 24 46329 2021-03-07 2021-03-07 17:26:37
## 25 46329 2021-03-07 2021-03-07 17:26:37
## 26 3173 2021-03-10 2021-03-10 15:19:57
## 27 14686 2021-03-09 2021-03-08 20:07:36
## 28 32553 2021-03-08 2021-03-07 22:42:00
## 29 41020 2021-03-08 2021-03-07 20:51:14
## 30 30241 2021-03-08 2021-03-08 00:24:35
## 31 12218 2021-03-09 2021-03-09 04:59:02
## 32 12218 2021-03-09 2021-03-09 04:59:02
## 33 52710 2021-03-04 2021-03-04 10:45:50
## 34 4601 2021-03-10 2021-03-10 09:18:04
## 35 10514 2021-03-09 2021-03-09 11:10:50
## 36 12070 2021-03-09 2021-03-09 05:53:40
## 37 3571 2021-03-10 2021-03-10 13:13:05
## 38 12261 2021-03-09 2021-03-09 04:37:17
418
## 39 12261 2021-03-09 2021-03-09 04:37:17
## 40 31040 2021-03-08 2021-03-07 23:47:29
## 41 51095 2021-03-05 2021-03-05 12:20:43
## 42 17251 2021-03-08 2021-03-08 16:24:15
## 43 17518 2021-03-08 2021-03-08 16:07:38
## 44 2532 2021-03-11 2021-03-10 20:02:57
## 45 52197 2021-03-04 2021-03-04 16:08:24
## 46 52197 2021-03-04 2021-03-04 16:08:24
## 47 5370 2021-03-10 2021-03-10 05:58:39
## 48 8026 2021-03-09 2021-03-09 15:56:05
## 49 6250 2021-03-10 2021-03-10 00:31:52
## 50 6250 2021-03-10 2021-03-10 00:31:52
## 51 14784 2021-03-09 2021-03-08 19:55:35
## 52 10301 2021-03-09 2021-03-09 11:49:12
## 53 20899 2021-03-08 2021-03-08 11:57:57
## 54 20899 2021-03-08 2021-03-08 11:57:57
## 55 13073 2021-03-09 2021-03-09 02:18:06
## 56 7445 2021-03-09 2021-03-09 17:51:32
## 57 7445 2021-03-09 2021-03-09 17:51:32
## 58 7445 2021-03-09 2021-03-09 17:51:32
## 59 9619 2021-03-09 2021-03-09 13:19:43
## 60 291 2021-03-11 2021-03-11 15:31:47
## 61 291 2021-03-11 2021-03-11 15:31:47
## 62 291 2021-03-11 2021-03-11 15:31:47
## 63 291 2021-03-11 2021-03-11 15:31:47
## 64 291 2021-03-11 2021-03-11 15:31:47
## 65 50193 2021-03-06 2021-03-05 19:39:21
## 66 50193 2021-03-06 2021-03-05 19:39:21
## 67 51468 2021-03-05 2021-03-05 07:56:36
## 68 10358 2021-03-09 2021-03-09 11:40:26
## 69 10358 2021-03-09 2021-03-09 11:40:26
## 70 7420 2021-03-09 2021-03-09 17:56:54
## 71 5381 2021-03-10 2021-03-10 05:52:45
## 72 51373 2021-03-05 2021-03-05 09:03:08
## 73 51373 2021-03-05 2021-03-05 09:03:08
## 74 27307 2021-03-08 2021-03-08 04:26:19
## 75 27307 2021-03-08 2021-03-08 04:26:19
## 76 14138 2021-03-09 2021-03-08 21:35:26
## 77 49071 2021-03-06 2021-03-06 14:45:45
## 78 18305 2021-03-08 2021-03-08 14:50:50
## 79 18305 2021-03-08 2021-03-08 14:50:50
## 80 25683 2021-03-08 2021-03-08 06:35:41
## 81 25683 2021-03-08 2021-03-08 06:35:41
## 82 25683 2021-03-08 2021-03-08 06:35:41
## 83 51420 2021-03-05 2021-03-05 08:32:16
## 84 51420 2021-03-05 2021-03-05 08:32:16
## 85 49418 2021-03-06 2021-03-06 10:24:24
## 86 15384 2021-03-08 2021-03-08 18:35:10
## 87 29257 2021-03-08 2021-03-08 01:28:58
## 88 2157 2021-03-11 2021-03-11 00:36:37
## 89 2157 2021-03-11 2021-03-11 00:36:37
## 90 48463 2021-03-07 2021-03-07 01:45:31
## 91 31665 2021-03-08 2021-03-07 23:18:10
## 92 31665 2021-03-08 2021-03-07 23:18:10
419
## 93 4583 2021-03-10 2021-03-10 09:20:56
## 94 3804 2021-03-10 2021-03-10 12:22:32
## 95 37052 2021-03-08 2021-03-07 21:21:48
## 96 46269 2021-03-07 2021-03-07 17:45:00
## 97 51577 2021-03-05 2021-03-05 06:06:33
## 98 349 2021-03-11 2021-03-11 14:50:57
## 99 349 2021-03-11 2021-03-11 14:50:57
## 100 6265 2021-03-10 2021-03-10 00:28:36
## 101 6265 2021-03-10 2021-03-10 00:28:36
## 102 6265 2021-03-10 2021-03-10 00:28:36
## 103 6265 2021-03-10 2021-03-10 00:28:36
## 104 7608 2021-03-09 2021-03-09 17:15:36
## 105 1737 2021-03-11 2021-03-11 05:33:12
## 106 1737 2021-03-11 2021-03-11 05:33:12
## 107 20297 2021-03-08 2021-03-08 12:48:03
## 108 5923 2021-03-10 2021-03-10 02:47:26
## 109 20943 2021-03-08 2021-03-08 11:53:14
## 110 51410 2021-03-05 2021-03-05 08:38:43
## 111 8742 2021-03-09 2021-03-09 14:27:46
## 112 12734 2021-03-09 2021-03-09 03:03:04
## 113 12734 2021-03-09 2021-03-09 03:03:04
## 114 51686 2021-03-05 2021-03-05 03:27:48
## 115 24371 2021-03-08 2021-03-08 08:10:11
## 116 24371 2021-03-08 2021-03-08 08:10:11
## 117 24371 2021-03-08 2021-03-08 08:10:11
## 118 52406 2021-03-04 2021-03-04 13:58:16
## 119 52406 2021-03-04 2021-03-04 13:58:16
## 120 46847 2021-03-07 2021-03-07 13:50:36
## 121 6096 2021-03-10 2021-03-10 01:45:14
## 122 28452 2021-03-08 2021-03-08 02:29:17
## 123 2938 2021-03-10 2021-03-10 17:05:47
## 124 2938 2021-03-10 2021-03-10 17:05:47
## 125 2938 2021-03-10 2021-03-10 17:05:47
## 126 5065 2021-03-10 2021-03-10 07:43:03
## 127 21641 2021-03-08 2021-03-08 11:05:04
## 128 21641 2021-03-08 2021-03-08 11:05:04
## 129 21641 2021-03-08 2021-03-08 11:05:04
## 130 28724 2021-03-08 2021-03-08 02:07:48
## 131 2876 2021-03-10 2021-03-10 17:31:18
## 132 2876 2021-03-10 2021-03-10 17:31:18
## 133 2876 2021-03-10 2021-03-10 17:31:18
## 134 2876 2021-03-10 2021-03-10 17:31:18
## 135 27590 2021-03-08 2021-03-08 04:04:32
## 136 27590 2021-03-08 2021-03-08 04:04:32
## 137 36315 2021-03-08 2021-03-07 21:30:30
## 138 8645 2021-03-09 2021-03-09 14:36:12
## 139 7948 2021-03-09 2021-03-09 16:10:02
## 140 7948 2021-03-09 2021-03-09 16:10:02
## 141 7948 2021-03-09 2021-03-09 16:10:02
## 142 38918 2021-03-08 2021-03-07 21:04:38
## 143 28773 2021-03-08 2021-03-08 02:05:08
## 144 47923 2021-03-07 2021-03-07 07:54:06
## 145 47923 2021-03-07 2021-03-07 07:54:06
## 146 47902 2021-03-07 2021-03-07 08:00:37
420
## 147 47902 2021-03-07 2021-03-07 08:00:37
## 148 28259 2021-03-08 2021-03-08 02:47:57
## 149 4765 2021-03-10 2021-03-10 08:45:18
## 150 279 2021-03-11 2021-03-11 15:42:19
## 151 1734 2021-03-11 2021-03-11 05:34:31
## 152 1734 2021-03-11 2021-03-11 05:34:31
## 153 51246 2021-03-05 2021-03-05 10:45:27
## 154 11440 2021-03-09 2021-03-09 08:03:13
## 155 48351 2021-03-07 2021-03-07 04:07:30
## 156 48351 2021-03-07 2021-03-07 04:07:30
## 157 6449 2021-03-10 2021-03-09 23:17:11
## 158 45581 2021-03-08 2021-03-07 20:04:12
## 159 22473 2021-03-08 2021-03-08 10:11:06
## 160 7075 2021-03-10 2021-03-09 19:39:17
## 161 9250 2021-03-09 2021-03-09 13:49:48
## 162 4995 2021-03-10 2021-03-10 07:59:37
## 163 23215 2021-03-08 2021-03-08 09:24:17
## 164 14334 2021-03-09 2021-03-08 21:00:02
## 165 14334 2021-03-09 2021-03-08 21:00:02
## 166 5023 2021-03-10 2021-03-10 07:53:21
## 167 5023 2021-03-10 2021-03-10 07:53:21
## 168 15108 2021-03-09 2021-03-08 19:05:32
## 169 8685 2021-03-09 2021-03-09 14:32:49
## 170 13385 2021-03-09 2021-03-09 00:57:01
## 171 19009 2021-03-08 2021-03-08 14:03:36
## 172 2086 2021-03-11 2021-03-11 01:51:27
## 173 2086 2021-03-11 2021-03-11 01:51:27
## 174 16888 2021-03-08 2021-03-08 16:46:00
## 175 16888 2021-03-08 2021-03-08 16:46:00
## 176 16888 2021-03-08 2021-03-08 16:46:00
## 177 16888 2021-03-08 2021-03-08 16:46:00
## 178 16888 2021-03-08 2021-03-08 16:46:00
## 179 16888 2021-03-08 2021-03-08 16:46:00
## 180 16888 2021-03-08 2021-03-08 16:46:00
## 181 16888 2021-03-08 2021-03-08 16:46:00
## 182 5916 2021-03-10 2021-03-10 02:51:17
## 183 19574 2021-03-08 2021-03-08 13:34:19
## 184 27200 2021-03-08 2021-03-08 04:33:18
## 185 27685 2021-03-08 2021-03-08 03:56:30
## 186 22627 2021-03-08 2021-03-08 10:02:03
## 187 30292 2021-03-08 2021-03-08 00:21:58
## 188 2236 2021-03-11 2021-03-10 23:21:39
## 189 37748 2021-03-08 2021-03-07 21:13:23
## 190 28378 2021-03-08 2021-03-08 02:35:33
## 191 28378 2021-03-08 2021-03-08 02:35:33
## 192 28378 2021-03-08 2021-03-08 02:35:33
## 193 32102 2021-03-08 2021-03-07 23:00:48
## 194 47843 2021-03-07 2021-03-07 08:19:53
## 195 47843 2021-03-07 2021-03-07 08:19:53
## 196 47843 2021-03-07 2021-03-07 08:19:53
## 197 21910 2021-03-08 2021-03-08 10:47:54
## 198 2758 2021-03-10 2021-03-10 18:25:05
## 199 22857 2021-03-08 2021-03-08 09:45:15
## 200 47670 2021-03-07 2021-03-07 09:17:38
421
## 201 28019 2021-03-08 2021-03-08 03:32:35
## 202 21532 2021-03-08 2021-03-08 11:13:31
## 203 21532 2021-03-08 2021-03-08 11:13:31
## 204 18821 2021-03-08 2021-03-08 14:13:27
## 205 29108 2021-03-08 2021-03-08 01:40:00
## 206 11425 2021-03-09 2021-03-09 08:06:24
## 207 20681 2021-03-08 2021-03-08 12:16:10
## 208 20681 2021-03-08 2021-03-08 12:16:10
## 209 2244 2021-03-11 2021-03-10 23:14:48
## 210 5562 2021-03-10 2021-03-10 05:01:06
## 211 12645 2021-03-09 2021-03-09 03:12:02
## 212 50010 2021-03-06 2021-03-05 22:36:18
## 213 50010 2021-03-06 2021-03-05 22:36:18
## 214 50010 2021-03-06 2021-03-05 22:36:18
## 215 50010 2021-03-06 2021-03-05 22:36:18
## 216 7305 2021-03-09 2021-03-09 18:28:08
## 217 48233 2021-03-07 2021-03-07 05:14:53
## 218 6525 2021-03-10 2021-03-09 22:51:31
## 219 7530 2021-03-09 2021-03-09 17:32:29
## 220 2850 2021-03-10 2021-03-10 17:45:58
## 221 2850 2021-03-10 2021-03-10 17:45:58
## 222 51091 2021-03-05 2021-03-05 12:22:09
## 223 35696 2021-03-08 2021-03-07 21:37:58
## 224 35696 2021-03-08 2021-03-07 21:37:58
## 225 35696 2021-03-08 2021-03-07 21:37:58
## 226 35696 2021-03-08 2021-03-07 21:37:58
## 227 27883 2021-03-08 2021-03-08 03:41:53
## 228 27883 2021-03-08 2021-03-08 03:41:53
## 229 3289 2021-03-10 2021-03-10 14:31:33
## 230 51356 2021-03-05 2021-03-05 09:14:23
## 231 51356 2021-03-05 2021-03-05 09:14:23
## 232 24474 2021-03-08 2021-03-08 08:03:41
## 233 24474 2021-03-08 2021-03-08 08:03:41
## 234 50188 2021-03-06 2021-03-05 19:42:51
## 235 47079 2021-03-07 2021-03-07 12:22:19
## 236 47079 2021-03-07 2021-03-07 12:22:19
## 237 13873 2021-03-09 2021-03-08 22:32:50
## 238 19888 2021-03-08 2021-03-08 13:15:50
## 239 22589 2021-03-08 2021-03-08 10:04:05
## 240 46483 2021-03-07 2021-03-07 16:20:08
## 241 46483 2021-03-07 2021-03-07 16:20:08
## 242 33106 2021-03-08 2021-03-07 22:23:49
## 243 33106 2021-03-08 2021-03-07 22:23:49
## 244 25393 2021-03-08 2021-03-08 06:58:18
## 245 25393 2021-03-08 2021-03-08 06:58:18
## 246 25393 2021-03-08 2021-03-08 06:58:18
## 247 1119 2021-03-11 2021-03-11 08:46:54
## 248 3589 2021-03-10 2021-03-10 13:08:27
## 249 3589 2021-03-10 2021-03-10 13:08:27
## 250 11548 2021-03-09 2021-03-09 07:43:59
## 251 21758 2021-03-08 2021-03-08 10:57:56
## 252 12204 2021-03-09 2021-03-09 05:05:27
## 253 12204 2021-03-09 2021-03-09 05:05:27
## 254 30539 2021-03-08 2021-03-08 00:08:58
422
## 255 8438 2021-03-09 2021-03-09 14:58:29
## 256 19373 2021-03-08 2021-03-08 13:45:07
## 257 26776 2021-03-08 2021-03-08 05:06:58
## 258 10784 2021-03-09 2021-03-09 10:20:01
## 259 8727 2021-03-09 2021-03-09 14:28:37
## 260 27814 2021-03-08 2021-03-08 03:46:47
## 261 20332 2021-03-08 2021-03-08 12:45:00
## 262 7675 2021-03-09 2021-03-09 17:03:24
## 263 977 2021-03-11 2021-03-11 09:33:54
## 264 47933 2021-03-07 2021-03-07 07:50:19
## 265 8213 2021-03-09 2021-03-09 15:25:50
## 266 8213 2021-03-09 2021-03-09 15:25:50
## 267 14013 2021-03-09 2021-03-08 21:59:57
## 268 14013 2021-03-09 2021-03-08 21:59:57
## 269 34619 2021-03-08 2021-03-07 21:52:01
## 270 11333 2021-03-09 2021-03-09 08:21:37
## 271 3258 2021-03-10 2021-03-10 14:42:54
## 272 52387 2021-03-04 2021-03-04 14:06:22
## 273 2144 2021-03-11 2021-03-11 00:45:53
## 274 52739 2021-03-04 2021-03-04 10:30:17
## 275 52739 2021-03-04 2021-03-04 10:30:17
## 276 10013 2021-03-09 2021-03-09 12:35:24
## 277 49960 2021-03-06 2021-03-05 23:24:29
## 278 3788 2021-03-10 2021-03-10 12:26:19
## 279 23836 2021-03-08 2021-03-08 08:45:07
## 280 46047 2021-03-07 2021-03-07 18:59:13
## 281 51673 2021-03-05 2021-03-05 03:46:23
## 282 52552 2021-03-04 2021-03-04 12:33:11
## 283 6821 2021-03-10 2021-03-09 21:10:12
## 284 3183 2021-03-10 2021-03-10 15:14:53
## 285 15041 2021-03-09 2021-03-08 19:13:30
## 286 15041 2021-03-09 2021-03-08 19:13:30
## 287 4303 2021-03-10 2021-03-10 10:25:09
## 288 4303 2021-03-10 2021-03-10 10:25:09
## 289 4303 2021-03-10 2021-03-10 10:25:09
## 290 4303 2021-03-10 2021-03-10 10:25:09
## 291 23559 2021-03-08 2021-03-08 09:03:10
## 292 26299 2021-03-08 2021-03-08 05:44:04
## 293 33002 2021-03-08 2021-03-07 22:26:55
## 294 3067 2021-03-10 2021-03-10 16:13:21
## 295 50391 2021-03-05 2021-03-05 17:19:03
## 296 50391 2021-03-05 2021-03-05 17:19:03
## 297 21159 2021-03-08 2021-03-08 11:38:06
## 298 19561 2021-03-08 2021-03-08 13:35:28
## 299 44985 2021-03-08 2021-03-07 20:15:43
## 300 44985 2021-03-08 2021-03-07 20:15:43
## 301 44985 2021-03-08 2021-03-07 20:15:43
## 302 44985 2021-03-08 2021-03-07 20:15:43
## 303 44985 2021-03-08 2021-03-07 20:15:43
## 304 22371 2021-03-08 2021-03-08 10:17:16
## 305 22371 2021-03-08 2021-03-08 10:17:16
## 306 22371 2021-03-08 2021-03-08 10:17:16
## 307 22371 2021-03-08 2021-03-08 10:17:16
## 308 29018 2021-03-08 2021-03-08 01:45:49
423
## 309 46286 2021-03-07 2021-03-07 17:38:29
## 310 46286 2021-03-07 2021-03-07 17:38:29
## 311 46837 2021-03-07 2021-03-07 13:52:38
## 312 46837 2021-03-07 2021-03-07 13:52:38
## 313 46837 2021-03-07 2021-03-07 13:52:38
## 314 24111 2021-03-08 2021-03-08 08:26:53
## 315 21274 2021-03-08 2021-03-08 11:30:38
## 316 4916 2021-03-10 2021-03-10 08:12:47
## 317 50094 2021-03-06 2021-03-05 20:46:59
## 318 50094 2021-03-06 2021-03-05 20:46:59
## 319 24772 2021-03-08 2021-03-08 07:40:33
## 320 24772 2021-03-08 2021-03-08 07:40:33
## 321 19015 2021-03-08 2021-03-08 14:03:16
## 322 19037 2021-03-08 2021-03-08 14:02:06
## 323 8664 2021-03-09 2021-03-09 14:34:50
## 324 14990 2021-03-09 2021-03-08 19:20:02
## 325 14990 2021-03-09 2021-03-08 19:20:02
## 326 14990 2021-03-09 2021-03-08 19:20:02
## 327 18904 2021-03-08 2021-03-08 14:08:48
## 328 51458 2021-03-05 2021-03-05 08:03:03
## 329 51458 2021-03-05 2021-03-05 08:03:03
## 330 51458 2021-03-05 2021-03-05 08:03:03
## 331 6977 2021-03-10 2021-03-09 20:16:13
## 332 6977 2021-03-10 2021-03-09 20:16:13
## 333 43623 2021-03-08 2021-03-07 20:30:59
## 334 9813 2021-03-09 2021-03-09 12:56:16
## 335 38897 2021-03-08 2021-03-07 21:04:47
## 336 29340 2021-03-08 2021-03-08 01:22:44
## 337 15781 2021-03-08 2021-03-08 17:58:52
## 338 19616 2021-03-08 2021-03-08 13:32:04
## 339 33192 2021-03-08 2021-03-07 22:20:55
## 340 29823 2021-03-08 2021-03-08 00:49:40
## 341 14431 2021-03-09 2021-03-08 20:45:40
## 342 38336 2021-03-08 2021-03-07 21:09:29
## 343 22233 2021-03-08 2021-03-08 10:27:35
## 344 52269 2021-03-04 2021-03-04 15:21:23
## 345 39429 2021-03-08 2021-03-07 21:01:27
## 346 4508 2021-03-10 2021-03-10 09:35:01
## 347 3955 2021-03-10 2021-03-10 11:50:10
## 348 40660 2021-03-08 2021-03-07 20:54:06
## 349 3373 2021-03-10 2021-03-10 13:59:56
## 350 3373 2021-03-10 2021-03-10 13:59:56
## 351 7161 2021-03-10 2021-03-09 19:03:42
## 352 10409 2021-03-09 2021-03-09 11:32:37
## 353 11113 2021-03-09 2021-03-09 09:18:36
## 354 51874 2021-03-05 2021-03-04 21:59:00
## 355 23202 2021-03-08 2021-03-08 09:25:20
## 356 23202 2021-03-08 2021-03-08 09:25:20
## 357 23202 2021-03-08 2021-03-08 09:25:20
## 358 23202 2021-03-08 2021-03-08 09:25:20
## 359 7297 2021-03-09 2021-03-09 18:29:58
## 360 7297 2021-03-09 2021-03-09 18:29:58
## 361 8308 2021-03-09 2021-03-09 15:13:25
## 362 8308 2021-03-09 2021-03-09 15:13:25
424
## 363 8308 2021-03-09 2021-03-09 15:13:25
## 364 8589 2021-03-09 2021-03-09 14:43:06
## 365 8589 2021-03-09 2021-03-09 14:43:06
## 366 38482 2021-03-08 2021-03-07 21:08:07
## 367 14889 2021-03-09 2021-03-08 19:37:49
## 368 14889 2021-03-09 2021-03-08 19:37:49
## 369 25695 2021-03-08 2021-03-08 06:34:35
## 370 47578 2021-03-07 2021-03-07 09:45:30
## 371 30271 2021-03-08 2021-03-08 00:23:21
## 372 34016 2021-03-08 2021-03-07 22:01:43
## 373 6434 2021-03-10 2021-03-09 23:21:43
## 374 6434 2021-03-10 2021-03-09 23:21:43
## 375 16869 2021-03-08 2021-03-08 16:46:46
## 376 16869 2021-03-08 2021-03-08 16:46:46
## 377 16869 2021-03-08 2021-03-08 16:46:46
## 378 16869 2021-03-08 2021-03-08 16:46:46
## 379 34713 2021-03-08 2021-03-07 21:50:28
## 380 26614 2021-03-08 2021-03-08 05:20:58
## 381 47109 2021-03-07 2021-03-07 12:10:48
## 382 6807 2021-03-10 2021-03-09 21:14:31
## 383 51012 2021-03-05 2021-03-05 12:46:23
## 384 3553 2021-03-10 2021-03-10 13:16:04
## 385 4787 2021-03-10 2021-03-10 08:40:17
## 386 4787 2021-03-10 2021-03-10 08:40:17
## 387 23693 2021-03-08 2021-03-08 08:54:41
## 388 7604 2021-03-09 2021-03-09 17:16:41
## 389 7604 2021-03-09 2021-03-09 17:16:41
## 390 21995 2021-03-08 2021-03-08 10:43:07
## 391 10465 2021-03-09 2021-03-09 11:17:31
## 392 14797 2021-03-09 2021-03-08 19:52:36
## 393 26602 2021-03-08 2021-03-08 05:21:47
## 394 26602 2021-03-08 2021-03-08 05:21:47
## 395 17520 2021-03-08 2021-03-08 16:07:31
## 396 2897 2021-03-10 2021-03-10 17:23:03
## 397 51045 2021-03-05 2021-03-05 12:36:32
## 398 51045 2021-03-05 2021-03-05 12:36:32
## 399 51045 2021-03-05 2021-03-05 12:36:32
## 400 20461 2021-03-08 2021-03-08 12:33:06
## 401 8075 2021-03-09 2021-03-09 15:46:36
## 402 255 2021-03-11 2021-03-11 16:01:13
## 403 255 2021-03-11 2021-03-11 16:01:13
## 404 255 2021-03-11 2021-03-11 16:01:13
## 405 24414 2021-03-08 2021-03-08 08:07:19
## 406 10312 2021-03-09 2021-03-09 11:47:22
## 407 11741 2021-03-09 2021-03-09 07:09:32
## 408 14584 2021-03-09 2021-03-08 20:21:34
## 409 29144 2021-03-08 2021-03-08 01:36:57
## 410 33198 2021-03-08 2021-03-07 22:20:42
## 411 33198 2021-03-08 2021-03-07 22:20:42
## 412 18344 2021-03-08 2021-03-08 14:47:30
## 413 47872 2021-03-07 2021-03-07 08:10:25
## 414 2132 2021-03-11 2021-03-11 00:57:21
## 415 51125 2021-03-05 2021-03-05 12:09:10
## 416 3594 2021-03-10 2021-03-10 13:07:35
425
## 417 25779 2021-03-08 2021-03-08 06:27:28
## 418 3354 2021-03-10 2021-03-10 14:04:29
## 419 13488 2021-03-09 2021-03-09 00:18:32
## 420 13488 2021-03-09 2021-03-09 00:18:32
## 421 22975 2021-03-08 2021-03-08 09:38:18
## 422 27473 2021-03-08 2021-03-08 04:14:58
## 423 48131 2021-03-07 2021-03-07 06:04:59
## 424 5151 2021-03-10 2021-03-10 07:19:25
## 425 5151 2021-03-10 2021-03-10 07:19:25
## 426 4263 2021-03-10 2021-03-10 10:34:05
## 427 4263 2021-03-10 2021-03-10 10:34:05
## 428 4263 2021-03-10 2021-03-10 10:34:05
## 429 4263 2021-03-10 2021-03-10 10:34:05
## 430 4263 2021-03-10 2021-03-10 10:34:05
## 431 27995 2021-03-08 2021-03-08 03:34:26
## 432 1529 2021-03-11 2021-03-11 06:57:17
## 433 48290 2021-03-07 2021-03-07 04:38:16
## 434 48290 2021-03-07 2021-03-07 04:38:16
## 435 2550 2021-03-11 2021-03-10 19:51:21
## 436 34559 2021-03-08 2021-03-07 21:53:02
## 437 34559 2021-03-08 2021-03-07 21:53:02
## 438 11105 2021-03-09 2021-03-09 09:20:34
## 439 25362 2021-03-08 2021-03-08 07:00:28
## 440 25362 2021-03-08 2021-03-08 07:00:28
## 441 25362 2021-03-08 2021-03-08 07:00:28
## 442 25362 2021-03-08 2021-03-08 07:00:28
## 443 13070 2021-03-09 2021-03-09 02:18:11
## 444 13070 2021-03-09 2021-03-09 02:18:11
## 445 13070 2021-03-09 2021-03-09 02:18:11
## 446 21093 2021-03-08 2021-03-08 11:41:55
## 447 21093 2021-03-08 2021-03-08 11:41:55
## 448 18690 2021-03-08 2021-03-08 14:22:40
## 449 18690 2021-03-08 2021-03-08 14:22:40
## 450 33369 2021-03-08 2021-03-07 22:16:08
## 451 33369 2021-03-08 2021-03-07 22:16:08
## 452 50615 2021-03-05 2021-03-05 15:49:05
## 453 48743 2021-03-07 2021-03-06 19:28:33
## 454 49482 2021-03-06 2021-03-06 09:39:02
## 455 49482 2021-03-06 2021-03-06 09:39:02
## 456 49482 2021-03-06 2021-03-06 09:39:02
## 457 49482 2021-03-06 2021-03-06 09:39:02
## 458 28590 2021-03-08 2021-03-08 02:17:49
## 459 2661 2021-03-11 2021-03-10 19:02:21
## 460 2661 2021-03-11 2021-03-10 19:02:21
## 461 2661 2021-03-11 2021-03-10 19:02:21
## 462 40398 2021-03-08 2021-03-07 20:55:27
## 463 18475 2021-03-08 2021-03-08 14:37:30
## 464 5904 2021-03-10 2021-03-10 02:54:55
## 465 5904 2021-03-10 2021-03-10 02:54:55
## 466 7843 2021-03-09 2021-03-09 16:31:35
## 467 29696 2021-03-08 2021-03-08 00:57:46
## 468 35265 2021-03-08 2021-03-07 21:43:14
## 469 25616 2021-03-08 2021-03-08 06:40:35
## 470 25616 2021-03-08 2021-03-08 06:40:35
426
## 471 36517 2021-03-08 2021-03-07 21:27:51
## 472 11576 2021-03-09 2021-03-09 07:40:13
## 473 49247 2021-03-06 2021-03-06 12:31:26
## 474 49247 2021-03-06 2021-03-06 12:31:26
## 475 49247 2021-03-06 2021-03-06 12:31:26
## 476 29367 2021-03-08 2021-03-08 01:20:28
## 477 31719 2021-03-08 2021-03-07 23:16:13
## 478 31719 2021-03-08 2021-03-07 23:16:13
## 479 8911 2021-03-09 2021-03-09 14:15:45
## 480 36988 2021-03-08 2021-03-07 21:22:33
## 481 31743 2021-03-08 2021-03-07 23:15:15
## 482 31743 2021-03-08 2021-03-07 23:15:15
## 483 31743 2021-03-08 2021-03-07 23:15:15
## 484 3253 2021-03-10 2021-03-10 14:44:26
## 485 37675 2021-03-08 2021-03-07 21:14:15
## 486 37675 2021-03-08 2021-03-07 21:14:15
## 487 11486 2021-03-09 2021-03-09 07:55:35
## 488 36116 2021-03-08 2021-03-07 21:32:58
## 489 22268 2021-03-08 2021-03-08 10:25:15
## 490 33548 2021-03-08 2021-03-07 22:10:44
## 491 48907 2021-03-06 2021-03-06 17:07:18
## 492 48907 2021-03-06 2021-03-06 17:07:18
## 493 11969 2021-03-09 2021-03-09 06:26:43
## 494 50132 2021-03-06 2021-03-05 20:21:27
## 495 50132 2021-03-06 2021-03-05 20:21:27
## 496 10435 2021-03-09 2021-03-09 11:26:18
## 497 10435 2021-03-09 2021-03-09 11:26:18
## 498 10435 2021-03-09 2021-03-09 11:26:18
## 499 10435 2021-03-09 2021-03-09 11:26:18
## 500 10435 2021-03-09 2021-03-09 11:26:18
## 501 10435 2021-03-09 2021-03-09 11:26:18
## 502 10435 2021-03-09 2021-03-09 11:26:18
## 503 10435 2021-03-09 2021-03-09 11:26:18
## 504 10435 2021-03-09 2021-03-09 11:26:18
## 505 50232 2021-03-06 2021-03-05 19:19:59
## 506 50232 2021-03-06 2021-03-05 19:19:59
## 507 46870 2021-03-07 2021-03-07 13:43:26
## 508 10668 2021-03-09 2021-03-09 10:40:18
## 509 10668 2021-03-09 2021-03-09 10:40:18
## 510 2444 2021-03-11 2021-03-10 20:50:00
## 511 2444 2021-03-11 2021-03-10 20:50:00
## 512 26486 2021-03-08 2021-03-08 05:30:40
## 513 44686 2021-03-08 2021-03-07 20:19:49
## 514 48065 2021-03-07 2021-03-07 06:34:43
## 515 7170 2021-03-10 2021-03-09 19:01:32
## 516 7170 2021-03-10 2021-03-09 19:01:32
## 517 22788 2021-03-08 2021-03-08 09:50:59
## 518 22788 2021-03-08 2021-03-08 09:50:59
## 519 24328 2021-03-08 2021-03-08 08:13:33
## 520 24328 2021-03-08 2021-03-08 08:13:33
## 521 36044 2021-03-08 2021-03-07 21:33:52
## 522 3145 2021-03-10 2021-03-10 15:38:40
## 523 14551 2021-03-09 2021-03-08 20:25:34
## 524 14551 2021-03-09 2021-03-08 20:25:34
427
## 525 49487 2021-03-06 2021-03-06 09:31:29
## 526 49487 2021-03-06 2021-03-06 09:31:29
## 527 52758 2021-03-04 2021-03-04 10:20:40
## 528 29624 2021-03-08 2021-03-08 01:01:36
## 529 6505 2021-03-10 2021-03-09 22:57:34
## 530 2465 2021-03-11 2021-03-10 20:39:15
## 531 2465 2021-03-11 2021-03-10 20:39:15
## 532 30082 2021-03-08 2021-03-08 00:34:01
## 533 47709 2021-03-07 2021-03-07 09:02:33
## 534 16001 2021-03-08 2021-03-08 17:42:42
## 535 16001 2021-03-08 2021-03-08 17:42:42
## 536 8100 2021-03-09 2021-03-09 15:43:41
## 537 8100 2021-03-09 2021-03-09 15:43:41
## 538 8100 2021-03-09 2021-03-09 15:43:41
## 539 1676 2021-03-11 2021-03-11 06:02:03
## 540 8535 2021-03-09 2021-03-09 14:48:07
## 541 8535 2021-03-09 2021-03-09 14:48:07
## 542 31594 2021-03-08 2021-03-07 23:21:08
## 543 31594 2021-03-08 2021-03-07 23:21:08
## 544 40578 2021-03-08 2021-03-07 20:54:28
## 545 49945 2021-03-06 2021-03-05 23:40:50
## 546 49945 2021-03-06 2021-03-05 23:40:50
## 547 49945 2021-03-06 2021-03-05 23:40:50
## 548 49945 2021-03-06 2021-03-05 23:40:50
## 549 49945 2021-03-06 2021-03-05 23:40:50
## 550 49945 2021-03-06 2021-03-05 23:40:50
## 551 49945 2021-03-06 2021-03-05 23:40:50
## 552 49945 2021-03-06 2021-03-05 23:40:50
## 553 49945 2021-03-06 2021-03-05 23:40:50
## 554 49945 2021-03-06 2021-03-05 23:40:50
## 555 44179 2021-03-08 2021-03-07 20:25:02
## 556 44179 2021-03-08 2021-03-07 20:25:02
## 557 48800 2021-03-06 2021-03-06 18:37:45
## 558 13647 2021-03-09 2021-03-08 23:34:59
## 559 9076 2021-03-09 2021-03-09 14:04:59
## 560 9076 2021-03-09 2021-03-09 14:04:59
## 561 45523 2021-03-08 2021-03-07 20:05:21
## 562 1978 2021-03-11 2021-03-11 03:29:01
## 563 1978 2021-03-11 2021-03-11 03:29:01
## 564 1978 2021-03-11 2021-03-11 03:29:01
## 565 1978 2021-03-11 2021-03-11 03:29:01
## 566 29389 2021-03-08 2021-03-08 01:18:48
## 567 19447 2021-03-08 2021-03-08 13:40:59
## 568 3000 2021-03-10 2021-03-10 16:33:49
## 569 43945 2021-03-08 2021-03-07 20:27:37
## 570 22289 2021-03-08 2021-03-08 10:23:30
## 571 2122 2021-03-11 2021-03-11 01:07:22
## 572 49977 2021-03-06 2021-03-05 23:09:33
## 573 49977 2021-03-06 2021-03-05 23:09:33
## 574 4308 2021-03-10 2021-03-10 10:23:57
## 575 29207 2021-03-08 2021-03-08 01:32:21
## 576 11507 2021-03-09 2021-03-09 07:51:31
## 577 11507 2021-03-09 2021-03-09 07:51:31
## 578 50130 2021-03-06 2021-03-05 20:23:24
428
## 579 18583 2021-03-08 2021-03-08 14:29:53
## 580 7862 2021-03-09 2021-03-09 16:27:26
## 581 7862 2021-03-09 2021-03-09 16:27:26
## 582 7862 2021-03-09 2021-03-09 16:27:26
## 583 7862 2021-03-09 2021-03-09 16:27:26
## 584 31999 2021-03-08 2021-03-07 23:05:07
## 585 31999 2021-03-08 2021-03-07 23:05:07
## 586 35720 2021-03-08 2021-03-07 21:37:44
## 587 27080 2021-03-08 2021-03-08 04:41:53
## 588 18572 2021-03-08 2021-03-08 14:30:46
## 589 18572 2021-03-08 2021-03-08 14:30:46
## 590 18572 2021-03-08 2021-03-08 14:30:46
## 591 25367 2021-03-08 2021-03-08 07:00:06
## 592 52401 2021-03-04 2021-03-04 14:00:45
## 593 40014 2021-03-08 2021-03-07 20:57:48
## 594 1828 2021-03-11 2021-03-11 04:56:38
## 595 1828 2021-03-11 2021-03-11 04:56:38
## 596 1828 2021-03-11 2021-03-11 04:56:38
## 597 1828 2021-03-11 2021-03-11 04:56:38
## 598 1828 2021-03-11 2021-03-11 04:56:38
## 599 22239 2021-03-08 2021-03-08 10:27:13
## 600 22239 2021-03-08 2021-03-08 10:27:13
## 601 20413 2021-03-08 2021-03-08 12:37:11
## 602 21815 2021-03-08 2021-03-08 10:54:22
## 603 43801 2021-03-08 2021-03-07 20:29:07
## 604 43801 2021-03-08 2021-03-07 20:29:07
## 605 1154 2021-03-11 2021-03-11 08:33:26
## 606 52793 2021-03-04 2021-03-04 10:02:21
## 607 52793 2021-03-04 2021-03-04 10:02:21
## 608 18461 2021-03-08 2021-03-08 14:38:48
## 609 18461 2021-03-08 2021-03-08 14:38:48
## 610 1289 2021-03-11 2021-03-11 07:58:55
## 611 22342 2021-03-08 2021-03-08 10:19:42
## 612 22342 2021-03-08 2021-03-08 10:19:42
## 613 49171 2021-03-06 2021-03-06 13:33:37
## 614 49171 2021-03-06 2021-03-06 13:33:37
## 615 251 2021-03-11 2021-03-11 16:02:38
## 616 251 2021-03-11 2021-03-11 16:02:38
## 617 22056 2021-03-08 2021-03-08 10:40:16
## 618 21528 2021-03-08 2021-03-08 11:13:49
## 619 21528 2021-03-08 2021-03-08 11:13:49
## 620 21528 2021-03-08 2021-03-08 11:13:49
## 621 21528 2021-03-08 2021-03-08 11:13:49
## 622 11690 2021-03-09 2021-03-09 07:18:25
## 623 11690 2021-03-09 2021-03-09 07:18:25
## 624 2211 2021-03-11 2021-03-10 23:47:29
## 625 3195 2021-03-10 2021-03-10 15:09:47
## 626 3195 2021-03-10 2021-03-10 15:09:47
## 627 3195 2021-03-10 2021-03-10 15:09:47
## 628 3195 2021-03-10 2021-03-10 15:09:47
## 629 45641 2021-03-08 2021-03-07 20:03:01
## 630 3671 2021-03-10 2021-03-10 12:51:18
## 631 16474 2021-03-08 2021-03-08 17:07:35
## 632 50505 2021-03-05 2021-03-05 16:25:19
429
## 633 7181 2021-03-09 2021-03-09 18:59:19
## 634 16087 2021-03-08 2021-03-08 17:36:11
## 635 26493 2021-03-08 2021-03-08 05:30:08
## 636 25273 2021-03-08 2021-03-08 07:06:59
## 637 10394 2021-03-09 2021-03-09 11:35:39
## 638 38374 2021-03-08 2021-03-07 21:09:05
## 639 20404 2021-03-08 2021-03-08 12:37:46
## 640 8091 2021-03-09 2021-03-09 15:44:43
## 641 8091 2021-03-09 2021-03-09 15:44:43
## 642 25777 2021-03-08 2021-03-08 06:27:47
## 643 25777 2021-03-08 2021-03-08 06:27:47
## 644 11465 2021-03-09 2021-03-09 07:59:48
## 645 13106 2021-03-09 2021-03-09 02:14:40
## 646 1792 2021-03-11 2021-03-11 05:10:26
## 647 44955 2021-03-08 2021-03-07 20:16:14
## 648 21958 2021-03-08 2021-03-08 10:45:24
## 649 21958 2021-03-08 2021-03-08 10:45:24
## 650 13712 2021-03-09 2021-03-08 23:16:47
## 651 49201 2021-03-06 2021-03-06 13:15:13
## 652 49201 2021-03-06 2021-03-06 13:15:13
## 653 49201 2021-03-06 2021-03-06 13:15:13
## 654 6221 2021-03-10 2021-03-10 00:45:58
## 655 13724 2021-03-09 2021-03-08 23:14:31
## 656 13724 2021-03-09 2021-03-08 23:14:31
## 657 1393 2021-03-11 2021-03-11 07:30:16
## 658 48884 2021-03-06 2021-03-06 17:32:06
## 659 48884 2021-03-06 2021-03-06 17:32:06
## 660 9610 2021-03-09 2021-03-09 13:20:37
## 661 9610 2021-03-09 2021-03-09 13:20:37
## 662 9610 2021-03-09 2021-03-09 13:20:37
## 663 16661 2021-03-08 2021-03-08 16:56:37
## 664 11637 2021-03-09 2021-03-09 07:28:18
## 665 12106 2021-03-09 2021-03-09 05:41:44
## 666 747 2021-03-11 2021-03-11 10:58:39
## 667 6236 2021-03-10 2021-03-10 00:38:50
## 668 10345 2021-03-09 2021-03-09 11:42:27
## 669 11562 2021-03-09 2021-03-09 07:41:45
## 670 11562 2021-03-09 2021-03-09 07:41:45
## 671 12545 2021-03-09 2021-03-09 03:23:48
## 672 12244 2021-03-09 2021-03-09 04:48:57
## 673 52204 2021-03-04 2021-03-04 16:02:15
## 674 24540 2021-03-08 2021-03-08 07:58:56
## 675 24540 2021-03-08 2021-03-08 07:58:56
## 676 24540 2021-03-08 2021-03-08 07:58:56
## 677 50191 2021-03-06 2021-03-05 19:41:57
## 678 50191 2021-03-06 2021-03-05 19:41:57
## 679 50191 2021-03-06 2021-03-05 19:41:57
## 680 50191 2021-03-06 2021-03-05 19:41:57
## 681 50191 2021-03-06 2021-03-05 19:41:57
## 682 4736 2021-03-10 2021-03-10 08:52:48
## 683 13901 2021-03-09 2021-03-08 22:26:17
## 684 17664 2021-03-08 2021-03-08 15:55:30
## 685 23983 2021-03-08 2021-03-08 08:35:34
## 686 50708 2021-03-05 2021-03-05 14:44:18
430
## 687 21172 2021-03-08 2021-03-08 11:36:43
## 688 18312 2021-03-08 2021-03-08 14:50:21
## 689 18312 2021-03-08 2021-03-08 14:50:21
## 690 46002 2021-03-08 2021-03-07 19:10:26
## 691 51694 2021-03-05 2021-03-05 03:18:10
## 692 15164 2021-03-08 2021-03-08 18:59:35
## 693 47873 2021-03-07 2021-03-07 08:10:13
## 694 10098 2021-03-09 2021-03-09 12:22:50
## 695 10098 2021-03-09 2021-03-09 12:22:50
## 696 38628 2021-03-08 2021-03-07 21:06:50
## 697 51584 2021-03-05 2021-03-05 05:51:49
## 698 51584 2021-03-05 2021-03-05 05:51:49
## 699 51584 2021-03-05 2021-03-05 05:51:49
## 700 16319 2021-03-08 2021-03-08 17:18:53
## 701 16319 2021-03-08 2021-03-08 17:18:53
## 702 16319 2021-03-08 2021-03-08 17:18:53
## 703 46796 2021-03-07 2021-03-07 14:05:37
## 704 2442 2021-03-11 2021-03-10 20:51:46
## 705 2442 2021-03-11 2021-03-10 20:51:46
## 706 10103 2021-03-09 2021-03-09 12:22:20
## 707 18002 2021-03-08 2021-03-08 15:17:57
## 708 18002 2021-03-08 2021-03-08 15:17:57
## 709 5655 2021-03-10 2021-03-10 04:25:09
## 710 15895 2021-03-08 2021-03-08 17:50:35
## 711 32547 2021-03-08 2021-03-07 22:42:14
## 712 2757 2021-03-10 2021-03-10 18:25:06
## 713 2757 2021-03-10 2021-03-10 18:25:06
## 714 35736 2021-03-08 2021-03-07 21:37:31
## 715 3682 2021-03-10 2021-03-10 12:49:34
## 716 12583 2021-03-09 2021-03-09 03:19:02
## 717 6810 2021-03-10 2021-03-09 21:14:00
## 718 6810 2021-03-10 2021-03-09 21:14:00
## 719 6810 2021-03-10 2021-03-09 21:14:00
## 720 6810 2021-03-10 2021-03-09 21:14:00
## 721 15930 2021-03-08 2021-03-08 17:47:57
## 722 7834 2021-03-09 2021-03-09 16:33:06
## 723 7834 2021-03-09 2021-03-09 16:33:06
## 724 5524 2021-03-10 2021-03-10 05:11:23
## 725 6501 2021-03-10 2021-03-09 22:58:45
## 726 6501 2021-03-10 2021-03-09 22:58:45
## 727 6501 2021-03-10 2021-03-09 22:58:45
## 728 6501 2021-03-10 2021-03-09 22:58:45
## 729 6501 2021-03-10 2021-03-09 22:58:45
## 730 6501 2021-03-10 2021-03-09 22:58:45
## 731 6501 2021-03-10 2021-03-09 22:58:45
## 732 6501 2021-03-10 2021-03-09 22:58:45
## 733 51661 2021-03-05 2021-03-05 04:04:46
## 734 51661 2021-03-05 2021-03-05 04:04:46
## 735 51661 2021-03-05 2021-03-05 04:04:46
## 736 37621 2021-03-08 2021-03-07 21:14:49
## 737 37621 2021-03-08 2021-03-07 21:14:49
## 738 8137 2021-03-09 2021-03-09 15:36:26
## 739 8137 2021-03-09 2021-03-09 15:36:26
## 740 8137 2021-03-09 2021-03-09 15:36:26
431
## 741 8137 2021-03-09 2021-03-09 15:36:26
## 742 8137 2021-03-09 2021-03-09 15:36:26
## 743 8137 2021-03-09 2021-03-09 15:36:26
## 744 45804 2021-03-08 2021-03-07 19:55:06
## 745 37761 2021-03-08 2021-03-07 21:13:18
## 746 7514 2021-03-09 2021-03-09 17:36:38
## 747 7514 2021-03-09 2021-03-09 17:36:38
## 748 21969 2021-03-08 2021-03-08 10:44:50
## 749 12320 2021-03-09 2021-03-09 04:14:07
## 750 28456 2021-03-08 2021-03-08 02:29:10
## 751 28456 2021-03-08 2021-03-08 02:29:10
## 752 28456 2021-03-08 2021-03-08 02:29:10
## 753 28456 2021-03-08 2021-03-08 02:29:10
## 754 28456 2021-03-08 2021-03-08 02:29:10
## 755 28456 2021-03-08 2021-03-08 02:29:10
## 756 28456 2021-03-08 2021-03-08 02:29:10
## 757 28456 2021-03-08 2021-03-08 02:29:10
## 758 28456 2021-03-08 2021-03-08 02:29:10
## 759 12774 2021-03-09 2021-03-09 02:58:03
## 760 12774 2021-03-09 2021-03-09 02:58:03
## 761 12774 2021-03-09 2021-03-09 02:58:03
## 762 12774 2021-03-09 2021-03-09 02:58:03
## 763 11572 2021-03-09 2021-03-09 07:40:30
## 764 11572 2021-03-09 2021-03-09 07:40:30
## 765 24980 2021-03-08 2021-03-08 07:27:59
## 766 24980 2021-03-08 2021-03-08 07:27:59
## 767 10383 2021-03-09 2021-03-09 11:36:48
## 768 22026 2021-03-08 2021-03-08 10:41:42
## 769 22026 2021-03-08 2021-03-08 10:41:42
## 770 23844 2021-03-08 2021-03-08 08:44:24
## 771 52590 2021-03-04 2021-03-04 12:07:22
## 772 5827 2021-03-10 2021-03-10 03:17:51
## 773 39562 2021-03-08 2021-03-07 21:00:39
## 774 18854 2021-03-08 2021-03-08 14:11:30
## 775 12392 2021-03-09 2021-03-09 03:44:42
## 776 12392 2021-03-09 2021-03-09 03:44:42
## 777 12392 2021-03-09 2021-03-09 03:44:42
## 778 12724 2021-03-09 2021-03-09 03:04:42
## 779 49219 2021-03-06 2021-03-06 12:57:17
## 780 18881 2021-03-08 2021-03-08 14:10:00
## 781 5944 2021-03-10 2021-03-10 02:42:00
## 782 5944 2021-03-10 2021-03-10 02:42:00
## 783 5944 2021-03-10 2021-03-10 02:42:00
## 784 29967 2021-03-08 2021-03-08 00:41:40
## 785 11279 2021-03-09 2021-03-09 08:31:32
## 786 23899 2021-03-08 2021-03-08 08:40:46
## 787 3142 2021-03-10 2021-03-10 15:41:28
## 788 17876 2021-03-08 2021-03-08 15:30:40
## 789 17876 2021-03-08 2021-03-08 15:30:40
## 790 1673 2021-03-11 2021-03-11 06:02:55
## 791 17414 2021-03-08 2021-03-08 16:14:21
## 792 17414 2021-03-08 2021-03-08 16:14:21
## 793 16731 2021-03-08 2021-03-08 16:53:18
## 794 6352 2021-03-10 2021-03-09 23:47:34
432
## 795 6352 2021-03-10 2021-03-09 23:47:34
## 796 26511 2021-03-08 2021-03-08 05:28:42
## 797 5593 2021-03-10 2021-03-10 04:54:40
## 798 19636 2021-03-08 2021-03-08 13:31:07
## 799 32657 2021-03-08 2021-03-07 22:38:31
## 800 18261 2021-03-08 2021-03-08 14:54:33
## 801 20418 2021-03-08 2021-03-08 12:36:33
## 802 20418 2021-03-08 2021-03-08 12:36:33
## 803 50600 2021-03-05 2021-03-05 15:54:02
## 804 50600 2021-03-05 2021-03-05 15:54:02
## 805 50600 2021-03-05 2021-03-05 15:54:02
## 806 50828 2021-03-05 2021-03-05 14:02:20
## 807 46365 2021-03-07 2021-03-07 17:17:16
## 808 46365 2021-03-07 2021-03-07 17:17:16
## 809 45627 2021-03-08 2021-03-07 20:03:21
## 810 4934 2021-03-10 2021-03-10 08:08:43
## 811 4934 2021-03-10 2021-03-10 08:08:43
## 812 4934 2021-03-10 2021-03-10 08:08:43
## 813 38693 2021-03-08 2021-03-07 21:06:15
## 814 26892 2021-03-08 2021-03-08 04:57:21
## 815 26892 2021-03-08 2021-03-08 04:57:21
## 816 44912 2021-03-08 2021-03-07 20:16:52
## 817 14374 2021-03-09 2021-03-08 20:54:16
## 818 46914 2021-03-07 2021-03-07 13:27:57
## 819 12235 2021-03-09 2021-03-09 04:51:21
## 820 44993 2021-03-08 2021-03-07 20:15:38
## 821 6811 2021-03-10 2021-03-09 21:13:59
## 822 6811 2021-03-10 2021-03-09 21:13:59
## 823 6811 2021-03-10 2021-03-09 21:13:59
## 824 25047 2021-03-08 2021-03-08 07:23:08
## 825 2183 2021-03-11 2021-03-11 00:08:23
## 826 14170 2021-03-09 2021-03-08 21:28:46
## 827 7961 2021-03-09 2021-03-09 16:07:04
## 828 49745 2021-03-06 2021-03-06 04:48:44
## 829 49745 2021-03-06 2021-03-06 04:48:44
## 830 3678 2021-03-10 2021-03-10 12:50:23
## 831 19706 2021-03-08 2021-03-08 13:27:05
## 832 19706 2021-03-08 2021-03-08 13:27:05
## 833 48050 2021-03-07 2021-03-07 06:42:26
## 834 48050 2021-03-07 2021-03-07 06:42:26
## 835 48050 2021-03-07 2021-03-07 06:42:26
## 836 48050 2021-03-07 2021-03-07 06:42:26
## 837 31077 2021-03-08 2021-03-07 23:45:31
## 838 32935 2021-03-08 2021-03-07 22:29:37
## 839 4968 2021-03-10 2021-03-10 08:02:12
## 840 52759 2021-03-04 2021-03-04 10:19:38
## 841 44029 2021-03-08 2021-03-07 20:26:48
## 842 6594 2021-03-10 2021-03-09 22:26:10
## 843 49050 2021-03-06 2021-03-06 15:05:09
## 844 33421 2021-03-08 2021-03-07 22:14:15
## 845 46563 2021-03-07 2021-03-07 15:45:59
## 846 46563 2021-03-07 2021-03-07 15:45:59
## 847 46563 2021-03-07 2021-03-07 15:45:59
## 848 6675 2021-03-10 2021-03-09 22:04:32
433
## 849 6675 2021-03-10 2021-03-09 22:04:32
## 850 6675 2021-03-10 2021-03-09 22:04:32
## 851 28236 2021-03-08 2021-03-08 02:49:19
## 852 28236 2021-03-08 2021-03-08 02:49:19
## 853 7569 2021-03-09 2021-03-09 17:24:21
## 854 34962 2021-03-08 2021-03-07 21:47:17
## 855 34962 2021-03-08 2021-03-07 21:47:17
## 856 26035 2021-03-08 2021-03-08 06:07:44
## 857 26035 2021-03-08 2021-03-08 06:07:44
## 858 11455 2021-03-09 2021-03-09 08:00:42
## 859 11455 2021-03-09 2021-03-09 08:00:42
## 860 11455 2021-03-09 2021-03-09 08:00:42
## 861 14588 2021-03-09 2021-03-08 20:21:08
## 862 14588 2021-03-09 2021-03-08 20:21:08
## 863 35674 2021-03-08 2021-03-07 21:38:20
## 864 35674 2021-03-08 2021-03-07 21:38:20
## 865 35674 2021-03-08 2021-03-07 21:38:20
## 866 35674 2021-03-08 2021-03-07 21:38:20
## 867 35674 2021-03-08 2021-03-07 21:38:20
## 868 21333 2021-03-08 2021-03-08 11:27:14
## 869 17358 2021-03-08 2021-03-08 16:18:11
## 870 10178 2021-03-09 2021-03-09 12:12:54
## 871 10178 2021-03-09 2021-03-09 12:12:54
## 872 10178 2021-03-09 2021-03-09 12:12:54
## 873 2856 2021-03-10 2021-03-10 17:43:00
## 874 2856 2021-03-10 2021-03-10 17:43:00
## 875 2856 2021-03-10 2021-03-10 17:43:00
## 876 2856 2021-03-10 2021-03-10 17:43:00
## 877 9853 2021-03-09 2021-03-09 12:52:02
## 878 32713 2021-03-08 2021-03-07 22:36:34
## 879 32560 2021-03-08 2021-03-07 22:41:47
## 880 2799 2021-03-10 2021-03-10 18:06:54
## 881 8884 2021-03-09 2021-03-09 14:17:12
## 882 36520 2021-03-08 2021-03-07 21:27:48
## 883 10373 2021-03-09 2021-03-09 11:38:11
## 884 49128 2021-03-06 2021-03-06 13:58:00
## 885 49128 2021-03-06 2021-03-06 13:58:00
## 886 10490 2021-03-09 2021-03-09 11:14:08
## 887 10490 2021-03-09 2021-03-09 11:14:08
## 888 389 2021-03-11 2021-03-11 14:23:37
## 889 27437 2021-03-08 2021-03-08 04:17:12
## 890 22125 2021-03-08 2021-03-08 10:34:59
## 891 11380 2021-03-09 2021-03-09 08:15:02
## 892 11380 2021-03-09 2021-03-09 08:15:02
## 893 11380 2021-03-09 2021-03-09 08:15:02
## 894 11380 2021-03-09 2021-03-09 08:15:02
## 895 11380 2021-03-09 2021-03-09 08:15:02
## 896 11380 2021-03-09 2021-03-09 08:15:02
## 897 1969 2021-03-11 2021-03-11 03:32:56
## 898 10319 2021-03-09 2021-03-09 11:46:40
## 899 7038 2021-03-10 2021-03-09 19:56:32
## 900 7038 2021-03-10 2021-03-09 19:56:32
## 901 17263 2021-03-08 2021-03-08 16:23:24
## 902 32131 2021-03-08 2021-03-07 22:59:23
434
## 903 43826 2021-03-08 2021-03-07 20:28:52
## 904 5921 2021-03-10 2021-03-10 02:48:57
## 905 35944 2021-03-08 2021-03-07 21:35:02
## 906 31729 2021-03-08 2021-03-07 23:15:50
## 907 31729 2021-03-08 2021-03-07 23:15:50
## 908 30534 2021-03-08 2021-03-08 00:09:10
## 909 30534 2021-03-08 2021-03-08 00:09:10
## 910 30019 2021-03-08 2021-03-08 00:38:47
## 911 30019 2021-03-08 2021-03-08 00:38:47
## 912 38387 2021-03-08 2021-03-07 21:08:55
## 913 38387 2021-03-08 2021-03-07 21:08:55
## 914 33294 2021-03-08 2021-03-07 22:18:08
## 915 33714 2021-03-08 2021-03-07 22:07:17
## 916 267 2021-03-11 2021-03-11 15:56:12
## 917 267 2021-03-11 2021-03-11 15:56:12
## 918 42143 2021-03-08 2021-03-07 20:44:40
## 919 42143 2021-03-08 2021-03-07 20:44:40
## 920 42143 2021-03-08 2021-03-07 20:44:40
## 921 36916 2021-03-08 2021-03-07 21:23:22
## 922 5480 2021-03-10 2021-03-10 05:22:36
## 923 32594 2021-03-08 2021-03-07 22:40:27
## 924 26368 2021-03-08 2021-03-08 05:39:45
## 925 1178 2021-03-11 2021-03-11 08:27:35
## 926 1178 2021-03-11 2021-03-11 08:27:35
## 927 2625 2021-03-11 2021-03-10 19:13:40
## 928 30470 2021-03-08 2021-03-08 00:11:55
## 929 30470 2021-03-08 2021-03-08 00:11:55
## 930 21631 2021-03-08 2021-03-08 11:05:35
## 931 2821 2021-03-10 2021-03-10 18:00:13
## 932 38309 2021-03-08 2021-03-07 21:09:46
## 933 26298 2021-03-08 2021-03-08 05:44:07
## 934 4607 2021-03-10 2021-03-10 09:16:04
## 935 17370 2021-03-08 2021-03-08 16:17:23
## 936 27265 2021-03-08 2021-03-08 04:28:52
## 937 27265 2021-03-08 2021-03-08 04:28:52
## 938 8687 2021-03-09 2021-03-09 14:32:42
## 939 8687 2021-03-09 2021-03-09 14:32:42
## 940 13986 2021-03-09 2021-03-08 22:08:26
## 941 48291 2021-03-07 2021-03-07 04:38:06
## 942 48291 2021-03-07 2021-03-07 04:38:06
## 943 51914 2021-03-05 2021-03-04 20:51:15
## 944 12327 2021-03-09 2021-03-09 04:10:49
## 945 12327 2021-03-09 2021-03-09 04:10:49
## 946 43052 2021-03-08 2021-03-07 20:34:56
## 947 49175 2021-03-06 2021-03-06 13:30:43
## 948 14759 2021-03-09 2021-03-08 19:59:35
## 949 14759 2021-03-09 2021-03-08 19:59:35
## 950 28943 2021-03-08 2021-03-08 01:52:08
## 951 46674 2021-03-07 2021-03-07 14:47:27
## 952 24482 2021-03-08 2021-03-08 08:03:09
## 953 22597 2021-03-08 2021-03-08 10:03:41
## 954 8111 2021-03-09 2021-03-09 15:41:15
## 955 1925 2021-03-11 2021-03-11 04:04:15
## 956 31044 2021-03-08 2021-03-07 23:47:18
435
## 957 1239 2021-03-11 2021-03-11 08:08:40
## 958 18318 2021-03-08 2021-03-08 14:49:52
## 959 18318 2021-03-08 2021-03-08 14:49:52
## 960 24858 2021-03-08 2021-03-08 07:35:31
## 961 17461 2021-03-08 2021-03-08 16:11:33
## 962 9552 2021-03-09 2021-03-09 13:26:48
## 963 30267 2021-03-08 2021-03-08 00:23:31
## 964 9176 2021-03-09 2021-03-09 13:56:09
## 965 1112 2021-03-11 2021-03-11 08:49:46
## 966 221 2021-03-11 2021-03-11 16:30:27
## 967 12604 2021-03-09 2021-03-09 03:16:41
## 968 17431 2021-03-08 2021-03-08 16:13:16
## 969 12536 2021-03-09 2021-03-09 03:24:16
## 970 49372 2021-03-06 2021-03-06 11:03:22
## 971 49372 2021-03-06 2021-03-06 11:03:22
## 972 11657 2021-03-09 2021-03-09 07:24:09
## 973 13040 2021-03-09 2021-03-09 02:22:17
## 974 13040 2021-03-09 2021-03-09 02:22:17
## 975 35410 2021-03-08 2021-03-07 21:41:33
## 976 35410 2021-03-08 2021-03-07 21:41:33
## 977 28594 2021-03-08 2021-03-08 02:17:11
## 978 13902 2021-03-09 2021-03-08 22:25:56
## 979 13902 2021-03-09 2021-03-08 22:25:56
## 980 17420 2021-03-08 2021-03-08 16:13:59
## 981 33846 2021-03-08 2021-03-07 22:04:59
## 982 35767 2021-03-08 2021-03-07 21:37:10
## 983 49110 2021-03-06 2021-03-06 14:15:05
## 984 49110 2021-03-06 2021-03-06 14:15:05
## 985 2746 2021-03-10 2021-03-10 18:31:03
## 986 41988 2021-03-08 2021-03-07 20:45:33
## 987 12495 2021-03-09 2021-03-09 03:28:38
## 988 7652 2021-03-09 2021-03-09 17:07:37
## 989 7652 2021-03-09 2021-03-09 17:07:37
## 990 7652 2021-03-09 2021-03-09 17:07:37
## 991 6895 2021-03-10 2021-03-09 20:46:53
## 992 6895 2021-03-10 2021-03-09 20:46:53
## 993 6895 2021-03-10 2021-03-09 20:46:53
## 994 47485 2021-03-07 2021-03-07 10:10:44
## 995 49671 2021-03-06 2021-03-06 06:00:27
## 996 49671 2021-03-06 2021-03-06 06:00:27
## 997 49671 2021-03-06 2021-03-06 06:00:27
## 998 39041 2021-03-08 2021-03-07 21:03:47
## 999 1830 2021-03-11 2021-03-11 04:55:47
## 1000 51590 2021-03-05 2021-03-05 05:43:46
## 1001 52132 2021-03-04 2021-03-04 17:07:35
## 1002 23608 2021-03-08 2021-03-08 09:00:14
## 1003 4754 2021-03-10 2021-03-10 08:49:18
## 1004 33281 2021-03-08 2021-03-07 22:18:22
## 1005 49309 2021-03-06 2021-03-06 11:47:12
## 1006 49309 2021-03-06 2021-03-06 11:47:12
## 1007 13775 2021-03-09 2021-03-08 22:58:31
## 1008 13775 2021-03-09 2021-03-08 22:58:31
## 1009 13775 2021-03-09 2021-03-08 22:58:31
## 1010 13775 2021-03-09 2021-03-08 22:58:31
436
## 1011 32548 2021-03-08 2021-03-07 22:42:12
## 1012 32548 2021-03-08 2021-03-07 22:42:12
## 1013 30304 2021-03-08 2021-03-08 00:21:23
## 1014 30304 2021-03-08 2021-03-08 00:21:23
## 1015 30304 2021-03-08 2021-03-08 00:21:23
## 1016 30304 2021-03-08 2021-03-08 00:21:23
## 1017 30304 2021-03-08 2021-03-08 00:21:23
## 1018 30304 2021-03-08 2021-03-08 00:21:23
## 1019 28741 2021-03-08 2021-03-08 02:07:00
## 1020 28741 2021-03-08 2021-03-08 02:07:00
## 1021 28741 2021-03-08 2021-03-08 02:07:00
## 1022 2907 2021-03-10 2021-03-10 17:19:00
## 1023 2907 2021-03-10 2021-03-10 17:19:00
## 1024 2907 2021-03-10 2021-03-10 17:19:00
## 1025 2907 2021-03-10 2021-03-10 17:19:00
## 1026 3339 2021-03-10 2021-03-10 14:09:03
## 1027 36005 2021-03-08 2021-03-07 21:34:23
## 1028 36005 2021-03-08 2021-03-07 21:34:23
## 1029 36005 2021-03-08 2021-03-07 21:34:23
## 1030 36005 2021-03-08 2021-03-07 21:34:23
## 1031 11013 2021-03-09 2021-03-09 09:38:27
## 1032 31783 2021-03-08 2021-03-07 23:13:39
## 1033 29676 2021-03-08 2021-03-08 00:59:00
## 1034 29676 2021-03-08 2021-03-08 00:59:00
## 1035 29676 2021-03-08 2021-03-08 00:59:00
## 1036 29676 2021-03-08 2021-03-08 00:59:00
## 1037 29676 2021-03-08 2021-03-08 00:59:00
## 1038 14158 2021-03-09 2021-03-08 21:30:36
## 1039 14158 2021-03-09 2021-03-08 21:30:36
## 1040 690 2021-03-11 2021-03-11 11:18:12
## 1041 690 2021-03-11 2021-03-11 11:18:12
## 1042 39993 2021-03-08 2021-03-07 20:58:02
## 1043 10679 2021-03-09 2021-03-09 10:38:02
## 1044 10679 2021-03-09 2021-03-09 10:38:02
## 1045 10679 2021-03-09 2021-03-09 10:38:02
## 1046 10679 2021-03-09 2021-03-09 10:38:02
## 1047 10679 2021-03-09 2021-03-09 10:38:02
## 1048 32585 2021-03-08 2021-03-07 22:40:48
## 1049 17534 2021-03-08 2021-03-08 16:06:17
## 1050 18113 2021-03-08 2021-03-08 15:06:43
## 1051 50958 2021-03-05 2021-03-05 13:01:55
## 1052 17319 2021-03-08 2021-03-08 16:20:28
## 1053 51248 2021-03-05 2021-03-05 10:43:41
## 1054 50420 2021-03-05 2021-03-05 17:08:45
## 1055 40734 2021-03-08 2021-03-07 20:53:28
## 1056 12173 2021-03-09 2021-03-09 05:17:09
## 1057 12173 2021-03-09 2021-03-09 05:17:09
## 1058 26174 2021-03-08 2021-03-08 05:54:51
## 1059 20191 2021-03-08 2021-03-08 12:56:39
## 1060 12827 2021-03-09 2021-03-09 02:52:43
## 1061 40521 2021-03-08 2021-03-07 20:54:47
## 1062 50987 2021-03-05 2021-03-05 12:53:54
## 1063 50987 2021-03-05 2021-03-05 12:53:54
## 1064 20657 2021-03-08 2021-03-08 12:17:55
437
## 1065 20657 2021-03-08 2021-03-08 12:17:55
## 1066 18875 2021-03-08 2021-03-08 14:10:10
## 1067 24547 2021-03-08 2021-03-08 07:58:41
## 1068 51554 2021-03-05 2021-03-05 06:33:25
## 1069 51554 2021-03-05 2021-03-05 06:33:25
## 1070 8496 2021-03-09 2021-03-09 14:52:18
## 1071 8496 2021-03-09 2021-03-09 14:52:18
## 1072 10694 2021-03-09 2021-03-09 10:35:55
## 1073 43293 2021-03-08 2021-03-07 20:33:16
## 1074 22748 2021-03-08 2021-03-08 09:53:46
## 1075 38621 2021-03-08 2021-03-07 21:06:55
## 1076 2433 2021-03-11 2021-03-10 20:57:04
## 1077 7325 2021-03-09 2021-03-09 18:23:48
## 1078 49693 2021-03-06 2021-03-06 05:48:58
## 1079 51547 2021-03-05 2021-03-05 06:43:21
## 1080 3351 2021-03-10 2021-03-10 14:05:29
## 1081 3351 2021-03-10 2021-03-10 14:05:29
## 1082 3351 2021-03-10 2021-03-10 14:05:29
## 1083 3351 2021-03-10 2021-03-10 14:05:29
## 1084 3351 2021-03-10 2021-03-10 14:05:29
## 1085 3351 2021-03-10 2021-03-10 14:05:29
## 1086 3351 2021-03-10 2021-03-10 14:05:29
## 1087 3351 2021-03-10 2021-03-10 14:05:29
## 1088 29063 2021-03-08 2021-03-08 01:42:41
## 1089 29063 2021-03-08 2021-03-08 01:42:41
## 1090 29063 2021-03-08 2021-03-08 01:42:41
## 1091 29063 2021-03-08 2021-03-08 01:42:41
## 1092 29063 2021-03-08 2021-03-08 01:42:41
## 1093 670 2021-03-11 2021-03-11 11:32:15
## 1094 670 2021-03-11 2021-03-11 11:32:15
## 1095 30878 2021-03-08 2021-03-07 23:53:29
## 1096 30878 2021-03-08 2021-03-07 23:53:29
## 1097 52248 2021-03-04 2021-03-04 15:35:19
## 1098 47116 2021-03-07 2021-03-07 12:06:45
## 1099 638 2021-03-11 2021-03-11 11:52:18
## 1100 13769 2021-03-09 2021-03-08 23:00:19
## 1101 3274 2021-03-10 2021-03-10 14:37:26
## 1102 9411 2021-03-09 2021-03-09 13:37:25
## 1103 94 2021-03-11 2021-03-11 18:06:48
## 1104 8740 2021-03-09 2021-03-09 14:27:50
## 1105 11844 2021-03-09 2021-03-09 06:51:49
## 1106 11844 2021-03-09 2021-03-09 06:51:49
## 1107 34463 2021-03-08 2021-03-07 21:54:39
## 1108 40965 2021-03-08 2021-03-07 20:51:41
## 1109 38729 2021-03-08 2021-03-07 21:05:58
## 1110 35390 2021-03-08 2021-03-07 21:41:51
## 1111 6206 2021-03-10 2021-03-10 00:53:35
## 1112 50336 2021-03-05 2021-03-05 18:07:05
## 1113 32053 2021-03-08 2021-03-07 23:02:48
## 1114 1553 2021-03-11 2021-03-11 06:50:32
## 1115 32884 2021-03-08 2021-03-07 22:31:00
## 1116 23986 2021-03-08 2021-03-08 08:35:09
## 1117 23986 2021-03-08 2021-03-08 08:35:09
## 1118 14989 2021-03-09 2021-03-08 19:20:12
438
## 1119 20687 2021-03-08 2021-03-08 12:15:23
## 1120 22923 2021-03-08 2021-03-08 09:41:17
## 1121 41195 2021-03-08 2021-03-07 20:50:07
## 1122 31549 2021-03-08 2021-03-07 23:23:00
## 1123 5117 2021-03-10 2021-03-10 07:32:25
## 1124 5117 2021-03-10 2021-03-10 07:32:25
## 1125 5117 2021-03-10 2021-03-10 07:32:25
## 1126 5117 2021-03-10 2021-03-10 07:32:25
## 1127 5117 2021-03-10 2021-03-10 07:32:25
## 1128 5117 2021-03-10 2021-03-10 07:32:25
## 1129 5117 2021-03-10 2021-03-10 07:32:25
## 1130 21456 2021-03-08 2021-03-08 11:19:32
## 1131 21456 2021-03-08 2021-03-08 11:19:32
## 1132 33113 2021-03-08 2021-03-07 22:23:39
## 1133 33113 2021-03-08 2021-03-07 22:23:39
## 1134 2344 2021-03-11 2021-03-10 22:02:42
## 1135 20678 2021-03-08 2021-03-08 12:16:16
## 1136 28866 2021-03-08 2021-03-08 01:58:34
## 1137 18646 2021-03-08 2021-03-08 14:25:31
## 1138 7224 2021-03-09 2021-03-09 18:48:12
## 1139 1509 2021-03-11 2021-03-11 07:01:23
## 1140 1509 2021-03-11 2021-03-11 07:01:23
## 1141 16187 2021-03-08 2021-03-08 17:28:18
## 1142 25883 2021-03-08 2021-03-08 06:19:58
## 1143 21078 2021-03-08 2021-03-08 11:42:50
## 1144 6573 2021-03-10 2021-03-09 22:31:43
## 1145 50485 2021-03-05 2021-03-05 16:34:06
## 1146 50485 2021-03-05 2021-03-05 16:34:06
## 1147 24765 2021-03-08 2021-03-08 07:41:12
## 1148 5834 2021-03-10 2021-03-10 03:16:12
## 1149 9407 2021-03-09 2021-03-09 13:37:34
## 1150 29088 2021-03-08 2021-03-08 01:41:17
## 1151 29088 2021-03-08 2021-03-08 01:41:17
## 1152 20243 2021-03-08 2021-03-08 12:52:13
## 1153 21100 2021-03-08 2021-03-08 11:41:33
## 1154 44884 2021-03-08 2021-03-07 20:17:22
## 1155 49360 2021-03-06 2021-03-06 11:12:12
## 1156 49360 2021-03-06 2021-03-06 11:12:12
## 1157 49360 2021-03-06 2021-03-06 11:12:12
## 1158 47455 2021-03-07 2021-03-07 10:20:15
## 1159 48425 2021-03-07 2021-03-07 02:54:50
## 1160 48425 2021-03-07 2021-03-07 02:54:50
## 1161 28488 2021-03-08 2021-03-08 02:26:39
## 1162 7853 2021-03-09 2021-03-09 16:29:18
## 1163 22159 2021-03-08 2021-03-08 10:32:27
## 1164 47227 2021-03-07 2021-03-07 11:36:16
## 1165 47227 2021-03-07 2021-03-07 11:36:16
## 1166 38027 2021-03-08 2021-03-07 21:11:16
## 1167 19086 2021-03-08 2021-03-08 13:59:36
## 1168 10921 2021-03-09 2021-03-09 09:54:02
## 1169 26960 2021-03-08 2021-03-08 04:50:43
## 1170 44548 2021-03-08 2021-03-07 20:21:12
## 1171 8765 2021-03-09 2021-03-09 14:26:04
## 1172 8765 2021-03-09 2021-03-09 14:26:04
439
## 1173 48657 2021-03-07 2021-03-06 21:00:05
## 1174 48657 2021-03-07 2021-03-06 21:00:05
## 1175 17237 2021-03-08 2021-03-08 16:24:48
## 1176 29446 2021-03-08 2021-03-08 01:14:51
## 1177 29446 2021-03-08 2021-03-08 01:14:51
## 1178 37142 2021-03-08 2021-03-07 21:20:57
## 1179 26940 2021-03-08 2021-03-08 04:52:25
## 1180 21557 2021-03-08 2021-03-08 11:11:15
## 1181 44005 2021-03-08 2021-03-07 20:27:04
## 1182 22779 2021-03-08 2021-03-08 09:51:44
## 1183 22779 2021-03-08 2021-03-08 09:51:44
## 1184 17717 2021-03-08 2021-03-08 15:48:24
## 1185 9906 2021-03-09 2021-03-09 12:46:42
## 1186 38415 2021-03-08 2021-03-07 21:08:37
## 1187 38415 2021-03-08 2021-03-07 21:08:37
## 1188 38415 2021-03-08 2021-03-07 21:08:37
## 1189 23636 2021-03-08 2021-03-08 08:58:03
## 1190 47180 2021-03-07 2021-03-07 11:49:13
## 1191 47180 2021-03-07 2021-03-07 11:49:13
## 1192 51586 2021-03-05 2021-03-05 05:50:37
## 1193 6384 2021-03-10 2021-03-09 23:36:53
## 1194 6384 2021-03-10 2021-03-09 23:36:53
## 1195 6384 2021-03-10 2021-03-09 23:36:53
## 1196 6384 2021-03-10 2021-03-09 23:36:53
## 1197 51974 2021-03-05 2021-03-04 19:42:47
## 1198 51974 2021-03-05 2021-03-04 19:42:47
## 1199 51974 2021-03-05 2021-03-04 19:42:47
## 1200 51974 2021-03-05 2021-03-04 19:42:47
## 1201 7108 2021-03-10 2021-03-09 19:23:40
## 1202 7108 2021-03-10 2021-03-09 19:23:40
## 1203 7108 2021-03-10 2021-03-09 19:23:40
## 1204 50227 2021-03-06 2021-03-05 19:21:20
## 1205 50227 2021-03-06 2021-03-05 19:21:20
## 1206 21943 2021-03-08 2021-03-08 10:46:01
## 1207 21943 2021-03-08 2021-03-08 10:46:01
## 1208 21943 2021-03-08 2021-03-08 10:46:01
## 1209 21943 2021-03-08 2021-03-08 10:46:01
## 1210 19808 2021-03-08 2021-03-08 13:20:46
## 1211 19808 2021-03-08 2021-03-08 13:20:46
## 1212 14919 2021-03-09 2021-03-08 19:32:10
## 1213 18484 2021-03-08 2021-03-08 14:37:08
## 1214 5217 2021-03-10 2021-03-10 07:00:39
## 1215 1315 2021-03-11 2021-03-11 07:52:55
## 1216 1315 2021-03-11 2021-03-11 07:52:55
## 1217 1315 2021-03-11 2021-03-11 07:52:55
## 1218 21731 2021-03-08 2021-03-08 10:59:39
## 1219 2431 2021-03-11 2021-03-10 20:58:21
## 1220 10632 2021-03-09 2021-03-09 10:48:04
## 1221 10632 2021-03-09 2021-03-09 10:48:04
## 1222 10627 2021-03-09 2021-03-09 10:48:33
## 1223 19565 2021-03-08 2021-03-08 13:35:21
## 1224 43043 2021-03-08 2021-03-07 20:35:05
## 1225 33220 2021-03-08 2021-03-07 22:20:09
## 1226 33220 2021-03-08 2021-03-07 22:20:09
440
## 1227 28317 2021-03-08 2021-03-08 02:42:05
## 1228 28317 2021-03-08 2021-03-08 02:42:05
## 1229 52148 2021-03-04 2021-03-04 16:49:40
## 1230 52148 2021-03-04 2021-03-04 16:49:40
## 1231 52148 2021-03-04 2021-03-04 16:49:40
## 1232 52148 2021-03-04 2021-03-04 16:49:40
## 1233 52148 2021-03-04 2021-03-04 16:49:40
## 1234 48100 2021-03-07 2021-03-07 06:10:54
## 1235 50300 2021-03-05 2021-03-05 18:29:03
## 1236 28130 2021-03-08 2021-03-08 03:10:08
## 1237 28130 2021-03-08 2021-03-08 03:10:08
## 1238 49406 2021-03-06 2021-03-06 10:38:35
## 1239 48345 2021-03-07 2021-03-07 04:13:34
## 1240 48345 2021-03-07 2021-03-07 04:13:34
## 1241 30577 2021-03-08 2021-03-08 00:07:10
## 1242 30577 2021-03-08 2021-03-08 00:07:10
## 1243 8011 2021-03-09 2021-03-09 15:57:42
## 1244 8011 2021-03-09 2021-03-09 15:57:42
## 1245 23790 2021-03-08 2021-03-08 08:49:02
## 1246 21558 2021-03-08 2021-03-08 11:11:14
## 1247 8453 2021-03-09 2021-03-09 14:57:12
## 1248 12520 2021-03-09 2021-03-09 03:26:20
## 1249 42990 2021-03-08 2021-03-07 20:35:29
## 1250 24212 2021-03-08 2021-03-08 08:20:24
## 1251 17636 2021-03-08 2021-03-08 15:58:26
## 1252 17636 2021-03-08 2021-03-08 15:58:26
## 1253 17636 2021-03-08 2021-03-08 15:58:26
## 1254 17636 2021-03-08 2021-03-08 15:58:26
## 1255 49822 2021-03-06 2021-03-06 03:10:25
## 1256 39290 2021-03-08 2021-03-07 21:02:07
## 1257 15960 2021-03-08 2021-03-08 17:45:32
## 1258 51110 2021-03-05 2021-03-05 12:12:58
## 1259 21483 2021-03-08 2021-03-08 11:17:08
## 1260 21483 2021-03-08 2021-03-08 11:17:08
## 1261 21483 2021-03-08 2021-03-08 11:17:08
## 1262 6446 2021-03-10 2021-03-09 23:17:55
## 1263 6446 2021-03-10 2021-03-09 23:17:55
## 1264 6446 2021-03-10 2021-03-09 23:17:55
## 1265 12130 2021-03-09 2021-03-09 05:37:02
## 1266 21137 2021-03-08 2021-03-08 11:39:30
## 1267 47405 2021-03-07 2021-03-07 10:34:07
## 1268 19030 2021-03-08 2021-03-08 14:02:35
## 1269 51616 2021-03-05 2021-03-05 05:17:30
## 1270 27625 2021-03-08 2021-03-08 04:01:04
## 1271 51953 2021-03-05 2021-03-04 19:59:51
## 1272 30293 2021-03-08 2021-03-08 00:21:51
## 1273 30293 2021-03-08 2021-03-08 00:21:51
## 1274 30293 2021-03-08 2021-03-08 00:21:51
## 1275 17627 2021-03-08 2021-03-08 15:59:42
## 1276 1936 2021-03-11 2021-03-11 03:57:32
## 1277 48025 2021-03-07 2021-03-07 06:56:31
## 1278 51166 2021-03-05 2021-03-05 11:47:49
## 1279 51166 2021-03-05 2021-03-05 11:47:49
## 1280 51166 2021-03-05 2021-03-05 11:47:49
441
## 1281 17984 2021-03-08 2021-03-08 15:19:07
## 1282 21874 2021-03-08 2021-03-08 10:50:30
## 1283 21034 2021-03-08 2021-03-08 11:47:01
## 1284 21034 2021-03-08 2021-03-08 11:47:01
## 1285 21034 2021-03-08 2021-03-08 11:47:01
## 1286 51624 2021-03-05 2021-03-05 05:08:01
## 1287 11382 2021-03-09 2021-03-09 08:14:27
## 1288 43662 2021-03-08 2021-03-07 20:30:37
## 1289 43662 2021-03-08 2021-03-07 20:30:37
## 1290 50489 2021-03-05 2021-03-05 16:31:13
## 1291 37400 2021-03-08 2021-03-07 21:17:46
## 1292 6132 2021-03-10 2021-03-10 01:26:09
## 1293 33099 2021-03-08 2021-03-07 22:23:58
## 1294 33099 2021-03-08 2021-03-07 22:23:58
## 1295 33099 2021-03-08 2021-03-07 22:23:58
## 1296 33099 2021-03-08 2021-03-07 22:23:58
## 1297 33099 2021-03-08 2021-03-07 22:23:58
## 1298 33099 2021-03-08 2021-03-07 22:23:58
## 1299 44210 2021-03-08 2021-03-07 20:24:46
## 1300 44210 2021-03-08 2021-03-07 20:24:46
## 1301 10170 2021-03-09 2021-03-09 12:13:31
## 1302 20829 2021-03-08 2021-03-08 12:03:52
## 1303 3856 2021-03-10 2021-03-10 12:11:28
## 1304 6009 2021-03-10 2021-03-10 02:20:08
## 1305 3715 2021-03-10 2021-03-10 12:42:37
## 1306 3715 2021-03-10 2021-03-10 12:42:37
## 1307 22763 2021-03-08 2021-03-08 09:52:39
## 1308 1932 2021-03-11 2021-03-11 03:59:19
## 1309 23816 2021-03-08 2021-03-08 08:47:12
## 1310 902 2021-03-11 2021-03-11 09:55:49
## 1311 5276 2021-03-10 2021-03-10 06:48:05
## 1312 18131 2021-03-08 2021-03-08 15:05:29
## 1313 46951 2021-03-07 2021-03-07 13:16:21
## 1314 46951 2021-03-07 2021-03-07 13:16:21
## 1315 6067 2021-03-10 2021-03-10 01:56:06
## 1316 19054 2021-03-08 2021-03-08 14:01:25
## 1317 51553 2021-03-05 2021-03-05 06:33:52
## 1318 51553 2021-03-05 2021-03-05 06:33:52
## 1319 51553 2021-03-05 2021-03-05 06:33:52
## 1320 12276 2021-03-09 2021-03-09 04:30:45
## 1321 12276 2021-03-09 2021-03-09 04:30:45
## 1322 12276 2021-03-09 2021-03-09 04:30:45
## 1323 33527 2021-03-08 2021-03-07 22:11:22
## 1324 51533 2021-03-05 2021-03-05 06:58:30
## 1325 7141 2021-03-10 2021-03-09 19:11:25
## 1326 30176 2021-03-08 2021-03-08 00:28:26
## 1327 17734 2021-03-08 2021-03-08 15:46:22
## 1328 43172 2021-03-08 2021-03-07 20:34:00
## 1329 12062 2021-03-09 2021-03-09 06:01:44
## 1330 12062 2021-03-09 2021-03-09 06:01:44
## 1331 2942 2021-03-10 2021-03-10 17:04:29
## 1332 456 2021-03-11 2021-03-11 13:42:06
## 1333 19415 2021-03-08 2021-03-08 13:43:00
## 1334 14499 2021-03-09 2021-03-08 20:33:41
442
## 1335 14499 2021-03-09 2021-03-08 20:33:41
## 1336 3745 2021-03-10 2021-03-10 12:37:46
## 1337 7801 2021-03-09 2021-03-09 16:38:01
## 1338 7801 2021-03-09 2021-03-09 16:38:01
## 1339 13398 2021-03-09 2021-03-09 00:50:04
## 1340 20954 2021-03-08 2021-03-08 11:52:27
## 1341 42900 2021-03-08 2021-03-07 20:36:25
## 1342 27241 2021-03-08 2021-03-08 04:30:13
## 1343 49437 2021-03-06 2021-03-06 10:11:51
## 1344 14029 2021-03-09 2021-03-08 21:55:03
## 1345 14029 2021-03-09 2021-03-08 21:55:03
## 1346 28666 2021-03-08 2021-03-08 02:11:38
## 1347 21789 2021-03-08 2021-03-08 10:56:18
## 1348 21789 2021-03-08 2021-03-08 10:56:18
## 1349 21789 2021-03-08 2021-03-08 10:56:18
## 1350 21789 2021-03-08 2021-03-08 10:56:18
## 1351 21789 2021-03-08 2021-03-08 10:56:18
## 1352 21789 2021-03-08 2021-03-08 10:56:18
## 1353 22619 2021-03-08 2021-03-08 10:02:40
## 1354 22619 2021-03-08 2021-03-08 10:02:40
## 1355 15566 2021-03-08 2021-03-08 18:16:36
## 1356 24596 2021-03-08 2021-03-08 07:55:45
## 1357 20123 2021-03-08 2021-03-08 13:00:48
## 1358 25083 2021-03-08 2021-03-08 07:20:56
## 1359 23652 2021-03-08 2021-03-08 08:56:59
## 1360 20267 2021-03-08 2021-03-08 12:50:13
## 1361 3358 2021-03-10 2021-03-10 14:03:28
## 1362 16030 2021-03-08 2021-03-08 17:40:17
## 1363 11608 2021-03-09 2021-03-09 07:33:02
## 1364 1963 2021-03-11 2021-03-11 03:35:24
## 1365 18435 2021-03-08 2021-03-08 14:40:31
## 1366 18435 2021-03-08 2021-03-08 14:40:31
## 1367 47577 2021-03-07 2021-03-07 09:45:55
## 1368 47577 2021-03-07 2021-03-07 09:45:55
## 1369 47577 2021-03-07 2021-03-07 09:45:55
## 1370 46969 2021-03-07 2021-03-07 13:10:48
## 1371 46698 2021-03-07 2021-03-07 14:37:59
## 1372 4805 2021-03-10 2021-03-10 08:35:40
## 1373 4120 2021-03-10 2021-03-10 11:10:49
## 1374 4120 2021-03-10 2021-03-10 11:10:49
## 1375 4120 2021-03-10 2021-03-10 11:10:49
## 1376 4120 2021-03-10 2021-03-10 11:10:49
## 1377 4120 2021-03-10 2021-03-10 11:10:49
## 1378 4120 2021-03-10 2021-03-10 11:10:49
## 1379 4120 2021-03-10 2021-03-10 11:10:49
## 1380 47889 2021-03-07 2021-03-07 08:04:58
## 1381 4297 2021-03-10 2021-03-10 10:26:16
## 1382 4297 2021-03-10 2021-03-10 10:26:16
## 1383 6437 2021-03-10 2021-03-09 23:21:31
## 1384 34271 2021-03-08 2021-03-07 21:58:14
## 1385 34271 2021-03-08 2021-03-07 21:58:14
## 1386 5373 2021-03-10 2021-03-10 05:56:38
## 1387 8554 2021-03-09 2021-03-09 14:46:06
## 1388 8554 2021-03-09 2021-03-09 14:46:06
443
## 1389 26183 2021-03-08 2021-03-08 05:53:59
## 1390 50004 2021-03-06 2021-03-05 22:39:14
## 1391 50004 2021-03-06 2021-03-05 22:39:14
## 1392 32089 2021-03-08 2021-03-07 23:01:19
## 1393 32089 2021-03-08 2021-03-07 23:01:19
## 1394 32089 2021-03-08 2021-03-07 23:01:19
## 1395 37623 2021-03-08 2021-03-07 21:14:49
## 1396 48706 2021-03-07 2021-03-06 20:01:46
## 1397 48706 2021-03-07 2021-03-06 20:01:46
## 1398 17544 2021-03-08 2021-03-08 16:05:42
## 1399 49351 2021-03-06 2021-03-06 11:21:33
## 1400 49351 2021-03-06 2021-03-06 11:21:33
## 1401 49351 2021-03-06 2021-03-06 11:21:33
## 1402 49351 2021-03-06 2021-03-06 11:21:33
## 1403 49351 2021-03-06 2021-03-06 11:21:33
## 1404 49351 2021-03-06 2021-03-06 11:21:33
## 1405 7336 2021-03-09 2021-03-09 18:21:07
## 1406 7336 2021-03-09 2021-03-09 18:21:07
## 1407 30435 2021-03-08 2021-03-08 00:13:28
## 1408 5922 2021-03-10 2021-03-10 02:47:37
## 1409 25170 2021-03-08 2021-03-08 07:14:21
## 1410 8900 2021-03-09 2021-03-09 14:16:19
## 1411 8900 2021-03-09 2021-03-09 14:16:19
## 1412 47432 2021-03-07 2021-03-07 10:26:18
## 1413 3756 2021-03-10 2021-03-10 12:35:22
## 1414 3756 2021-03-10 2021-03-10 12:35:22
## 1415 3756 2021-03-10 2021-03-10 12:35:22
## 1416 13854 2021-03-09 2021-03-08 22:36:43
## 1417 15331 2021-03-08 2021-03-08 18:42:18
## 1418 50147 2021-03-06 2021-03-05 20:12:54
## 1419 50147 2021-03-06 2021-03-05 20:12:54
## 1420 50147 2021-03-06 2021-03-05 20:12:54
## 1421 50147 2021-03-06 2021-03-05 20:12:54
## 1422 50147 2021-03-06 2021-03-05 20:12:54
## 1423 50994 2021-03-05 2021-03-05 12:52:17
## 1424 8198 2021-03-09 2021-03-09 15:27:42
## 1425 28712 2021-03-08 2021-03-08 02:08:46
## 1426 48391 2021-03-07 2021-03-07 03:30:00
## 1427 19449 2021-03-08 2021-03-08 13:40:52
## 1428 3687 2021-03-10 2021-03-10 12:48:41
## 1429 3687 2021-03-10 2021-03-10 12:48:41
## 1430 3687 2021-03-10 2021-03-10 12:48:41
## 1431 3687 2021-03-10 2021-03-10 12:48:41
## 1432 30047 2021-03-08 2021-03-08 00:36:50
## 1433 9091 2021-03-09 2021-03-09 14:04:04
## 1434 17656 2021-03-08 2021-03-08 15:56:51
## 1435 5182 2021-03-10 2021-03-10 07:08:44
## 1436 2733 2021-03-10 2021-03-10 18:36:01
## 1437 21041 2021-03-08 2021-03-08 11:46:42
## 1438 21041 2021-03-08 2021-03-08 11:46:42
## 1439 4271 2021-03-10 2021-03-10 10:32:33
## 1440 4271 2021-03-10 2021-03-10 10:32:33
## 1441 4271 2021-03-10 2021-03-10 10:32:33
## 1442 21000 2021-03-08 2021-03-08 11:49:29
444
## 1443 3384 2021-03-10 2021-03-10 13:57:20
## 1444 3083 2021-03-10 2021-03-10 16:06:50
## 1445 3083 2021-03-10 2021-03-10 16:06:50
## 1446 28467 2021-03-08 2021-03-08 02:28:38
## 1447 39314 2021-03-08 2021-03-07 21:02:00
## 1448 9484 2021-03-09 2021-03-09 13:32:40
## 1449 22310 2021-03-08 2021-03-08 10:21:49
## 1450 22310 2021-03-08 2021-03-08 10:21:49
## 1451 2523 2021-03-11 2021-03-10 20:09:28
## 1452 17314 2021-03-08 2021-03-08 16:20:39
## 1453 125 2021-03-11 2021-03-11 17:44:01
## 1454 47862 2021-03-07 2021-03-07 08:13:24
## 1455 24680 2021-03-08 2021-03-08 07:48:28
## 1456 37109 2021-03-08 2021-03-07 21:21:21
## 1457 24589 2021-03-08 2021-03-08 07:56:26
## 1458 24589 2021-03-08 2021-03-08 07:56:26
## 1459 12356 2021-03-09 2021-03-09 04:00:25
## 1460 12356 2021-03-09 2021-03-09 04:00:25
## 1461 12356 2021-03-09 2021-03-09 04:00:25
## 1462 46260 2021-03-07 2021-03-07 17:48:32
## 1463 33187 2021-03-08 2021-03-07 22:21:05
## 1464 47155 2021-03-07 2021-03-07 11:54:46
## 1465 2011 2021-03-11 2021-03-11 03:07:04
## 1466 2011 2021-03-11 2021-03-11 03:07:04
## 1467 2011 2021-03-11 2021-03-11 03:07:04
## 1468 10894 2021-03-09 2021-03-09 09:59:45
## 1469 10894 2021-03-09 2021-03-09 09:59:45
## 1470 10518 2021-03-09 2021-03-09 11:09:37
## 1471 10518 2021-03-09 2021-03-09 11:09:37
## 1472 898 2021-03-11 2021-03-11 09:56:39
## 1473 898 2021-03-11 2021-03-11 09:56:39
## 1474 898 2021-03-11 2021-03-11 09:56:39
## 1475 29368 2021-03-08 2021-03-08 01:20:17
## 1476 6574 2021-03-10 2021-03-09 22:31:27
## 1477 6574 2021-03-10 2021-03-09 22:31:27
## 1478 6574 2021-03-10 2021-03-09 22:31:27
## 1479 17151 2021-03-08 2021-03-08 16:30:22
## 1480 17151 2021-03-08 2021-03-08 16:30:22
## 1481 29410 2021-03-08 2021-03-08 01:17:21
## 1482 2711 2021-03-10 2021-03-10 18:48:05
## 1483 19162 2021-03-08 2021-03-08 13:55:51
## 1484 19245 2021-03-08 2021-03-08 13:51:49
## 1485 32682 2021-03-08 2021-03-07 22:37:51
## 1486 11811 2021-03-09 2021-03-09 06:58:45
## 1487 46151 2021-03-07 2021-03-07 18:23:02
## 1488 46151 2021-03-07 2021-03-07 18:23:02
## 1489 46151 2021-03-07 2021-03-07 18:23:02
## 1490 18233 2021-03-08 2021-03-08 14:56:25
## 1491 32108 2021-03-08 2021-03-07 23:00:33
## 1492 3178 2021-03-10 2021-03-10 15:16:42
## 1493 15764 2021-03-08 2021-03-08 17:59:58
## 1494 4313 2021-03-10 2021-03-10 10:23:04
## 1495 14085 2021-03-09 2021-03-08 21:46:49
## 1496 14085 2021-03-09 2021-03-08 21:46:49
445
## 1497 23912 2021-03-08 2021-03-08 08:40:00
## 1498 12512 2021-03-09 2021-03-09 03:26:45
## 1499 34613 2021-03-08 2021-03-07 21:52:09
## 1500 34613 2021-03-08 2021-03-07 21:52:09
## 1501 34613 2021-03-08 2021-03-07 21:52:09
## 1502 6592 2021-03-10 2021-03-09 22:26:39
## 1503 6592 2021-03-10 2021-03-09 22:26:39
## 1504 25633 2021-03-08 2021-03-08 06:39:32
## 1505 25633 2021-03-08 2021-03-08 06:39:32
## 1506 14401 2021-03-09 2021-03-08 20:50:29
## 1507 22373 2021-03-08 2021-03-08 10:17:14
## 1508 21257 2021-03-08 2021-03-08 11:31:40
## 1509 21257 2021-03-08 2021-03-08 11:31:40
## 1510 19698 2021-03-08 2021-03-08 13:27:28
## 1511 11530 2021-03-09 2021-03-09 07:46:23
## 1512 10763 2021-03-09 2021-03-09 10:24:46
## 1513 2277 2021-03-11 2021-03-10 22:46:10
## 1514 52519 2021-03-04 2021-03-04 13:00:09
## 1515 20035 2021-03-08 2021-03-08 13:06:53
## 1516 12003 2021-03-09 2021-03-09 06:20:45
## 1517 12003 2021-03-09 2021-03-09 06:20:45
## 1518 12003 2021-03-09 2021-03-09 06:20:45
## 1519 24245 2021-03-08 2021-03-08 08:18:51
## 1520 13435 2021-03-09 2021-03-09 00:34:23
## 1521 13435 2021-03-09 2021-03-09 00:34:23
## 1522 4954 2021-03-10 2021-03-10 08:04:01
## 1523 42280 2021-03-08 2021-03-07 20:43:35
## 1524 27825 2021-03-08 2021-03-08 03:45:50
## 1525 32588 2021-03-08 2021-03-07 22:40:40
## 1526 32588 2021-03-08 2021-03-07 22:40:40
## 1527 51008 2021-03-05 2021-03-05 12:47:54
## 1528 17167 2021-03-08 2021-03-08 16:29:33
## 1529 28331 2021-03-08 2021-03-08 02:39:45
## 1530 49615 2021-03-06 2021-03-06 07:00:27
## 1531 2647 2021-03-11 2021-03-10 19:06:29
## 1532 798 2021-03-11 2021-03-11 10:31:04
## 1533 798 2021-03-11 2021-03-11 10:31:04
## 1534 798 2021-03-11 2021-03-11 10:31:04
## 1535 16970 2021-03-08 2021-03-08 16:41:37
## 1536 16970 2021-03-08 2021-03-08 16:41:37
## 1537 16970 2021-03-08 2021-03-08 16:41:37
## 1538 23262 2021-03-08 2021-03-08 09:21:32
## 1539 10809 2021-03-09 2021-03-09 10:13:46
## 1540 50594 2021-03-05 2021-03-05 15:56:49
## 1541 34036 2021-03-08 2021-03-07 22:01:26
## 1542 7026 2021-03-10 2021-03-09 20:00:04
## 1543 31148 2021-03-08 2021-03-07 23:42:24
## 1544 19298 2021-03-08 2021-03-08 13:48:41
## 1545 39714 2021-03-08 2021-03-07 20:59:49
## 1546 21644 2021-03-08 2021-03-08 11:04:58
## 1547 30021 2021-03-08 2021-03-08 00:38:36
## 1548 39835 2021-03-08 2021-03-07 20:59:07
## 1549 39835 2021-03-08 2021-03-07 20:59:07
## 1550 29333 2021-03-08 2021-03-08 01:23:27
446
## 1551 24211 2021-03-08 2021-03-08 08:20:27
## 1552 46704 2021-03-07 2021-03-07 14:36:00
## 1553 23930 2021-03-08 2021-03-08 08:39:27
## 1554 23930 2021-03-08 2021-03-08 08:39:27
## 1555 5247 2021-03-10 2021-03-10 06:54:57
## 1556 5247 2021-03-10 2021-03-10 06:54:57
## 1557 5247 2021-03-10 2021-03-10 06:54:57
## 1558 5247 2021-03-10 2021-03-10 06:54:57
## 1559 50985 2021-03-05 2021-03-05 12:54:09
## 1560 18614 2021-03-08 2021-03-08 14:27:32
## 1561 18614 2021-03-08 2021-03-08 14:27:32
## 1562 18614 2021-03-08 2021-03-08 14:27:32
## 1563 18614 2021-03-08 2021-03-08 14:27:32
## 1564 2650 2021-03-11 2021-03-10 19:05:29
## 1565 9002 2021-03-09 2021-03-09 14:08:56
## 1566 3581 2021-03-10 2021-03-10 13:09:41
## 1567 22349 2021-03-08 2021-03-08 10:19:05
## 1568 12103 2021-03-09 2021-03-09 05:42:48
## 1569 12103 2021-03-09 2021-03-09 05:42:48
## 1570 37114 2021-03-08 2021-03-07 21:21:18
## 1571 52645 2021-03-04 2021-03-04 11:29:07
## 1572 48653 2021-03-07 2021-03-06 21:07:27
## 1573 12179 2021-03-09 2021-03-09 05:15:42
## 1574 14155 2021-03-09 2021-03-08 21:31:26
## 1575 22181 2021-03-08 2021-03-08 10:30:56
## 1576 12439 2021-03-09 2021-03-09 03:36:55
## 1577 48010 2021-03-07 2021-03-07 07:08:13
## 1578 48010 2021-03-07 2021-03-07 07:08:13
## 1579 25136 2021-03-08 2021-03-08 07:16:36
## 1580 25136 2021-03-08 2021-03-08 07:16:36
## 1581 25136 2021-03-08 2021-03-08 07:16:36
## 1582 25136 2021-03-08 2021-03-08 07:16:36
## 1583 27904 2021-03-08 2021-03-08 03:40:28
## 1584 27904 2021-03-08 2021-03-08 03:40:28
## 1585 17498 2021-03-08 2021-03-08 16:08:52
## 1586 17498 2021-03-08 2021-03-08 16:08:52
## 1587 17498 2021-03-08 2021-03-08 16:08:52
## 1588 17498 2021-03-08 2021-03-08 16:08:52
## 1589 4289 2021-03-10 2021-03-10 10:28:23
## 1590 4289 2021-03-10 2021-03-10 10:28:23
## 1591 23366 2021-03-08 2021-03-08 09:14:48
## 1592 11780 2021-03-09 2021-03-09 07:02:43
## 1593 18368 2021-03-08 2021-03-08 14:45:58
## 1594 24571 2021-03-08 2021-03-08 07:57:16
## 1595 9647 2021-03-09 2021-03-09 13:16:20
## 1596 4336 2021-03-10 2021-03-10 10:16:58
## 1597 10783 2021-03-09 2021-03-09 10:20:09
## 1598 10783 2021-03-09 2021-03-09 10:20:09
## 1599 25247 2021-03-08 2021-03-08 07:09:02
## 1600 25247 2021-03-08 2021-03-08 07:09:02
## 1601 1663 2021-03-11 2021-03-11 06:05:41
## 1602 6831 2021-03-10 2021-03-09 21:07:18
## 1603 6461 2021-03-10 2021-03-09 23:13:10
## 1604 1486 2021-03-11 2021-03-11 07:05:53
447
## 1605 20449 2021-03-08 2021-03-08 12:34:10
## 1606 5036 2021-03-10 2021-03-10 07:50:00
## 1607 5036 2021-03-10 2021-03-10 07:50:00
## 1608 2022 2021-03-11 2021-03-11 03:00:25
## 1609 2022 2021-03-11 2021-03-11 03:00:25
## 1610 36409 2021-03-08 2021-03-07 21:29:25
## 1611 34109 2021-03-08 2021-03-07 22:00:23
## 1612 36527 2021-03-08 2021-03-07 21:27:41
## 1613 5998 2021-03-10 2021-03-10 02:25:07
## 1614 3852 2021-03-10 2021-03-10 12:12:14
## 1615 28078 2021-03-08 2021-03-08 03:20:51
## 1616 28078 2021-03-08 2021-03-08 03:20:51
## 1617 28078 2021-03-08 2021-03-08 03:20:51
## 1618 27077 2021-03-08 2021-03-08 04:42:17
## 1619 30297 2021-03-08 2021-03-08 00:21:44
## 1620 30297 2021-03-08 2021-03-08 00:21:44
## 1621 43011 2021-03-08 2021-03-07 20:35:22
## 1622 24354 2021-03-08 2021-03-08 08:11:48
## 1623 24294 2021-03-08 2021-03-08 08:15:23
## 1624 37307 2021-03-08 2021-03-07 21:19:22
## 1625 27214 2021-03-08 2021-03-08 04:32:07
## 1626 20816 2021-03-08 2021-03-08 12:04:50
## 1627 3789 2021-03-10 2021-03-10 12:25:58
## 1628 46581 2021-03-07 2021-03-07 15:40:18
## 1629 19296 2021-03-08 2021-03-08 13:48:47
## 1630 19296 2021-03-08 2021-03-08 13:48:47
## 1631 8598 2021-03-09 2021-03-09 14:41:10
## 1632 15759 2021-03-08 2021-03-08 18:00:06
## 1633 15759 2021-03-08 2021-03-08 18:00:06
## 1634 36095 2021-03-08 2021-03-07 21:33:10
## 1635 14263 2021-03-09 2021-03-08 21:12:50
## 1636 27979 2021-03-08 2021-03-08 03:35:28
## 1637 27979 2021-03-08 2021-03-08 03:35:28
## 1638 28278 2021-03-08 2021-03-08 02:45:57
## 1639 854 2021-03-11 2021-03-11 10:11:32
## 1640 46923 2021-03-07 2021-03-07 13:24:38
## 1641 46923 2021-03-07 2021-03-07 13:24:38
## 1642 46923 2021-03-07 2021-03-07 13:24:38
## 1643 46923 2021-03-07 2021-03-07 13:24:38
## 1644 11987 2021-03-09 2021-03-09 06:23:09
## 1645 25594 2021-03-08 2021-03-08 06:42:40
## 1646 26756 2021-03-08 2021-03-08 05:09:12
## 1647 41714 2021-03-08 2021-03-07 20:47:04
## 1648 11055 2021-03-09 2021-03-09 09:30:04
## 1649 2270 2021-03-11 2021-03-10 22:53:50
## 1650 31491 2021-03-08 2021-03-07 23:25:15
## 1651 19936 2021-03-08 2021-03-08 13:13:20
## 1652 48457 2021-03-07 2021-03-07 02:01:10
## 1653 48457 2021-03-07 2021-03-07 02:01:10
## 1654 48457 2021-03-07 2021-03-07 02:01:10
## 1655 48457 2021-03-07 2021-03-07 02:01:10
## 1656 14648 2021-03-09 2021-03-08 20:14:29
## 1657 14648 2021-03-09 2021-03-08 20:14:29
## 1658 35678 2021-03-08 2021-03-07 21:38:17
448
## 1659 12354 2021-03-09 2021-03-09 04:01:36
## 1660 3014 2021-03-10 2021-03-10 16:29:41
## 1661 3014 2021-03-10 2021-03-10 16:29:41
## 1662 3014 2021-03-10 2021-03-10 16:29:41
## 1663 3014 2021-03-10 2021-03-10 16:29:41
## 1664 3014 2021-03-10 2021-03-10 16:29:41
## 1665 35753 2021-03-08 2021-03-07 21:37:19
## 1666 6961 2021-03-10 2021-03-09 20:23:28
## 1667 8093 2021-03-09 2021-03-09 15:44:18
## 1668 32367 2021-03-08 2021-03-07 22:49:22
## 1669 52640 2021-03-04 2021-03-04 11:32:41
## 1670 52640 2021-03-04 2021-03-04 11:32:41
## 1671 35468 2021-03-08 2021-03-07 21:40:53
## 1672 35468 2021-03-08 2021-03-07 21:40:53
## 1673 35468 2021-03-08 2021-03-07 21:40:53
## 1674 35468 2021-03-08 2021-03-07 21:40:53
## 1675 19666 2021-03-08 2021-03-08 13:29:29
## 1676 19666 2021-03-08 2021-03-08 13:29:29
## 1677 19666 2021-03-08 2021-03-08 13:29:29
## 1678 32229 2021-03-08 2021-03-07 22:55:23
## 1679 32229 2021-03-08 2021-03-07 22:55:23
## 1680 24110 2021-03-08 2021-03-08 08:26:54
## 1681 35924 2021-03-08 2021-03-07 21:35:23
## 1682 46925 2021-03-07 2021-03-07 13:24:11
## 1683 46925 2021-03-07 2021-03-07 13:24:11
## 1684 51309 2021-03-05 2021-03-05 09:47:59
## 1685 1335 2021-03-11 2021-03-11 07:48:24
## 1686 36439 2021-03-08 2021-03-07 21:29:00
## 1687 40815 2021-03-08 2021-03-07 20:52:48
## 1688 40815 2021-03-08 2021-03-07 20:52:48
## 1689 48404 2021-03-07 2021-03-07 03:19:40
## 1690 28202 2021-03-08 2021-03-08 02:52:41
## 1691 9861 2021-03-09 2021-03-09 12:51:32
## 1692 51114 2021-03-05 2021-03-05 12:11:43
## 1693 8999 2021-03-09 2021-03-09 14:08:58
## 1694 8169 2021-03-09 2021-03-09 15:32:08
## 1695 35862 2021-03-08 2021-03-07 21:36:03
## 1696 50211 2021-03-06 2021-03-05 19:28:49
## 1697 10584 2021-03-09 2021-03-09 10:57:11
## 1698 15351 2021-03-08 2021-03-08 18:39:39
## 1699 15351 2021-03-08 2021-03-08 18:39:39
## 1700 25937 2021-03-08 2021-03-08 06:16:03
## 1701 10714 2021-03-09 2021-03-09 10:31:55
## 1702 203 2021-03-11 2021-03-11 16:52:59
## 1703 28596 2021-03-08 2021-03-08 02:17:02
## 1704 10181 2021-03-09 2021-03-09 12:12:44
## 1705 14427 2021-03-09 2021-03-08 20:47:07
## 1706 52761 2021-03-04 2021-03-04 10:18:08
## 1707 48145 2021-03-07 2021-03-07 06:02:14
## 1708 3554 2021-03-10 2021-03-10 13:16:02
## 1709 42376 2021-03-08 2021-03-07 20:42:41
## 1710 47435 2021-03-07 2021-03-07 10:25:20
## 1711 23002 2021-03-08 2021-03-08 09:37:19
## 1712 23002 2021-03-08 2021-03-08 09:37:19
449
## 1713 8614 2021-03-09 2021-03-09 14:39:17
## 1714 8614 2021-03-09 2021-03-09 14:39:17
## 1715 8614 2021-03-09 2021-03-09 14:39:17
## 1716 8614 2021-03-09 2021-03-09 14:39:17
## 1717 33802 2021-03-08 2021-03-07 22:05:40
## 1718 28621 2021-03-08 2021-03-08 02:15:09
## 1719 37618 2021-03-08 2021-03-07 21:14:51
## 1720 5124 2021-03-10 2021-03-10 07:28:13
## 1721 21813 2021-03-08 2021-03-08 10:54:32
## 1722 23053 2021-03-08 2021-03-08 09:34:03
## 1723 23053 2021-03-08 2021-03-08 09:34:03
## 1724 11930 2021-03-09 2021-03-09 06:35:54
## 1725 11930 2021-03-09 2021-03-09 06:35:54
## 1726 28622 2021-03-08 2021-03-08 02:15:02
## 1727 7788 2021-03-09 2021-03-09 16:40:58
## 1728 7788 2021-03-09 2021-03-09 16:40:58
## 1729 31028 2021-03-08 2021-03-07 23:47:49
## 1730 26778 2021-03-08 2021-03-08 05:06:44
## 1731 2844 2021-03-10 2021-03-10 17:49:14
## 1732 2844 2021-03-10 2021-03-10 17:49:14
## 1733 2844 2021-03-10 2021-03-10 17:49:14
## 1734 2844 2021-03-10 2021-03-10 17:49:14
## 1735 28443 2021-03-08 2021-03-08 02:30:17
## 1736 19580 2021-03-08 2021-03-08 13:33:54
## 1737 25595 2021-03-08 2021-03-08 06:42:34
## 1738 12600 2021-03-09 2021-03-09 03:16:53
## 1739 12600 2021-03-09 2021-03-09 03:16:53
## 1740 37025 2021-03-08 2021-03-07 21:22:02
## 1741 2678 2021-03-10 2021-03-10 18:55:47
## 1742 2678 2021-03-10 2021-03-10 18:55:47
## 1743 51832 2021-03-05 2021-03-04 22:52:22
## 1744 49046 2021-03-06 2021-03-06 15:07:59
## 1745 49046 2021-03-06 2021-03-06 15:07:59
## 1746 49046 2021-03-06 2021-03-06 15:07:59
## 1747 49046 2021-03-06 2021-03-06 15:07:59
## 1748 49046 2021-03-06 2021-03-06 15:07:59
## 1749 49046 2021-03-06 2021-03-06 15:07:59
## 1750 49046 2021-03-06 2021-03-06 15:07:59
## 1751 49046 2021-03-06 2021-03-06 15:07:59
## 1752 2768 2021-03-10 2021-03-10 18:22:47
## 1753 21489 2021-03-08 2021-03-08 11:16:54
## 1754 21489 2021-03-08 2021-03-08 11:16:54
## 1755 21489 2021-03-08 2021-03-08 11:16:54
## 1756 21489 2021-03-08 2021-03-08 11:16:54
## 1757 12480 2021-03-09 2021-03-09 03:32:15
## 1758 12480 2021-03-09 2021-03-09 03:32:15
## 1759 29053 2021-03-08 2021-03-08 01:43:21
## 1760 29053 2021-03-08 2021-03-08 01:43:21
## 1761 26765 2021-03-08 2021-03-08 05:08:11
## 1762 4844 2021-03-10 2021-03-10 08:27:32
## 1763 19318 2021-03-08 2021-03-08 13:48:02
## 1764 13496 2021-03-09 2021-03-09 00:17:26
## 1765 13496 2021-03-09 2021-03-09 00:17:26
## 1766 46238 2021-03-07 2021-03-07 17:54:57
450
## 1767 46238 2021-03-07 2021-03-07 17:54:57
## 1768 7388 2021-03-09 2021-03-09 18:04:25
## 1769 7388 2021-03-09 2021-03-09 18:04:25
## 1770 19540 2021-03-08 2021-03-08 13:36:29
## 1771 49054 2021-03-06 2021-03-06 15:02:48
## 1772 33917 2021-03-08 2021-03-07 22:03:20
## 1773 51856 2021-03-05 2021-03-04 22:23:53
## 1774 51856 2021-03-05 2021-03-04 22:23:53
## 1775 23675 2021-03-08 2021-03-08 08:55:42
## 1776 23675 2021-03-08 2021-03-08 08:55:42
## 1777 23675 2021-03-08 2021-03-08 08:55:42
## 1778 23675 2021-03-08 2021-03-08 08:55:42
## 1779 33876 2021-03-08 2021-03-07 22:04:16
## 1780 33876 2021-03-08 2021-03-07 22:04:16
## 1781 38817 2021-03-08 2021-03-07 21:05:20
## 1782 5040 2021-03-10 2021-03-10 07:48:48
## 1783 29064 2021-03-08 2021-03-08 01:42:39
## 1784 51700 2021-03-05 2021-03-05 03:06:56
## 1785 14616 2021-03-09 2021-03-08 20:18:22
## 1786 13146 2021-03-09 2021-03-09 02:09:47
## 1787 3681 2021-03-10 2021-03-10 12:49:41
## 1788 3681 2021-03-10 2021-03-10 12:49:41
## 1789 3681 2021-03-10 2021-03-10 12:49:41
## 1790 3681 2021-03-10 2021-03-10 12:49:41
## 1791 9447 2021-03-09 2021-03-09 13:34:46
## 1792 9447 2021-03-09 2021-03-09 13:34:46
## 1793 52160 2021-03-04 2021-03-04 16:39:24
## 1794 52160 2021-03-04 2021-03-04 16:39:24
## 1795 48773 2021-03-07 2021-03-06 19:03:35
## 1796 11272 2021-03-09 2021-03-09 08:32:45
## 1797 11272 2021-03-09 2021-03-09 08:32:45
## 1798 30420 2021-03-08 2021-03-08 00:14:26
## 1799 23665 2021-03-08 2021-03-08 08:56:22
## 1800 23665 2021-03-08 2021-03-08 08:56:22
## 1801 49870 2021-03-06 2021-03-06 01:42:49
## 1802 18374 2021-03-08 2021-03-08 14:45:45
## 1803 1816 2021-03-11 2021-03-11 04:59:36
## 1804 1816 2021-03-11 2021-03-11 04:59:36
## 1805 27997 2021-03-08 2021-03-08 03:34:19
## 1806 52265 2021-03-04 2021-03-04 15:22:01
## 1807 33464 2021-03-08 2021-03-07 22:12:49
## 1808 5898 2021-03-10 2021-03-10 02:57:38
## 1809 48890 2021-03-06 2021-03-06 17:21:01
## 1810 48890 2021-03-06 2021-03-06 17:21:01
## 1811 46381 2021-03-07 2021-03-07 17:11:57
## 1812 46381 2021-03-07 2021-03-07 17:11:57
## 1813 2245 2021-03-11 2021-03-10 23:14:42
## 1814 43423 2021-03-08 2021-03-07 20:32:30
## 1815 48492 2021-03-07 2021-03-07 01:06:59
## 1816 7503 2021-03-09 2021-03-09 17:38:40
## 1817 43054 2021-03-08 2021-03-07 20:34:54
## 1818 11505 2021-03-09 2021-03-09 07:52:00
## 1819 11505 2021-03-09 2021-03-09 07:52:00
## 1820 11505 2021-03-09 2021-03-09 07:52:00
451
## 1821 11505 2021-03-09 2021-03-09 07:52:00
## 1822 3604 2021-03-10 2021-03-10 13:05:04
## 1823 3604 2021-03-10 2021-03-10 13:05:04
## 1824 3604 2021-03-10 2021-03-10 13:05:04
## 1825 3604 2021-03-10 2021-03-10 13:05:04
## 1826 43074 2021-03-08 2021-03-07 20:34:46
## 1827 41103 2021-03-08 2021-03-07 20:50:44
## 1828 7342 2021-03-09 2021-03-09 18:18:33
## 1829 7342 2021-03-09 2021-03-09 18:18:33
## 1830 5497 2021-03-10 2021-03-10 05:17:27
## 1831 5497 2021-03-10 2021-03-10 05:17:27
## 1832 29604 2021-03-08 2021-03-08 01:03:03
## 1833 5983 2021-03-10 2021-03-10 02:29:52
## 1834 5983 2021-03-10 2021-03-10 02:29:52
## 1835 5983 2021-03-10 2021-03-10 02:29:52
## 1836 5983 2021-03-10 2021-03-10 02:29:52
## 1837 11015 2021-03-09 2021-03-09 09:38:12
## 1838 11015 2021-03-09 2021-03-09 09:38:12
## 1839 6003 2021-03-10 2021-03-10 02:22:21
## 1840 50189 2021-03-06 2021-03-05 19:42:10
## 1841 38319 2021-03-08 2021-03-07 21:09:40
## 1842 38319 2021-03-08 2021-03-07 21:09:40
## 1843 12229 2021-03-09 2021-03-09 04:53:15
## 1844 51089 2021-03-05 2021-03-05 12:22:37
## 1845 27936 2021-03-08 2021-03-08 03:38:15
## 1846 27936 2021-03-08 2021-03-08 03:38:15
## 1847 34583 2021-03-08 2021-03-07 21:52:40
## 1848 47513 2021-03-07 2021-03-07 10:00:18
## 1849 47513 2021-03-07 2021-03-07 10:00:18
## 1850 47513 2021-03-07 2021-03-07 10:00:18
## 1851 47513 2021-03-07 2021-03-07 10:00:18
## 1852 47513 2021-03-07 2021-03-07 10:00:18
## 1853 47513 2021-03-07 2021-03-07 10:00:18
## 1854 47513 2021-03-07 2021-03-07 10:00:18
## 1855 47513 2021-03-07 2021-03-07 10:00:18
## 1856 24537 2021-03-08 2021-03-08 07:59:08
## 1857 24537 2021-03-08 2021-03-08 07:59:08
## 1858 4614 2021-03-10 2021-03-10 09:15:05
## 1859 49037 2021-03-06 2021-03-06 15:12:50
## 1860 49037 2021-03-06 2021-03-06 15:12:50
## 1861 51477 2021-03-05 2021-03-05 07:47:40
## 1862 10026 2021-03-09 2021-03-09 12:33:45
## 1863 15004 2021-03-09 2021-03-08 19:18:59
## 1864 15004 2021-03-09 2021-03-08 19:18:59
## 1865 9269 2021-03-09 2021-03-09 13:47:54
## 1866 45715 2021-03-08 2021-03-07 20:01:05
## 1867 50837 2021-03-05 2021-03-05 13:59:44
## 1868 50837 2021-03-05 2021-03-05 13:59:44
## 1869 10289 2021-03-09 2021-03-09 11:50:44
## 1870 10289 2021-03-09 2021-03-09 11:50:44
## 1871 24437 2021-03-08 2021-03-08 08:05:47
## 1872 9556 2021-03-09 2021-03-09 13:26:05
## 1873 48866 2021-03-06 2021-03-06 17:46:06
## 1874 48866 2021-03-06 2021-03-06 17:46:06
452
## 1875 48866 2021-03-06 2021-03-06 17:46:06
## 1876 48866 2021-03-06 2021-03-06 17:46:06
## 1877 51303 2021-03-05 2021-03-05 09:55:23
## 1878 21508 2021-03-08 2021-03-08 11:14:53
## 1879 18577 2021-03-08 2021-03-08 14:30:23
## 1880 8370 2021-03-09 2021-03-09 15:06:11
## 1881 51145 2021-03-05 2021-03-05 11:57:28
## 1882 5063 2021-03-10 2021-03-10 07:43:28
## 1883 20977 2021-03-08 2021-03-08 11:51:06
## 1884 31135 2021-03-08 2021-03-07 23:43:01
## 1885 31135 2021-03-08 2021-03-07 23:43:01
## 1886 1291 2021-03-11 2021-03-11 07:58:30
## 1887 17458 2021-03-08 2021-03-08 16:11:34
## 1888 51542 2021-03-05 2021-03-05 06:50:28
## 1889 24968 2021-03-08 2021-03-08 07:29:16
## 1890 12169 2021-03-09 2021-03-09 05:18:55
## 1891 44257 2021-03-08 2021-03-07 20:24:14
## 1892 50526 2021-03-05 2021-03-05 16:21:41
## 1893 48413 2021-03-07 2021-03-07 03:06:08
## 1894 25862 2021-03-08 2021-03-08 06:21:54
## 1895 12640 2021-03-09 2021-03-09 03:12:25
## 1896 12640 2021-03-09 2021-03-09 03:12:25
## 1897 13626 2021-03-09 2021-03-08 23:39:36
## 1898 28233 2021-03-08 2021-03-08 02:49:33
## 1899 38338 2021-03-08 2021-03-07 21:09:28
## 1900 47662 2021-03-07 2021-03-07 09:19:08
## 1901 28887 2021-03-08 2021-03-08 01:57:08
## 1902 28887 2021-03-08 2021-03-08 01:57:08
## 1903 32699 2021-03-08 2021-03-07 22:37:07
## 1904 6962 2021-03-10 2021-03-09 20:21:14
## 1905 6962 2021-03-10 2021-03-09 20:21:14
## 1906 48152 2021-03-07 2021-03-07 05:59:29
## 1907 23991 2021-03-08 2021-03-08 08:34:59
## 1908 46999 2021-03-07 2021-03-07 13:00:39
## 1909 9143 2021-03-09 2021-03-09 13:59:32
## 1910 9143 2021-03-09 2021-03-09 13:59:32
## 1911 8841 2021-03-09 2021-03-09 14:20:18
## 1912 52524 2021-03-04 2021-03-04 12:58:28
## 1913 52524 2021-03-04 2021-03-04 12:58:28
## 1914 20268 2021-03-08 2021-03-08 12:50:11
## 1915 20268 2021-03-08 2021-03-08 12:50:11
## 1916 3079 2021-03-10 2021-03-10 16:08:32
## 1917 3079 2021-03-10 2021-03-10 16:08:32
## 1918 4799 2021-03-10 2021-03-10 08:37:42
## 1919 4799 2021-03-10 2021-03-10 08:37:42
## 1920 15700 2021-03-08 2021-03-08 18:05:36
## 1921 14397 2021-03-09 2021-03-08 20:51:09
## 1922 30253 2021-03-08 2021-03-08 00:24:20
## 1923 8800 2021-03-09 2021-03-09 14:24:06
## 1924 51987 2021-03-05 2021-03-04 19:23:43
## 1925 20511 2021-03-08 2021-03-08 12:29:54
## 1926 13308 2021-03-09 2021-03-09 01:27:47
## 1927 13308 2021-03-09 2021-03-09 01:27:47
## 1928 9899 2021-03-09 2021-03-09 12:47:35
453
## 1929 48128 2021-03-07 2021-03-07 06:05:36
## 1930 48128 2021-03-07 2021-03-07 06:05:36
## 1931 5224 2021-03-10 2021-03-10 06:59:20
## 1932 11292 2021-03-09 2021-03-09 08:30:00
## 1933 27693 2021-03-08 2021-03-08 03:56:03
## 1934 27693 2021-03-08 2021-03-08 03:56:03
## 1935 25068 2021-03-08 2021-03-08 07:21:55
## 1936 32508 2021-03-08 2021-03-07 22:43:34
## 1937 37432 2021-03-08 2021-03-07 21:17:15
## 1938 37432 2021-03-08 2021-03-07 21:17:15
## 1939 5826 2021-03-10 2021-03-10 03:17:54
## 1940 5826 2021-03-10 2021-03-10 03:17:54
## 1941 38204 2021-03-08 2021-03-07 21:10:21
## 1942 47750 2021-03-07 2021-03-07 08:51:09
## 1943 47750 2021-03-07 2021-03-07 08:51:09
## 1944 47750 2021-03-07 2021-03-07 08:51:09
## 1945 47368 2021-03-07 2021-03-07 10:48:02
## 1946 47362 2021-03-07 2021-03-07 10:51:13
## 1947 49685 2021-03-06 2021-03-06 05:51:46
## 1948 25053 2021-03-08 2021-03-08 07:22:48
## 1949 17949 2021-03-08 2021-03-08 15:22:33
## 1950 17949 2021-03-08 2021-03-08 15:22:33
## 1951 17949 2021-03-08 2021-03-08 15:22:33
## 1952 17949 2021-03-08 2021-03-08 15:22:33
## 1953 52592 2021-03-04 2021-03-04 12:03:50
## 1954 52592 2021-03-04 2021-03-04 12:03:50
## 1955 35569 2021-03-08 2021-03-07 21:39:37
## 1956 1132 2021-03-11 2021-03-11 08:42:49
## 1957 1132 2021-03-11 2021-03-11 08:42:49
## 1958 4388 2021-03-10 2021-03-10 10:02:39
## 1959 4388 2021-03-10 2021-03-10 10:02:39
## 1960 15869 2021-03-08 2021-03-08 17:53:06
## 1961 20453 2021-03-08 2021-03-08 12:33:53
## 1962 1109 2021-03-11 2021-03-11 08:50:39
## 1963 8106 2021-03-09 2021-03-09 15:42:28
## 1964 16694 2021-03-08 2021-03-08 16:54:48
## 1965 9625 2021-03-09 2021-03-09 13:19:07
## 1966 9625 2021-03-09 2021-03-09 13:19:07
## 1967 13249 2021-03-09 2021-03-09 01:44:31
## 1968 13249 2021-03-09 2021-03-09 01:44:31
## 1969 18687 2021-03-08 2021-03-08 14:22:53
## 1970 18687 2021-03-08 2021-03-08 14:22:53
## 1971 15131 2021-03-09 2021-03-08 19:02:42
## 1972 15131 2021-03-09 2021-03-08 19:02:42
## 1973 3186 2021-03-10 2021-03-10 15:12:34
## 1974 3186 2021-03-10 2021-03-10 15:12:34
## 1975 3186 2021-03-10 2021-03-10 15:12:34
## 1976 3186 2021-03-10 2021-03-10 15:12:34
## 1977 3186 2021-03-10 2021-03-10 15:12:34
## 1978 43998 2021-03-08 2021-03-07 20:27:05
## 1979 36579 2021-03-08 2021-03-07 21:27:07
## 1980 52328 2021-03-04 2021-03-04 14:40:10
## 1981 52328 2021-03-04 2021-03-04 14:40:10
## 1982 52328 2021-03-04 2021-03-04 14:40:10
454
## 1983 46633 2021-03-07 2021-03-07 15:10:09
## 1984 16830 2021-03-08 2021-03-08 16:49:18
## 1985 47549 2021-03-07 2021-03-07 09:51:20
## 1986 20244 2021-03-08 2021-03-08 12:52:07
## 1987 7619 2021-03-09 2021-03-09 17:13:40
## 1988 22542 2021-03-08 2021-03-08 10:07:07
## 1989 5521 2021-03-10 2021-03-10 05:12:02
## 1990 5521 2021-03-10 2021-03-10 05:12:02
## 1991 36707 2021-03-08 2021-03-07 21:25:53
## 1992 20210 2021-03-08 2021-03-08 12:54:52
## 1993 47747 2021-03-07 2021-03-07 08:52:11
## 1994 47747 2021-03-07 2021-03-07 08:52:11
## 1995 12972 2021-03-09 2021-03-09 02:31:37
## 1996 13282 2021-03-09 2021-03-09 01:35:49
## 1997 1404 2021-03-11 2021-03-11 07:28:19
## 1998 1404 2021-03-11 2021-03-11 07:28:19
## 1999 11499 2021-03-09 2021-03-09 07:52:49
## 2000 11499 2021-03-09 2021-03-09 07:52:49
## 2001 11499 2021-03-09 2021-03-09 07:52:49
## 2002 11499 2021-03-09 2021-03-09 07:52:49
## 2003 11499 2021-03-09 2021-03-09 07:52:49
## 2004 17681 2021-03-08 2021-03-08 15:53:26
## 2005 48559 2021-03-07 2021-03-06 23:41:36
## 2006 48559 2021-03-07 2021-03-06 23:41:36
## 2007 18993 2021-03-08 2021-03-08 14:04:06
## 2008 30996 2021-03-08 2021-03-07 23:49:06
## 2009 28631 2021-03-08 2021-03-08 02:14:16
## 2010 20969 2021-03-08 2021-03-08 11:51:36
## 2011 20969 2021-03-08 2021-03-08 11:51:36
## 2012 21633 2021-03-08 2021-03-08 11:05:33
## 2013 38675 2021-03-08 2021-03-07 21:06:23
## 2014 38675 2021-03-08 2021-03-07 21:06:23
## 2015 38675 2021-03-08 2021-03-07 21:06:23
## 2016 7182 2021-03-09 2021-03-09 18:59:18
## 2017 48205 2021-03-07 2021-03-07 05:24:36
## 2018 5799 2021-03-10 2021-03-10 03:29:30
## 2019 8850 2021-03-09 2021-03-09 14:19:39
## 2020 24038 2021-03-08 2021-03-08 08:31:36
## 2021 12474 2021-03-09 2021-03-09 03:32:36
## 2022 1036 2021-03-11 2021-03-11 09:11:28
## 2023 4808 2021-03-10 2021-03-10 08:35:17
## 2024 3908 2021-03-10 2021-03-10 12:02:11
## 2025 21154 2021-03-08 2021-03-08 11:38:24
## 2026 28246 2021-03-08 2021-03-08 02:48:39
## 2027 48976 2021-03-06 2021-03-06 16:07:31
## 2028 48976 2021-03-06 2021-03-06 16:07:31
## 2029 30781 2021-03-08 2021-03-07 23:57:43
## 2030 17947 2021-03-08 2021-03-08 15:22:46
## 2031 6372 2021-03-10 2021-03-09 23:41:07
## 2032 1795 2021-03-11 2021-03-11 05:09:31
## 2033 1795 2021-03-11 2021-03-11 05:09:31
## 2034 27264 2021-03-08 2021-03-08 04:28:53
## 2035 18034 2021-03-08 2021-03-08 15:14:36
## 2036 18005 2021-03-08 2021-03-08 15:17:42
455
## 2037 18005 2021-03-08 2021-03-08 15:17:42
## 2038 9279 2021-03-09 2021-03-09 13:46:32
## 2039 9279 2021-03-09 2021-03-09 13:46:32
## 2040 52624 2021-03-04 2021-03-04 11:42:50
## 2041 52624 2021-03-04 2021-03-04 11:42:50
## 2042 52624 2021-03-04 2021-03-04 11:42:50
## 2043 5856 2021-03-10 2021-03-10 03:10:59
## 2044 5856 2021-03-10 2021-03-10 03:10:59
## 2045 6049 2021-03-10 2021-03-10 02:04:21
## 2046 6049 2021-03-10 2021-03-10 02:04:21
## 2047 6049 2021-03-10 2021-03-10 02:04:21
## 2048 23957 2021-03-08 2021-03-08 08:37:39
## 2049 8965 2021-03-09 2021-03-09 14:11:23
## 2050 33525 2021-03-08 2021-03-07 22:11:24
## 2051 33525 2021-03-08 2021-03-07 22:11:24
## 2052 22977 2021-03-08 2021-03-08 09:38:11
## 2053 24855 2021-03-08 2021-03-08 07:35:43
## 2054 4354 2021-03-10 2021-03-10 10:12:49
## 2055 32939 2021-03-08 2021-03-07 22:29:22
## 2056 9138 2021-03-09 2021-03-09 13:59:43
## 2057 9138 2021-03-09 2021-03-09 13:59:43
## 2058 9138 2021-03-09 2021-03-09 13:59:43
## 2059 9138 2021-03-09 2021-03-09 13:59:43
## 2060 24349 2021-03-08 2021-03-08 08:11:56
## 2061 47550 2021-03-07 2021-03-07 09:50:40
## 2062 47120 2021-03-07 2021-03-07 12:04:54
## 2063 31969 2021-03-08 2021-03-07 23:06:13
## 2064 6568 2021-03-10 2021-03-09 22:33:15
## 2065 17229 2021-03-08 2021-03-08 16:25:33
## 2066 11214 2021-03-09 2021-03-09 08:44:23
## 2067 11214 2021-03-09 2021-03-09 08:44:23
## 2068 40411 2021-03-08 2021-03-07 20:55:23
## 2069 33978 2021-03-08 2021-03-07 22:02:13
## 2070 12217 2021-03-09 2021-03-09 04:59:15
## 2071 12217 2021-03-09 2021-03-09 04:59:15
## 2072 12217 2021-03-09 2021-03-09 04:59:15
## 2073 12217 2021-03-09 2021-03-09 04:59:15
## 2074 12217 2021-03-09 2021-03-09 04:59:15
## 2075 7991 2021-03-09 2021-03-09 16:01:28
## 2076 180 2021-03-11 2021-03-11 17:07:56
## 2077 180 2021-03-11 2021-03-11 17:07:56
## 2078 42301 2021-03-08 2021-03-07 20:43:25
## 2079 42301 2021-03-08 2021-03-07 20:43:25
## 2080 42301 2021-03-08 2021-03-07 20:43:25
## 2081 42301 2021-03-08 2021-03-07 20:43:25
## 2082 42301 2021-03-08 2021-03-07 20:43:25
## 2083 5957 2021-03-10 2021-03-10 02:38:03
## 2084 5957 2021-03-10 2021-03-10 02:38:03
## 2085 37869 2021-03-08 2021-03-07 21:12:19
## 2086 1201 2021-03-11 2021-03-11 08:19:51
## 2087 2475 2021-03-11 2021-03-10 20:34:56
## 2088 49618 2021-03-06 2021-03-06 06:56:04
## 2089 34496 2021-03-08 2021-03-07 21:54:06
## 2090 7265 2021-03-09 2021-03-09 18:38:33
456
## 2091 7265 2021-03-09 2021-03-09 18:38:33
## 2092 7265 2021-03-09 2021-03-09 18:38:33
## 2093 20443 2021-03-08 2021-03-08 12:34:45
## 2094 32967 2021-03-08 2021-03-07 22:28:23
## 2095 1613 2021-03-11 2021-03-11 06:27:20
## 2096 31689 2021-03-08 2021-03-07 23:17:24
## 2097 31689 2021-03-08 2021-03-07 23:17:24
## 2098 23812 2021-03-08 2021-03-08 08:47:35
## 2099 20913 2021-03-08 2021-03-08 11:56:24
## 2100 20913 2021-03-08 2021-03-08 11:56:24
## 2101 18167 2021-03-08 2021-03-08 15:02:02
## 2102 18167 2021-03-08 2021-03-08 15:02:02
## 2103 11269 2021-03-09 2021-03-09 08:33:43
## 2104 33728 2021-03-08 2021-03-07 22:06:57
## 2105 16981 2021-03-08 2021-03-08 16:41:00
## 2106 10197 2021-03-09 2021-03-09 12:09:43
## 2107 978 2021-03-11 2021-03-11 09:33:50
## 2108 978 2021-03-11 2021-03-11 09:33:50
## 2109 4145 2021-03-10 2021-03-10 11:02:22
## 2110 4145 2021-03-10 2021-03-10 11:02:22
## 2111 1187 2021-03-11 2021-03-11 08:24:56
## 2112 1187 2021-03-11 2021-03-11 08:24:56
## 2113 2615 2021-03-11 2021-03-10 19:17:44
## 2114 49329 2021-03-06 2021-03-06 11:34:15
## 2115 49329 2021-03-06 2021-03-06 11:34:15
## 2116 49329 2021-03-06 2021-03-06 11:34:15
## 2117 49329 2021-03-06 2021-03-06 11:34:15
## 2118 49329 2021-03-06 2021-03-06 11:34:15
## 2119 49329 2021-03-06 2021-03-06 11:34:15
## 2120 49329 2021-03-06 2021-03-06 11:34:15
## 2121 49329 2021-03-06 2021-03-06 11:34:15
## 2122 32116 2021-03-08 2021-03-07 23:00:19
## 2123 32310 2021-03-08 2021-03-07 22:51:49
## 2124 6138 2021-03-10 2021-03-10 01:24:19
## 2125 6138 2021-03-10 2021-03-10 01:24:19
## 2126 6138 2021-03-10 2021-03-10 01:24:19
## 2127 49465 2021-03-06 2021-03-06 09:49:14
## 2128 28282 2021-03-08 2021-03-08 02:45:24
## 2129 12910 2021-03-09 2021-03-09 02:40:00
## 2130 9931 2021-03-09 2021-03-09 12:44:42
## 2131 9743 2021-03-09 2021-03-09 13:03:39
## 2132 17132 2021-03-08 2021-03-08 16:31:02
## 2133 35097 2021-03-08 2021-03-07 21:45:27
## 2134 35097 2021-03-08 2021-03-07 21:45:27
## 2135 10092 2021-03-09 2021-03-09 12:23:53
## 2136 10092 2021-03-09 2021-03-09 12:23:53
## 2137 10092 2021-03-09 2021-03-09 12:23:53
## 2138 8491 2021-03-09 2021-03-09 14:52:49
## 2139 8491 2021-03-09 2021-03-09 14:52:49
## 2140 9815 2021-03-09 2021-03-09 12:56:00
## 2141 9316 2021-03-09 2021-03-09 13:43:26
## 2142 7728 2021-03-09 2021-03-09 16:51:18
## 2143 7728 2021-03-09 2021-03-09 16:51:18
## 2144 7728 2021-03-09 2021-03-09 16:51:18
457
## 2145 7728 2021-03-09 2021-03-09 16:51:18
## 2146 23240 2021-03-08 2021-03-08 09:22:49
## 2147 9126 2021-03-09 2021-03-09 14:00:40
## 2148 16634 2021-03-08 2021-03-08 16:57:50
## 2149 16634 2021-03-08 2021-03-08 16:57:50
## 2150 49654 2021-03-06 2021-03-06 06:15:48
## 2151 758 2021-03-11 2021-03-11 10:52:13
## 2152 20219 2021-03-08 2021-03-08 12:53:48
## 2153 2970 2021-03-10 2021-03-10 16:49:44
## 2154 10384 2021-03-09 2021-03-09 11:36:35
## 2155 13370 2021-03-09 2021-03-09 01:03:08
## 2156 29601 2021-03-08 2021-03-08 01:03:18
## 2157 37599 2021-03-08 2021-03-07 21:15:05
## 2158 37599 2021-03-08 2021-03-07 21:15:05
## 2159 39563 2021-03-08 2021-03-07 21:00:39
## 2160 39563 2021-03-08 2021-03-07 21:00:39
## 2161 532 2021-03-11 2021-03-11 13:00:00
## 2162 6239 2021-03-10 2021-03-10 00:38:09
## 2163 6239 2021-03-10 2021-03-10 00:38:09
## 2164 26324 2021-03-08 2021-03-08 05:42:21
## 2165 47881 2021-03-07 2021-03-07 08:07:00
## 2166 12778 2021-03-09 2021-03-09 02:57:28
## 2167 25038 2021-03-08 2021-03-08 07:23:39
## 2168 50870 2021-03-05 2021-03-05 13:46:11
## 2169 46998 2021-03-07 2021-03-07 13:00:45
## 2170 24870 2021-03-08 2021-03-08 07:35:05
## 2171 24870 2021-03-08 2021-03-08 07:35:05
## 2172 7811 2021-03-09 2021-03-09 16:36:18
## 2173 7811 2021-03-09 2021-03-09 16:36:18
## 2174 7811 2021-03-09 2021-03-09 16:36:18
## 2175 49107 2021-03-06 2021-03-06 14:19:37
## 2176 49107 2021-03-06 2021-03-06 14:19:37
## 2177 49107 2021-03-06 2021-03-06 14:19:37
## 2178 25536 2021-03-08 2021-03-08 06:46:57
## 2179 42882 2021-03-08 2021-03-07 20:36:39
## 2180 10206 2021-03-09 2021-03-09 12:08:25
## 2181 10206 2021-03-09 2021-03-09 12:08:25
## 2182 37186 2021-03-08 2021-03-07 21:20:30
## 2183 12913 2021-03-09 2021-03-09 02:39:43
## 2184 39829 2021-03-08 2021-03-07 20:59:10
## 2185 20616 2021-03-08 2021-03-08 12:21:41
## 2186 20616 2021-03-08 2021-03-08 12:21:41
## 2187 20616 2021-03-08 2021-03-08 12:21:41
## 2188 20616 2021-03-08 2021-03-08 12:21:41
## 2189 5156 2021-03-10 2021-03-10 07:18:31
## 2190 28256 2021-03-08 2021-03-08 02:48:06
## 2191 28256 2021-03-08 2021-03-08 02:48:06
## 2192 7196 2021-03-09 2021-03-09 18:55:57
## 2193 2023 2021-03-11 2021-03-11 02:59:17
## 2194 9802 2021-03-09 2021-03-09 12:57:07
## 2195 12847 2021-03-09 2021-03-09 02:50:09
## 2196 12847 2021-03-09 2021-03-09 02:50:09
## 2197 12847 2021-03-09 2021-03-09 02:50:09
## 2198 34011 2021-03-08 2021-03-07 22:01:47
458
## 2199 45941 2021-03-08 2021-03-07 19:27:26
## 2200 45941 2021-03-08 2021-03-07 19:27:26
## 2201 13666 2021-03-09 2021-03-08 23:30:00
## 2202 13666 2021-03-09 2021-03-08 23:30:00
## 2203 27735 2021-03-08 2021-03-08 03:52:45
## 2204 36704 2021-03-08 2021-03-07 21:25:54
## 2205 1406 2021-03-11 2021-03-11 07:28:18
## 2206 14396 2021-03-09 2021-03-08 20:51:25
## 2207 2807 2021-03-10 2021-03-10 18:05:31
## 2208 2807 2021-03-10 2021-03-10 18:05:31
## 2209 47007 2021-03-07 2021-03-07 12:58:29
## 2210 19805 2021-03-08 2021-03-08 13:20:52
## 2211 48680 2021-03-07 2021-03-06 20:32:07
## 2212 47740 2021-03-07 2021-03-07 08:54:07
## 2213 2778 2021-03-10 2021-03-10 18:19:43
## 2214 31108 2021-03-08 2021-03-07 23:44:19
## 2215 31108 2021-03-08 2021-03-07 23:44:19
## 2216 31108 2021-03-08 2021-03-07 23:44:19
## 2217 31108 2021-03-08 2021-03-07 23:44:19
## 2218 13396 2021-03-09 2021-03-09 00:52:16
## 2219 52230 2021-03-04 2021-03-04 15:47:18
## 2220 43449 2021-03-08 2021-03-07 20:32:21
## 2221 13972 2021-03-09 2021-03-08 22:11:39
## 2222 13972 2021-03-09 2021-03-08 22:11:39
## 2223 52416 2021-03-04 2021-03-04 13:55:11
## 2224 52416 2021-03-04 2021-03-04 13:55:11
## 2225 52416 2021-03-04 2021-03-04 13:55:11
## 2226 31279 2021-03-08 2021-03-07 23:34:54
## 2227 12643 2021-03-09 2021-03-09 03:12:15
## 2228 18991 2021-03-08 2021-03-08 14:04:09
## 2229 2900 2021-03-10 2021-03-10 17:21:54
## 2230 34994 2021-03-08 2021-03-07 21:46:34
## 2231 34994 2021-03-08 2021-03-07 21:46:34
## 2232 44514 2021-03-08 2021-03-07 20:21:28
## 2233 13530 2021-03-09 2021-03-09 00:05:47
## 2234 13530 2021-03-09 2021-03-09 00:05:47
## 2235 13530 2021-03-09 2021-03-09 00:05:47
## 2236 13530 2021-03-09 2021-03-09 00:05:47
## 2237 6553 2021-03-10 2021-03-09 22:38:41
## 2238 12763 2021-03-09 2021-03-09 02:59:32
## 2239 12763 2021-03-09 2021-03-09 02:59:32
## 2240 384 2021-03-11 2021-03-11 14:25:22
## 2241 6078 2021-03-10 2021-03-10 01:50:55
## 2242 6078 2021-03-10 2021-03-10 01:50:55
## 2243 6702 2021-03-10 2021-03-09 21:53:41
## 2244 6702 2021-03-10 2021-03-09 21:53:41
## 2245 51187 2021-03-05 2021-03-05 11:35:17
## 2246 14174 2021-03-09 2021-03-08 21:27:54
## 2247 29091 2021-03-08 2021-03-08 01:41:06
## 2248 27746 2021-03-08 2021-03-08 03:51:58
## 2249 5933 2021-03-10 2021-03-10 02:44:46
## 2250 5933 2021-03-10 2021-03-10 02:44:46
## 2251 5933 2021-03-10 2021-03-10 02:44:46
## 2252 32603 2021-03-08 2021-03-07 22:40:11
459
## 2253 30959 2021-03-08 2021-03-07 23:50:29
## 2254 30959 2021-03-08 2021-03-07 23:50:29
## 2255 17096 2021-03-08 2021-03-08 16:32:29
## 2256 17096 2021-03-08 2021-03-08 16:32:29
## 2257 11547 2021-03-09 2021-03-09 07:44:04
## 2258 14483 2021-03-09 2021-03-08 20:36:35
## 2259 49789 2021-03-06 2021-03-06 04:05:43
## 2260 49789 2021-03-06 2021-03-06 04:05:43
## 2261 50721 2021-03-05 2021-03-05 14:37:32
## 2262 5197 2021-03-10 2021-03-10 07:05:13
## 2263 8822 2021-03-09 2021-03-09 14:22:19
## 2264 8822 2021-03-09 2021-03-09 14:22:19
## 2265 39107 2021-03-08 2021-03-07 21:03:19
## 2266 11568 2021-03-09 2021-03-09 07:41:07
## 2267 30490 2021-03-08 2021-03-08 00:11:00
## 2268 3771 2021-03-10 2021-03-10 12:30:29
## 2269 3771 2021-03-10 2021-03-10 12:30:29
## 2270 19043 2021-03-08 2021-03-08 14:01:50
## 2271 49932 2021-03-06 2021-03-05 23:54:58
## 2272 49932 2021-03-06 2021-03-05 23:54:58
## 2273 49932 2021-03-06 2021-03-05 23:54:58
## 2274 12081 2021-03-09 2021-03-09 05:50:20
## 2275 46504 2021-03-07 2021-03-07 16:13:34
## 2276 45807 2021-03-08 2021-03-07 19:54:51
## 2277 31392 2021-03-08 2021-03-07 23:29:11
## 2278 1117 2021-03-11 2021-03-11 08:47:54
## 2279 1117 2021-03-11 2021-03-11 08:47:54
## 2280 10677 2021-03-09 2021-03-09 10:38:06
## 2281 22384 2021-03-08 2021-03-08 10:16:28
## 2282 22384 2021-03-08 2021-03-08 10:16:28
## 2283 22384 2021-03-08 2021-03-08 10:16:28
## 2284 22384 2021-03-08 2021-03-08 10:16:28
## 2285 22384 2021-03-08 2021-03-08 10:16:28
## 2286 22384 2021-03-08 2021-03-08 10:16:28
## 2287 12535 2021-03-09 2021-03-09 03:24:18
## 2288 33781 2021-03-08 2021-03-07 22:06:00
## 2289 11329 2021-03-09 2021-03-09 08:22:34
## 2290 49855 2021-03-06 2021-03-06 02:12:35
## 2291 47865 2021-03-07 2021-03-07 08:12:33
## 2292 46220 2021-03-07 2021-03-07 18:01:02
## 2293 8901 2021-03-09 2021-03-09 14:16:18
## 2294 8901 2021-03-09 2021-03-09 14:16:18
## 2295 47433 2021-03-07 2021-03-07 10:26:12
## 2296 47433 2021-03-07 2021-03-07 10:26:12
## 2297 17925 2021-03-08 2021-03-08 15:25:37
## 2298 1228 2021-03-11 2021-03-11 08:12:32
## 2299 1228 2021-03-11 2021-03-11 08:12:32
## 2300 48313 2021-03-07 2021-03-07 04:29:26
## 2301 1106 2021-03-11 2021-03-11 08:51:36
## 2302 8353 2021-03-09 2021-03-09 15:08:13
## 2303 45284 2021-03-08 2021-03-07 20:11:05
## 2304 29197 2021-03-08 2021-03-08 01:32:53
## 2305 21324 2021-03-08 2021-03-08 11:27:48
## 2306 27690 2021-03-08 2021-03-08 03:56:11
460
## 2307 27690 2021-03-08 2021-03-08 03:56:11
## 2308 1503 2021-03-11 2021-03-11 07:02:13
## 2309 9415 2021-03-09 2021-03-09 13:37:09
## 2310 9415 2021-03-09 2021-03-09 13:37:09
## 2311 9825 2021-03-09 2021-03-09 12:55:16
## 2312 11116 2021-03-09 2021-03-09 09:16:58
## 2313 11116 2021-03-09 2021-03-09 09:16:58
## 2314 29295 2021-03-08 2021-03-08 01:26:50
## 2315 370 2021-03-11 2021-03-11 14:35:55
## 2316 21211 2021-03-08 2021-03-08 11:34:12
## 2317 20832 2021-03-08 2021-03-08 12:03:24
## 2318 43896 2021-03-08 2021-03-07 20:28:07
## 2319 20518 2021-03-08 2021-03-08 12:29:30
## 2320 20518 2021-03-08 2021-03-08 12:29:30
## 2321 3050 2021-03-10 2021-03-10 16:19:46
## 2322 34324 2021-03-08 2021-03-07 21:57:33
## 2323 17266 2021-03-08 2021-03-08 16:23:11
## 2324 17266 2021-03-08 2021-03-08 16:23:11
## 2325 11983 2021-03-09 2021-03-09 06:24:40
## 2326 22727 2021-03-08 2021-03-08 09:55:09
## 2327 6257 2021-03-10 2021-03-10 00:30:24
## 2328 6955 2021-03-10 2021-03-09 20:26:50
## 2329 6955 2021-03-10 2021-03-09 20:26:50
## 2330 6955 2021-03-10 2021-03-09 20:26:50
## 2331 6955 2021-03-10 2021-03-09 20:26:50
## 2332 12978 2021-03-09 2021-03-09 02:31:19
## 2333 50758 2021-03-05 2021-03-05 14:23:45
## 2334 88 2021-03-11 2021-03-11 18:12:25
## 2335 4467 2021-03-10 2021-03-10 09:45:34
## 2336 4467 2021-03-10 2021-03-10 09:45:34
## 2337 3916 2021-03-10 2021-03-10 12:00:52
## 2338 49034 2021-03-06 2021-03-06 15:16:22
## 2339 49034 2021-03-06 2021-03-06 15:16:22
## 2340 49034 2021-03-06 2021-03-06 15:16:22
## 2341 49034 2021-03-06 2021-03-06 15:16:22
## 2342 49034 2021-03-06 2021-03-06 15:16:22
## 2343 49034 2021-03-06 2021-03-06 15:16:22
## 2344 49034 2021-03-06 2021-03-06 15:16:22
## 2345 49034 2021-03-06 2021-03-06 15:16:22
## 2346 7341 2021-03-09 2021-03-09 18:18:59
## 2347 7341 2021-03-09 2021-03-09 18:18:59
## 2348 4133 2021-03-10 2021-03-10 11:05:03
## 2349 10227 2021-03-09 2021-03-09 12:04:04
## 2350 51715 2021-03-05 2021-03-05 02:33:07
## 2351 34567 2021-03-08 2021-03-07 21:52:54
## 2352 44019 2021-03-08 2021-03-07 20:26:55
## 2353 44019 2021-03-08 2021-03-07 20:26:55
## 2354 447 2021-03-11 2021-03-11 13:48:15
## 2355 12719 2021-03-09 2021-03-09 03:05:28
## 2356 30352 2021-03-08 2021-03-08 00:18:21
## 2357 32362 2021-03-08 2021-03-07 22:49:31
## 2358 32362 2021-03-08 2021-03-07 22:49:31
## 2359 24841 2021-03-08 2021-03-08 07:36:15
## 2360 24841 2021-03-08 2021-03-08 07:36:15
461
## 2361 24841 2021-03-08 2021-03-08 07:36:15
## 2362 24841 2021-03-08 2021-03-08 07:36:15
## 2363 48009 2021-03-07 2021-03-07 07:09:01
## 2364 7084 2021-03-10 2021-03-09 19:35:58
## 2365 7084 2021-03-10 2021-03-09 19:35:58
## 2366 11284 2021-03-09 2021-03-09 08:31:09
## 2367 11284 2021-03-09 2021-03-09 08:31:09
## 2368 69 2021-03-11 2021-03-11 18:24:41
## 2369 35315 2021-03-08 2021-03-07 21:42:47
## 2370 15640 2021-03-08 2021-03-08 18:09:48
## 2371 29228 2021-03-08 2021-03-08 01:30:54
## 2372 47580 2021-03-07 2021-03-07 09:45:03
## 2373 47580 2021-03-07 2021-03-07 09:45:03
## 2374 19392 2021-03-08 2021-03-08 13:44:09
## 2375 40536 2021-03-08 2021-03-07 20:54:41
## 2376 45623 2021-03-08 2021-03-07 20:03:27
## 2377 48929 2021-03-06 2021-03-06 16:51:00
## 2378 48929 2021-03-06 2021-03-06 16:51:00
## 2379 20810 2021-03-08 2021-03-08 12:05:21
## 2380 14230 2021-03-09 2021-03-08 21:18:26
## 2381 14230 2021-03-09 2021-03-08 21:18:26
## 2382 2683 2021-03-10 2021-03-10 18:54:43
## 2383 19377 2021-03-08 2021-03-08 13:45:00
## 2384 11559 2021-03-09 2021-03-09 07:42:26
## 2385 11559 2021-03-09 2021-03-09 07:42:26
## 2386 11559 2021-03-09 2021-03-09 07:42:26
## 2387 2436 2021-03-11 2021-03-10 20:55:24
## 2388 49668 2021-03-06 2021-03-06 06:02:56
## 2389 37527 2021-03-08 2021-03-07 21:16:05
## 2390 8925 2021-03-09 2021-03-09 14:14:59
## 2391 8925 2021-03-09 2021-03-09 14:14:59
## 2392 28360 2021-03-08 2021-03-08 02:37:09
## 2393 10118 2021-03-09 2021-03-09 12:20:20
## 2394 10118 2021-03-09 2021-03-09 12:20:20
## 2395 10118 2021-03-09 2021-03-09 12:20:20
## 2396 3335 2021-03-10 2021-03-10 14:11:00
## 2397 17808 2021-03-08 2021-03-08 15:38:48
## 2398 17808 2021-03-08 2021-03-08 15:38:48
## 2399 22242 2021-03-08 2021-03-08 10:26:58
## 2400 22242 2021-03-08 2021-03-08 10:26:58
## 2401 10436 2021-03-09 2021-03-09 11:25:46
## 2402 10436 2021-03-09 2021-03-09 11:25:46
## 2403 10436 2021-03-09 2021-03-09 11:25:46
## 2404 10436 2021-03-09 2021-03-09 11:25:46
## 2405 10436 2021-03-09 2021-03-09 11:25:46
## 2406 10436 2021-03-09 2021-03-09 11:25:46
## 2407 10436 2021-03-09 2021-03-09 11:25:46
## 2408 10436 2021-03-09 2021-03-09 11:25:46
## 2409 30296 2021-03-08 2021-03-08 00:21:49
## 2410 30296 2021-03-08 2021-03-08 00:21:49
## 2411 40841 2021-03-08 2021-03-07 20:52:34
## 2412 40841 2021-03-08 2021-03-07 20:52:34
## 2413 40510 2021-03-08 2021-03-07 20:54:52
## 2414 40510 2021-03-08 2021-03-07 20:54:52
462
## 2415 40510 2021-03-08 2021-03-07 20:54:52
## 2416 40510 2021-03-08 2021-03-07 20:54:52
## 2417 40510 2021-03-08 2021-03-07 20:54:52
## 2418 4812 2021-03-10 2021-03-10 08:34:32
## 2419 28630 2021-03-08 2021-03-08 02:14:28
## 2420 2696 2021-03-10 2021-03-10 18:51:51
## 2421 27564 2021-03-08 2021-03-08 04:06:38
## 2422 27564 2021-03-08 2021-03-08 04:06:38
## 2423 10347 2021-03-09 2021-03-09 11:41:52
## 2424 24550 2021-03-08 2021-03-08 07:58:29
## 2425 320 2021-03-11 2021-03-11 15:13:01
## 2426 320 2021-03-11 2021-03-11 15:13:01
## 2427 320 2021-03-11 2021-03-11 15:13:01
## 2428 320 2021-03-11 2021-03-11 15:13:01
## 2429 320 2021-03-11 2021-03-11 15:13:01
## 2430 49996 2021-03-06 2021-03-05 22:46:47
## 2431 47579 2021-03-07 2021-03-07 09:45:29
## 2432 10123 2021-03-09 2021-03-09 12:19:52
## 2433 12914 2021-03-09 2021-03-09 02:39:42
## 2434 12914 2021-03-09 2021-03-09 02:39:42
## 2435 12914 2021-03-09 2021-03-09 02:39:42
## 2436 12914 2021-03-09 2021-03-09 02:39:42
## 2437 12914 2021-03-09 2021-03-09 02:39:42
## 2438 12914 2021-03-09 2021-03-09 02:39:42
## 2439 12914 2021-03-09 2021-03-09 02:39:42
## 2440 12914 2021-03-09 2021-03-09 02:39:42
## 2441 12914 2021-03-09 2021-03-09 02:39:42
## 2442 21194 2021-03-08 2021-03-08 11:35:28
## 2443 2041 2021-03-11 2021-03-11 02:41:54
## 2444 2041 2021-03-11 2021-03-11 02:41:54
## 2445 2041 2021-03-11 2021-03-11 02:41:54
## 2446 4098 2021-03-10 2021-03-10 11:14:51
## 2447 4098 2021-03-10 2021-03-10 11:14:51
## 2448 6829 2021-03-10 2021-03-09 21:07:58
## 2449 15151 2021-03-09 2021-03-08 19:01:18
## 2450 21350 2021-03-08 2021-03-08 11:26:13
## 2451 50156 2021-03-06 2021-03-05 20:01:26
## 2452 3027 2021-03-10 2021-03-10 16:26:51
## 2453 22906 2021-03-08 2021-03-08 09:42:24
## 2454 34631 2021-03-08 2021-03-07 21:51:42
## 2455 8077 2021-03-09 2021-03-09 15:46:28
## 2456 43908 2021-03-08 2021-03-07 20:27:59
## 2457 24047 2021-03-08 2021-03-08 08:31:15
## 2458 12454 2021-03-09 2021-03-09 03:35:28
## 2459 12454 2021-03-09 2021-03-09 03:35:28
## 2460 5340 2021-03-10 2021-03-10 06:23:19
## 2461 36461 2021-03-08 2021-03-07 21:28:40
## 2462 10414 2021-03-09 2021-03-09 11:32:00
## 2463 10414 2021-03-09 2021-03-09 11:32:00
## 2464 28642 2021-03-08 2021-03-08 02:13:25
## 2465 39894 2021-03-08 2021-03-07 20:58:45
## 2466 34700 2021-03-08 2021-03-07 21:50:36
## 2467 34700 2021-03-08 2021-03-07 21:50:36
## 2468 4854 2021-03-10 2021-03-10 08:24:41
463
## 2469 27157 2021-03-08 2021-03-08 04:36:38
## 2470 32982 2021-03-08 2021-03-07 22:27:51
## 2471 32982 2021-03-08 2021-03-07 22:27:51
## 2472 30974 2021-03-08 2021-03-07 23:49:58
## 2473 48377 2021-03-07 2021-03-07 03:44:46
## 2474 6471 2021-03-10 2021-03-09 23:09:43
## 2475 6471 2021-03-10 2021-03-09 23:09:43
## 2476 86 2021-03-11 2021-03-11 18:13:53
## 2477 86 2021-03-11 2021-03-11 18:13:53
## 2478 9520 2021-03-09 2021-03-09 13:29:46
## 2479 9520 2021-03-09 2021-03-09 13:29:46
## 2480 19770 2021-03-08 2021-03-08 13:22:50
## 2481 7426 2021-03-09 2021-03-09 17:55:46
## 2482 7426 2021-03-09 2021-03-09 17:55:46
## 2483 14502 2021-03-09 2021-03-08 20:33:16
## 2484 14502 2021-03-09 2021-03-08 20:33:16
## 2485 18878 2021-03-08 2021-03-08 14:10:06
## 2486 34083 2021-03-08 2021-03-07 22:00:42
## 2487 22080 2021-03-08 2021-03-08 10:38:48
## 2488 12351 2021-03-09 2021-03-09 04:03:17
## 2489 45785 2021-03-08 2021-03-07 19:57:25
## 2490 24592 2021-03-08 2021-03-08 07:56:07
## 2491 7462 2021-03-09 2021-03-09 17:49:31
## 2492 7462 2021-03-09 2021-03-09 17:49:31
## 2493 7462 2021-03-09 2021-03-09 17:49:31
## 2494 7923 2021-03-09 2021-03-09 16:15:55
## 2495 8098 2021-03-09 2021-03-09 15:43:54
## 2496 13114 2021-03-09 2021-03-09 02:13:39
## 2497 19563 2021-03-08 2021-03-08 13:35:26
## 2498 8521 2021-03-09 2021-03-09 14:50:13
## 2499 14028 2021-03-09 2021-03-08 21:55:22
## 2500 34329 2021-03-08 2021-03-07 21:57:30
## 2501 48213 2021-03-07 2021-03-07 05:22:38
## 2502 5760 2021-03-10 2021-03-10 03:45:22
## 2503 5760 2021-03-10 2021-03-10 03:45:22
## 2504 5865 2021-03-10 2021-03-10 03:08:27
## 2505 5865 2021-03-10 2021-03-10 03:08:27
## 2506 5865 2021-03-10 2021-03-10 03:08:27
## 2507 20532 2021-03-08 2021-03-08 12:28:14
## 2508 49479 2021-03-06 2021-03-06 09:40:30
## 2509 191 2021-03-11 2021-03-11 17:01:13
## 2510 191 2021-03-11 2021-03-11 17:01:13
## 2511 191 2021-03-11 2021-03-11 17:01:13
## 2512 191 2021-03-11 2021-03-11 17:01:13
## 2513 15630 2021-03-08 2021-03-08 18:10:35
## 2514 15630 2021-03-08 2021-03-08 18:10:35
## 2515 14533 2021-03-09 2021-03-08 20:29:03
## 2516 14533 2021-03-09 2021-03-08 20:29:03
## 2517 2622 2021-03-11 2021-03-10 19:15:20
## 2518 19261 2021-03-08 2021-03-08 13:50:56
## 2519 21175 2021-03-08 2021-03-08 11:36:32
## 2520 12369 2021-03-09 2021-03-09 03:56:47
## 2521 12369 2021-03-09 2021-03-09 03:56:47
## 2522 12369 2021-03-09 2021-03-09 03:56:47
464
## 2523 27286 2021-03-08 2021-03-08 04:27:35
## 2524 47263 2021-03-07 2021-03-07 11:26:54
## 2525 362 2021-03-11 2021-03-11 14:42:21
## 2526 362 2021-03-11 2021-03-11 14:42:21
## 2527 25792 2021-03-08 2021-03-08 06:26:25
## 2528 37357 2021-03-08 2021-03-07 21:18:24
## 2529 48658 2021-03-07 2021-03-06 20:58:32
## 2530 48658 2021-03-07 2021-03-06 20:58:32
## 2531 17666 2021-03-08 2021-03-08 15:55:27
## 2532 4045 2021-03-10 2021-03-10 11:27:51
## 2533 46010 2021-03-08 2021-03-07 19:08:53
## 2534 46010 2021-03-08 2021-03-07 19:08:53
## 2535 1944 2021-03-11 2021-03-11 03:51:00
## 2536 1944 2021-03-11 2021-03-11 03:51:00
## 2537 1944 2021-03-11 2021-03-11 03:51:00
## 2538 1944 2021-03-11 2021-03-11 03:51:00
## 2539 8374 2021-03-09 2021-03-09 15:05:16
## 2540 8374 2021-03-09 2021-03-09 15:05:16
## 2541 34031 2021-03-08 2021-03-07 22:01:31
## 2542 34031 2021-03-08 2021-03-07 22:01:31
## 2543 24096 2021-03-08 2021-03-08 08:27:59
## 2544 41634 2021-03-08 2021-03-07 20:47:27
## 2545 41634 2021-03-08 2021-03-07 20:47:27
## 2546 41634 2021-03-08 2021-03-07 20:47:27
## 2547 41634 2021-03-08 2021-03-07 20:47:27
## 2548 41634 2021-03-08 2021-03-07 20:47:27
## 2549 16402 2021-03-08 2021-03-08 17:12:13
## 2550 16402 2021-03-08 2021-03-08 17:12:13
## 2551 8753 2021-03-09 2021-03-09 14:26:55
## 2552 8753 2021-03-09 2021-03-09 14:26:55
## 2553 21856 2021-03-08 2021-03-08 10:51:35
## 2554 51732 2021-03-05 2021-03-05 01:50:36
## 2555 51732 2021-03-05 2021-03-05 01:50:36
## 2556 48315 2021-03-07 2021-03-07 04:29:15
## 2557 12496 2021-03-09 2021-03-09 03:28:35
## 2558 12496 2021-03-09 2021-03-09 03:28:35
## 2559 12496 2021-03-09 2021-03-09 03:28:35
## 2560 22926 2021-03-08 2021-03-08 09:40:57
## 2561 48102 2021-03-07 2021-03-07 06:10:34
## 2562 48102 2021-03-07 2021-03-07 06:10:34
## 2563 21330 2021-03-08 2021-03-08 11:27:27
## 2564 4456 2021-03-10 2021-03-10 09:47:35
## 2565 9147 2021-03-09 2021-03-09 13:59:16
## 2566 9147 2021-03-09 2021-03-09 13:59:16
## 2567 4997 2021-03-10 2021-03-10 07:59:22
## 2568 38740 2021-03-08 2021-03-07 21:05:53
## 2569 38740 2021-03-08 2021-03-07 21:05:53
## 2570 38740 2021-03-08 2021-03-07 21:05:53
## 2571 6846 2021-03-10 2021-03-09 21:00:45
## 2572 6846 2021-03-10 2021-03-09 21:00:45
## 2573 24990 2021-03-08 2021-03-08 07:27:19
## 2574 9472 2021-03-09 2021-03-09 13:33:17
## 2575 30542 2021-03-08 2021-03-08 00:08:48
## 2576 30542 2021-03-08 2021-03-08 00:08:48
465
## 2577 28335 2021-03-08 2021-03-08 02:39:23
## 2578 50896 2021-03-05 2021-03-05 13:30:00
## 2579 25070 2021-03-08 2021-03-08 07:21:39
## 2580 41350 2021-03-08 2021-03-07 20:49:10
## 2581 41350 2021-03-08 2021-03-07 20:49:10
## 2582 41350 2021-03-08 2021-03-07 20:49:10
## 2583 41350 2021-03-08 2021-03-07 20:49:10
## 2584 41350 2021-03-08 2021-03-07 20:49:10
## 2585 41350 2021-03-08 2021-03-07 20:49:10
## 2586 41350 2021-03-08 2021-03-07 20:49:10
## 2587 41350 2021-03-08 2021-03-07 20:49:10
## 2588 50038 2021-03-06 2021-03-05 22:01:27
## 2589 6534 2021-03-10 2021-03-09 22:46:32
## 2590 1421 2021-03-11 2021-03-11 07:24:21
## 2591 17353 2021-03-08 2021-03-08 16:18:24
## 2592 8138 2021-03-09 2021-03-09 15:36:25
## 2593 49190 2021-03-06 2021-03-06 13:21:36
## 2594 49190 2021-03-06 2021-03-06 13:21:36
## 2595 49190 2021-03-06 2021-03-06 13:21:36
## 2596 49190 2021-03-06 2021-03-06 13:21:36
## 2597 27734 2021-03-08 2021-03-08 03:52:50
## 2598 27734 2021-03-08 2021-03-08 03:52:50
## 2599 11757 2021-03-09 2021-03-09 07:06:11
## 2600 11757 2021-03-09 2021-03-09 07:06:11
## 2601 11757 2021-03-09 2021-03-09 07:06:11
## 2602 48099 2021-03-07 2021-03-07 06:11:03
## 2603 48099 2021-03-07 2021-03-07 06:11:03
## 2604 20178 2021-03-08 2021-03-08 12:57:43
## 2605 47340 2021-03-07 2021-03-07 10:59:43
## 2606 7838 2021-03-09 2021-03-09 16:32:11
## 2607 7838 2021-03-09 2021-03-09 16:32:11
## 2608 15663 2021-03-08 2021-03-08 18:08:19
## 2609 12171 2021-03-09 2021-03-09 05:17:21
## 2610 46815 2021-03-07 2021-03-07 14:01:06
## 2611 12478 2021-03-09 2021-03-09 03:32:26
## 2612 12478 2021-03-09 2021-03-09 03:32:26
## 2613 14063 2021-03-09 2021-03-08 21:50:35
## 2614 14063 2021-03-09 2021-03-08 21:50:35
## 2615 14063 2021-03-09 2021-03-08 21:50:35
## 2616 14063 2021-03-09 2021-03-08 21:50:35
## 2617 14063 2021-03-09 2021-03-08 21:50:35
## 2618 32620 2021-03-08 2021-03-07 22:39:49
## 2619 32620 2021-03-08 2021-03-07 22:39:49
## 2620 9369 2021-03-09 2021-03-09 13:39:43
## 2621 37286 2021-03-08 2021-03-07 21:19:38
## 2622 37286 2021-03-08 2021-03-07 21:19:38
## 2623 27199 2021-03-08 2021-03-08 04:33:18
## 2624 7927 2021-03-09 2021-03-09 16:15:13
## 2625 12977 2021-03-09 2021-03-09 02:31:21
## 2626 31131 2021-03-08 2021-03-07 23:43:11
## 2627 31131 2021-03-08 2021-03-07 23:43:11
## 2628 49027 2021-03-06 2021-03-06 15:21:06
## 2629 13339 2021-03-09 2021-03-09 01:14:00
## 2630 13339 2021-03-09 2021-03-09 01:14:00
466
## 2631 13339 2021-03-09 2021-03-09 01:14:00
## 2632 48127 2021-03-07 2021-03-07 06:06:25
## 2633 28051 2021-03-08 2021-03-08 03:26:58
## 2634 51598 2021-03-05 2021-03-05 05:37:27
## 2635 51598 2021-03-05 2021-03-05 05:37:27
## 2636 51598 2021-03-05 2021-03-05 05:37:27
## 2637 12288 2021-03-09 2021-03-09 04:24:10
## 2638 12288 2021-03-09 2021-03-09 04:24:10
## 2639 12288 2021-03-09 2021-03-09 04:24:10
## 2640 12288 2021-03-09 2021-03-09 04:24:10
## 2641 12288 2021-03-09 2021-03-09 04:24:10
## 2642 39272 2021-03-08 2021-03-07 21:02:13
## 2643 7854 2021-03-09 2021-03-09 16:28:46
## 2644 9799 2021-03-09 2021-03-09 12:57:21
## 2645 9799 2021-03-09 2021-03-09 12:57:21
## 2646 9799 2021-03-09 2021-03-09 12:57:21
## 2647 47506 2021-03-07 2021-03-07 10:03:38
## 2648 10962 2021-03-09 2021-03-09 09:47:27
## 2649 13501 2021-03-09 2021-03-09 00:16:25
## 2650 50349 2021-03-05 2021-03-05 17:47:25
## 2651 4429 2021-03-10 2021-03-10 09:52:10
## 2652 4429 2021-03-10 2021-03-10 09:52:10
## 2653 4429 2021-03-10 2021-03-10 09:52:10
## 2654 32972 2021-03-08 2021-03-07 22:28:14
## 2655 37575 2021-03-08 2021-03-07 21:15:23
## 2656 49622 2021-03-06 2021-03-06 06:45:08
## 2657 49622 2021-03-06 2021-03-06 06:45:08
## 2658 29048 2021-03-08 2021-03-08 01:43:50
## 2659 14921 2021-03-09 2021-03-08 19:31:34
## 2660 7094 2021-03-10 2021-03-09 19:32:41
## 2661 7231 2021-03-09 2021-03-09 18:45:57
## 2662 7231 2021-03-09 2021-03-09 18:45:57
## 2663 48613 2021-03-07 2021-03-06 22:28:46
## 2664 44401 2021-03-08 2021-03-07 20:22:33
## 2665 9178 2021-03-09 2021-03-09 13:55:46
## 2666 26803 2021-03-08 2021-03-08 05:04:22
## 2667 46731 2021-03-07 2021-03-07 14:27:16
## 2668 46731 2021-03-07 2021-03-07 14:27:16
## 2669 15793 2021-03-08 2021-03-08 17:57:47
## 2670 15793 2021-03-08 2021-03-08 17:57:47
## 2671 24744 2021-03-08 2021-03-08 07:42:39
## 2672 11299 2021-03-09 2021-03-09 08:29:38
## 2673 47650 2021-03-07 2021-03-07 09:24:29
## 2674 47650 2021-03-07 2021-03-07 09:24:29
## 2675 47650 2021-03-07 2021-03-07 09:24:29
## 2676 47650 2021-03-07 2021-03-07 09:24:29
## 2677 4389 2021-03-10 2021-03-10 10:02:28
## 2678 4389 2021-03-10 2021-03-10 10:02:28
## 2679 4389 2021-03-10 2021-03-10 10:02:28
## 2680 19773 2021-03-08 2021-03-08 13:22:41
## 2681 19773 2021-03-08 2021-03-08 13:22:41
## 2682 41993 2021-03-08 2021-03-07 20:45:32
## 2683 47661 2021-03-07 2021-03-07 09:19:26
## 2684 47661 2021-03-07 2021-03-07 09:19:26
467
## 2685 8257 2021-03-09 2021-03-09 15:19:21
## 2686 8257 2021-03-09 2021-03-09 15:19:21
## 2687 8257 2021-03-09 2021-03-09 15:19:21
## 2688 28704 2021-03-08 2021-03-08 02:09:12
## 2689 34779 2021-03-08 2021-03-07 21:49:32
## 2690 34779 2021-03-08 2021-03-07 21:49:32
## 2691 20652 2021-03-08 2021-03-08 12:18:13
## 2692 48284 2021-03-07 2021-03-07 04:41:37
## 2693 48284 2021-03-07 2021-03-07 04:41:37
## 2694 18298 2021-03-08 2021-03-08 14:51:20
## 2695 4081 2021-03-10 2021-03-10 11:20:36
## 2696 18064 2021-03-08 2021-03-08 15:11:18
## 2697 7761 2021-03-09 2021-03-09 16:44:56
## 2698 7761 2021-03-09 2021-03-09 16:44:56
## 2699 10292 2021-03-09 2021-03-09 11:50:18
## 2700 52395 2021-03-04 2021-03-04 14:03:00
## 2701 32834 2021-03-08 2021-03-07 22:32:58
## 2702 51508 2021-03-05 2021-03-05 07:20:21
## 2703 39530 2021-03-08 2021-03-07 21:00:49
## 2704 1700 2021-03-11 2021-03-11 05:53:12
## 2705 1700 2021-03-11 2021-03-11 05:53:12
## 2706 47273 2021-03-07 2021-03-07 11:22:26
## 2707 29945 2021-03-08 2021-03-08 00:42:49
## 2708 23931 2021-03-08 2021-03-08 08:39:26
## 2709 27230 2021-03-08 2021-03-08 04:30:57
## 2710 47763 2021-03-07 2021-03-07 08:46:17
## 2711 46653 2021-03-07 2021-03-07 14:59:49
## 2712 46653 2021-03-07 2021-03-07 14:59:49
## 2713 50171 2021-03-06 2021-03-05 19:53:42
## 2714 50171 2021-03-06 2021-03-05 19:53:42
## 2715 20536 2021-03-08 2021-03-08 12:28:03
## 2716 20536 2021-03-08 2021-03-08 12:28:03
## 2717 14416 2021-03-09 2021-03-08 20:48:49
## 2718 51569 2021-03-05 2021-03-05 06:13:51
## 2719 49748 2021-03-06 2021-03-06 04:46:43
## 2720 17399 2021-03-08 2021-03-08 16:15:10
## 2721 17399 2021-03-08 2021-03-08 16:15:10
## 2722 20587 2021-03-08 2021-03-08 12:23:30
## 2723 13517 2021-03-09 2021-03-09 00:09:41
## 2724 48250 2021-03-07 2021-03-07 05:08:32
## 2725 24577 2021-03-08 2021-03-08 07:56:58
## 2726 13270 2021-03-09 2021-03-09 01:38:42
## 2727 45903 2021-03-08 2021-03-07 19:39:23
## 2728 45903 2021-03-08 2021-03-07 19:39:23
## 2729 8934 2021-03-09 2021-03-09 14:14:08
## 2730 42006 2021-03-08 2021-03-07 20:45:26
## 2731 10357 2021-03-09 2021-03-09 11:40:41
## 2732 46578 2021-03-07 2021-03-07 15:40:56
## 2733 46578 2021-03-07 2021-03-07 15:40:56
## 2734 46578 2021-03-07 2021-03-07 15:40:56
## 2735 45960 2021-03-08 2021-03-07 19:23:07
## 2736 16452 2021-03-08 2021-03-08 17:09:09
## 2737 3875 2021-03-10 2021-03-10 12:07:32
## 2738 48998 2021-03-06 2021-03-06 15:49:23
468
## 2739 22606 2021-03-08 2021-03-08 10:03:20
## 2740 24035 2021-03-08 2021-03-08 08:31:49
## 2741 50407 2021-03-05 2021-03-05 17:14:23
## 2742 25031 2021-03-08 2021-03-08 07:24:17
## 2743 3761 2021-03-10 2021-03-10 12:34:42
## 2744 4225 2021-03-10 2021-03-10 10:44:54
## 2745 1759 2021-03-11 2021-03-11 05:22:32
## 2746 17125 2021-03-08 2021-03-08 16:31:20
## 2747 4956 2021-03-10 2021-03-10 08:03:41
## 2748 4334 2021-03-10 2021-03-10 10:17:07
## 2749 26729 2021-03-08 2021-03-08 05:11:53
## 2750 17800 2021-03-08 2021-03-08 15:39:29
## 2751 17800 2021-03-08 2021-03-08 15:39:29
## 2752 1081 2021-03-11 2021-03-11 08:57:57
## 2753 23711 2021-03-08 2021-03-08 08:54:01
## 2754 43740 2021-03-08 2021-03-07 20:29:47
## 2755 15814 2021-03-08 2021-03-08 17:56:29
## 2756 47046 2021-03-07 2021-03-07 12:36:29
## 2757 47046 2021-03-07 2021-03-07 12:36:29
## 2758 47046 2021-03-07 2021-03-07 12:36:29
## 2759 21376 2021-03-08 2021-03-08 11:24:38
## 2760 49811 2021-03-06 2021-03-06 03:32:35
## 2761 49811 2021-03-06 2021-03-06 03:32:35
## 2762 49811 2021-03-06 2021-03-06 03:32:35
## 2763 49811 2021-03-06 2021-03-06 03:32:35
## 2764 23082 2021-03-08 2021-03-08 09:32:00
## 2765 48135 2021-03-07 2021-03-07 06:04:26
## 2766 48135 2021-03-07 2021-03-07 06:04:26
## 2767 43860 2021-03-08 2021-03-07 20:28:28
## 2768 48665 2021-03-07 2021-03-06 20:50:34
## 2769 48665 2021-03-07 2021-03-06 20:50:34
## 2770 48665 2021-03-07 2021-03-06 20:50:34
## 2771 3948 2021-03-10 2021-03-10 11:51:58
## 2772 25249 2021-03-08 2021-03-08 07:08:47
## 2773 25249 2021-03-08 2021-03-08 07:08:47
## 2774 25451 2021-03-08 2021-03-08 06:53:06
## 2775 25451 2021-03-08 2021-03-08 06:53:06
## 2776 25451 2021-03-08 2021-03-08 06:53:06
## 2777 2068 2021-03-11 2021-03-11 02:11:47
## 2778 2068 2021-03-11 2021-03-11 02:11:47
## 2779 25388 2021-03-08 2021-03-08 06:58:23
## 2780 25388 2021-03-08 2021-03-08 06:58:23
## 2781 24462 2021-03-08 2021-03-08 08:04:37
## 2782 15525 2021-03-08 2021-03-08 18:19:51
## 2783 17033 2021-03-08 2021-03-08 16:36:42
## 2784 28171 2021-03-08 2021-03-08 02:59:11
## 2785 668 2021-03-11 2021-03-11 11:33:42
## 2786 668 2021-03-11 2021-03-11 11:33:42
## 2787 45519 2021-03-08 2021-03-07 20:05:25
## 2788 12378 2021-03-09 2021-03-09 03:51:58
## 2789 5534 2021-03-10 2021-03-10 05:08:01
## 2790 5534 2021-03-10 2021-03-10 05:08:01
## 2791 33049 2021-03-08 2021-03-07 22:25:23
## 2792 24694 2021-03-08 2021-03-08 07:46:38
469
## 2793 24694 2021-03-08 2021-03-08 07:46:38
## 2794 24694 2021-03-08 2021-03-08 07:46:38
## 2795 379 2021-03-11 2021-03-11 14:31:47
## 2796 379 2021-03-11 2021-03-11 14:31:47
## 2797 21213 2021-03-08 2021-03-08 11:34:08
## 2798 21213 2021-03-08 2021-03-08 11:34:08
## 2799 21213 2021-03-08 2021-03-08 11:34:08
## 2800 10718 2021-03-09 2021-03-09 10:31:01
## 2801 10718 2021-03-09 2021-03-09 10:31:01
## 2802 8655 2021-03-09 2021-03-09 14:35:24
## 2803 6383 2021-03-10 2021-03-09 23:37:22
## 2804 41494 2021-03-08 2021-03-07 20:48:16
## 2805 2597 2021-03-11 2021-03-10 19:25:22
## 2806 43289 2021-03-08 2021-03-07 20:33:18
## 2807 30962 2021-03-08 2021-03-07 23:50:24
## 2808 52220 2021-03-04 2021-03-04 15:56:25
## 2809 31698 2021-03-08 2021-03-07 23:17:04
## 2810 507 2021-03-11 2021-03-11 13:07:20
## 2811 8558 2021-03-09 2021-03-09 14:45:52
## 2812 26914 2021-03-08 2021-03-08 04:55:00
## 2813 16667 2021-03-08 2021-03-08 16:56:20
## 2814 18051 2021-03-08 2021-03-08 15:13:10
## 2815 18051 2021-03-08 2021-03-08 15:13:10
## 2816 12660 2021-03-09 2021-03-09 03:10:40
## 2817 12660 2021-03-09 2021-03-09 03:10:40
## 2818 47424 2021-03-07 2021-03-07 10:28:11
## 2819 6863 2021-03-10 2021-03-09 20:55:28
## 2820 6863 2021-03-10 2021-03-09 20:55:28
## 2821 6863 2021-03-10 2021-03-09 20:55:28
## 2822 6863 2021-03-10 2021-03-09 20:55:28
## 2823 6863 2021-03-10 2021-03-09 20:55:28
## 2824 27185 2021-03-08 2021-03-08 04:34:07
## 2825 5045 2021-03-10 2021-03-10 07:47:26
## 2826 5045 2021-03-10 2021-03-10 07:47:26
## 2827 28070 2021-03-08 2021-03-08 03:23:31
## 2828 8647 2021-03-09 2021-03-09 14:36:08
## 2829 29101 2021-03-08 2021-03-08 01:40:17
## 2830 47538 2021-03-07 2021-03-07 09:54:28
## 2831 39071 2021-03-08 2021-03-07 21:03:34
## 2832 8207 2021-03-09 2021-03-09 15:26:48
## 2833 48501 2021-03-07 2021-03-07 00:52:26
## 2834 20423 2021-03-08 2021-03-08 12:36:23
## 2835 1449 2021-03-11 2021-03-11 07:16:46
## 2836 49192 2021-03-06 2021-03-06 13:20:06
## 2837 49192 2021-03-06 2021-03-06 13:20:06
## 2838 26777 2021-03-08 2021-03-08 05:06:51
## 2839 26777 2021-03-08 2021-03-08 05:06:51
## 2840 52058 2021-03-04 2021-03-04 18:03:13
## 2841 52058 2021-03-04 2021-03-04 18:03:13
## 2842 28468 2021-03-08 2021-03-08 02:28:34
## 2843 11518 2021-03-09 2021-03-09 07:48:57
## 2844 33177 2021-03-08 2021-03-07 22:21:21
## 2845 10364 2021-03-09 2021-03-09 11:39:30
## 2846 50875 2021-03-05 2021-03-05 13:42:52
470
## 2847 2867 2021-03-10 2021-03-10 17:37:11
## 2848 24904 2021-03-08 2021-03-08 07:33:05
## 2849 24904 2021-03-08 2021-03-08 07:33:05
## 2850 31931 2021-03-08 2021-03-07 23:07:37
## 2851 31931 2021-03-08 2021-03-07 23:07:37
## 2852 31931 2021-03-08 2021-03-07 23:07:37
## 2853 31931 2021-03-08 2021-03-07 23:07:37
## 2854 8244 2021-03-09 2021-03-09 15:20:43
## 2855 8362 2021-03-09 2021-03-09 15:06:57
## 2856 8362 2021-03-09 2021-03-09 15:06:57
## 2857 50632 2021-03-05 2021-03-05 15:41:52
## 2858 24485 2021-03-08 2021-03-08 08:03:04
## 2859 24485 2021-03-08 2021-03-08 08:03:04
## 2860 19089 2021-03-08 2021-03-08 13:59:31
## 2861 19089 2021-03-08 2021-03-08 13:59:31
## 2862 31509 2021-03-08 2021-03-07 23:24:36
## 2863 31509 2021-03-08 2021-03-07 23:24:36
## 2864 31509 2021-03-08 2021-03-07 23:24:36
## 2865 1017 2021-03-11 2021-03-11 09:18:36
## 2866 21976 2021-03-08 2021-03-08 10:44:08
## 2867 5223 2021-03-10 2021-03-10 06:59:26
## 2868 13475 2021-03-09 2021-03-09 00:22:57
## 2869 27542 2021-03-08 2021-03-08 04:09:20
## 2870 27542 2021-03-08 2021-03-08 04:09:20
## 2871 19069 2021-03-08 2021-03-08 14:00:39
## 2872 19069 2021-03-08 2021-03-08 14:00:39
## 2873 19069 2021-03-08 2021-03-08 14:00:39
## 2874 27032 2021-03-08 2021-03-08 04:45:52
## 2875 4919 2021-03-10 2021-03-10 08:12:13
## 2876 4919 2021-03-10 2021-03-10 08:12:13
## 2877 4919 2021-03-10 2021-03-10 08:12:13
## 2878 10293 2021-03-09 2021-03-09 11:50:07
## 2879 278 2021-03-11 2021-03-11 15:42:35
## 2880 12787 2021-03-09 2021-03-09 02:56:45
## 2881 51308 2021-03-05 2021-03-05 09:49:49
## 2882 51308 2021-03-05 2021-03-05 09:49:49
## 2883 51308 2021-03-05 2021-03-05 09:49:49
## 2884 51308 2021-03-05 2021-03-05 09:49:49
## 2885 7281 2021-03-09 2021-03-09 18:33:11
## 2886 4803 2021-03-10 2021-03-10 08:36:10
## 2887 4803 2021-03-10 2021-03-10 08:36:10
## 2888 4803 2021-03-10 2021-03-10 08:36:10
## 2889 27165 2021-03-08 2021-03-08 04:36:03
## 2890 30218 2021-03-08 2021-03-08 00:25:41
## 2891 28394 2021-03-08 2021-03-08 02:34:31
## 2892 52625 2021-03-04 2021-03-04 11:41:40
## 2893 52625 2021-03-04 2021-03-04 11:41:40
## 2894 52625 2021-03-04 2021-03-04 11:41:40
## 2895 29655 2021-03-08 2021-03-08 00:59:50
## 2896 29655 2021-03-08 2021-03-08 00:59:50
## 2897 46202 2021-03-07 2021-03-07 18:04:56
## 2898 43270 2021-03-08 2021-03-07 20:33:24
## 2899 697 2021-03-11 2021-03-11 11:15:40
## 2900 5494 2021-03-10 2021-03-10 05:19:27
471
## 2901 3401 2021-03-10 2021-03-10 13:49:48
## 2902 30355 2021-03-08 2021-03-08 00:18:17
## 2903 30355 2021-03-08 2021-03-08 00:18:17
## 2904 30355 2021-03-08 2021-03-08 00:18:17
## 2905 7065 2021-03-10 2021-03-09 19:44:47
## 2906 30592 2021-03-08 2021-03-08 00:06:17
## 2907 21702 2021-03-08 2021-03-08 11:01:15
## 2908 21702 2021-03-08 2021-03-08 11:01:15
## 2909 1949 2021-03-11 2021-03-11 03:49:19
## 2910 37818 2021-03-08 2021-03-07 21:12:44
## 2911 2786 2021-03-10 2021-03-10 18:14:57
## 2912 2786 2021-03-10 2021-03-10 18:14:57
## 2913 31400 2021-03-08 2021-03-07 23:28:47
## 2914 3533 2021-03-10 2021-03-10 13:21:21
## 2915 18540 2021-03-08 2021-03-08 14:32:38
## 2916 18540 2021-03-08 2021-03-08 14:32:38
## 2917 52585 2021-03-04 2021-03-04 12:08:33
## 2918 10300 2021-03-09 2021-03-09 11:49:20
## 2919 35824 2021-03-08 2021-03-07 21:36:31
## 2920 47783 2021-03-07 2021-03-07 08:39:27
## 2921 47783 2021-03-07 2021-03-07 08:39:27
## 2922 47783 2021-03-07 2021-03-07 08:39:27
## 2923 47783 2021-03-07 2021-03-07 08:39:27
## 2924 47783 2021-03-07 2021-03-07 08:39:27
## 2925 48691 2021-03-07 2021-03-06 20:14:21
## 2926 17139 2021-03-08 2021-03-08 16:30:45
## 2927 13911 2021-03-09 2021-03-08 22:23:34
## 2928 13911 2021-03-09 2021-03-08 22:23:34
## 2929 767 2021-03-11 2021-03-11 10:46:04
## 2930 767 2021-03-11 2021-03-11 10:46:04
## 2931 29985 2021-03-08 2021-03-08 00:40:41
## 2932 29985 2021-03-08 2021-03-08 00:40:41
## 2933 6006 2021-03-10 2021-03-10 02:21:24
## 2934 49111 2021-03-06 2021-03-06 14:13:22
## 2935 49111 2021-03-06 2021-03-06 14:13:22
## 2936 45849 2021-03-08 2021-03-07 19:48:26
## 2937 52319 2021-03-04 2021-03-04 14:47:21
## 2938 52319 2021-03-04 2021-03-04 14:47:21
## 2939 52319 2021-03-04 2021-03-04 14:47:21
## 2940 52319 2021-03-04 2021-03-04 14:47:21
## 2941 13167 2021-03-09 2021-03-09 02:03:11
## 2942 13167 2021-03-09 2021-03-09 02:03:11
## 2943 13167 2021-03-09 2021-03-09 02:03:11
## 2944 33437 2021-03-08 2021-03-07 22:13:34
## 2945 51345 2021-03-05 2021-03-05 09:23:32
## 2946 51345 2021-03-05 2021-03-05 09:23:32
## 2947 36344 2021-03-08 2021-03-07 21:30:11
## 2948 7874 2021-03-09 2021-03-09 16:24:18
## 2949 8956 2021-03-09 2021-03-09 14:12:05
## 2950 8956 2021-03-09 2021-03-09 14:12:05
## 2951 8956 2021-03-09 2021-03-09 14:12:05
## 2952 4285 2021-03-10 2021-03-10 10:28:43
## 2953 19264 2021-03-08 2021-03-08 13:50:43
## 2954 19264 2021-03-08 2021-03-08 13:50:43
472
## 2955 39374 2021-03-08 2021-03-07 21:01:41
## 2956 7529 2021-03-09 2021-03-09 17:32:42
## 2957 52505 2021-03-04 2021-03-04 13:08:37
## 2958 1066 2021-03-11 2021-03-11 09:02:00
## 2959 25181 2021-03-08 2021-03-08 07:13:49
## 2960 19411 2021-03-08 2021-03-08 13:43:10
## 2961 19411 2021-03-08 2021-03-08 13:43:10
## 2962 19411 2021-03-08 2021-03-08 13:43:10
## 2963 21049 2021-03-08 2021-03-08 11:45:20
## 2964 52548 2021-03-04 2021-03-04 12:35:25
## 2965 52548 2021-03-04 2021-03-04 12:35:25
## 2966 52548 2021-03-04 2021-03-04 12:35:25
## 2967 22199 2021-03-08 2021-03-08 10:29:56
## 2968 48156 2021-03-07 2021-03-07 05:58:32
## 2969 40559 2021-03-08 2021-03-07 20:54:35
## 2970 42741 2021-03-08 2021-03-07 20:38:32
## 2971 32327 2021-03-08 2021-03-07 22:50:56
## 2972 6926 2021-03-10 2021-03-09 20:37:28
## 2973 34545 2021-03-08 2021-03-07 21:53:22
## 2974 10081 2021-03-09 2021-03-09 12:24:43
## 2975 41383 2021-03-08 2021-03-07 20:48:57
## 2976 14965 2021-03-09 2021-03-08 19:24:27
## 2977 2025 2021-03-11 2021-03-11 02:56:38
## 2978 14627 2021-03-09 2021-03-08 20:16:47
## 2979 14627 2021-03-09 2021-03-08 20:16:47
## 2980 14627 2021-03-09 2021-03-08 20:16:47
## 2981 14627 2021-03-09 2021-03-08 20:16:47
## 2982 24966 2021-03-08 2021-03-08 07:29:19
## 2983 24966 2021-03-08 2021-03-08 07:29:19
## 2984 37722 2021-03-08 2021-03-07 21:13:40
## 2985 26955 2021-03-08 2021-03-08 04:50:54
## 2986 23690 2021-03-08 2021-03-08 08:54:48
## 2987 24381 2021-03-08 2021-03-08 08:09:43
## 2988 28664 2021-03-08 2021-03-08 02:11:49
## 2989 38551 2021-03-08 2021-03-07 21:07:27
## 2990 32169 2021-03-08 2021-03-07 22:57:44
## 2991 3306 2021-03-10 2021-03-10 14:23:48
## 2992 29237 2021-03-08 2021-03-08 01:30:38
## 2993 47702 2021-03-07 2021-03-07 09:04:07
## 2994 6086 2021-03-10 2021-03-10 01:46:57
## 2995 30937 2021-03-08 2021-03-07 23:50:58
## 2996 6992 2021-03-10 2021-03-09 20:11:12
## 2997 6992 2021-03-10 2021-03-09 20:11:12
## 2998 9225 2021-03-09 2021-03-09 13:51:20
## 2999 25066 2021-03-08 2021-03-08 07:22:18
## 3000 10365 2021-03-09 2021-03-09 11:39:07
## 3001 10365 2021-03-09 2021-03-09 11:39:07
## 3002 10303 2021-03-09 2021-03-09 11:48:49
## 3003 34726 2021-03-08 2021-03-07 21:50:18
## 3004 14862 2021-03-09 2021-03-08 19:44:42
## 3005 29893 2021-03-08 2021-03-08 00:45:16
## 3006 1260 2021-03-11 2021-03-11 08:03:48
## 3007 9557 2021-03-09 2021-03-09 13:26:03
## 3008 9557 2021-03-09 2021-03-09 13:26:03
473
## 3009 27289 2021-03-08 2021-03-08 04:27:30
## 3010 12889 2021-03-09 2021-03-09 02:43:56
## 3011 12889 2021-03-09 2021-03-09 02:43:56
## 3012 49341 2021-03-06 2021-03-06 11:28:42
## 3013 35300 2021-03-08 2021-03-07 21:42:53
## 3014 48478 2021-03-07 2021-03-07 01:28:36
## 3015 48478 2021-03-07 2021-03-07 01:28:36
## 3016 3939 2021-03-10 2021-03-10 11:54:06
## 3017 8391 2021-03-09 2021-03-09 15:03:30
## 3018 8391 2021-03-09 2021-03-09 15:03:30
## 3019 37323 2021-03-08 2021-03-07 21:19:03
## 3020 5220 2021-03-10 2021-03-10 06:59:57
## 3021 12504 2021-03-09 2021-03-09 03:27:47
## 3022 12504 2021-03-09 2021-03-09 03:27:47
## 3023 325 2021-03-11 2021-03-11 15:06:12
## 3024 44319 2021-03-08 2021-03-07 20:23:30
## 3025 44319 2021-03-08 2021-03-07 20:23:30
## 3026 24941 2021-03-08 2021-03-08 07:30:33
## 3027 26336 2021-03-08 2021-03-08 05:41:28
## 3028 8307 2021-03-09 2021-03-09 15:13:26
## 3029 36648 2021-03-08 2021-03-07 21:26:24
## 3030 28650 2021-03-08 2021-03-08 02:12:58
## 3031 28650 2021-03-08 2021-03-08 02:12:58
## 3032 17302 2021-03-08 2021-03-08 16:21:10
## 3033 24441 2021-03-08 2021-03-08 08:05:34
## 3034 24441 2021-03-08 2021-03-08 08:05:34
## 3035 52063 2021-03-04 2021-03-04 18:00:57
## 3036 17483 2021-03-08 2021-03-08 16:10:03
## 3037 51469 2021-03-05 2021-03-05 07:56:35
## 3038 20104 2021-03-08 2021-03-08 13:01:56
## 3039 20104 2021-03-08 2021-03-08 13:01:56
## 3040 52553 2021-03-04 2021-03-04 12:33:01
## 3041 49484 2021-03-06 2021-03-06 09:33:59
## 3042 52405 2021-03-04 2021-03-04 13:58:50
## 3043 52405 2021-03-04 2021-03-04 13:58:50
## 3044 52405 2021-03-04 2021-03-04 13:58:50
## 3045 52405 2021-03-04 2021-03-04 13:58:50
## 3046 52405 2021-03-04 2021-03-04 13:58:50
## 3047 52405 2021-03-04 2021-03-04 13:58:50
## 3048 52405 2021-03-04 2021-03-04 13:58:50
## 3049 52405 2021-03-04 2021-03-04 13:58:50
## 3050 30647 2021-03-08 2021-03-08 00:03:46
## 3051 3430 2021-03-10 2021-03-10 13:43:31
## 3052 25119 2021-03-08 2021-03-08 07:18:09
## 3053 10631 2021-03-09 2021-03-09 10:48:15
## 3054 28521 2021-03-08 2021-03-08 02:24:04
## 3055 28521 2021-03-08 2021-03-08 02:24:04
## 3056 30910 2021-03-08 2021-03-07 23:51:55
## 3057 30910 2021-03-08 2021-03-07 23:51:55
## 3058 12531 2021-03-09 2021-03-09 03:25:14
## 3059 7396 2021-03-09 2021-03-09 18:02:02
## 3060 21897 2021-03-08 2021-03-08 10:48:41
## 3061 21897 2021-03-08 2021-03-08 10:48:41
## 3062 21897 2021-03-08 2021-03-08 10:48:41
474
## 3063 35852 2021-03-08 2021-03-07 21:36:09
## 3064 22020 2021-03-08 2021-03-08 10:42:11
## 3065 1440 2021-03-11 2021-03-11 07:19:19
## 3066 1440 2021-03-11 2021-03-11 07:19:19
## 3067 1440 2021-03-11 2021-03-11 07:19:19
## 3068 1440 2021-03-11 2021-03-11 07:19:19
## 3069 1440 2021-03-11 2021-03-11 07:19:19
## 3070 9439 2021-03-09 2021-03-09 13:35:29
## 3071 2950 2021-03-10 2021-03-10 16:59:42
## 3072 46566 2021-03-07 2021-03-07 15:45:29
## 3073 28476 2021-03-08 2021-03-08 02:27:47
## 3074 28476 2021-03-08 2021-03-08 02:27:47
## 3075 28476 2021-03-08 2021-03-08 02:27:47
## 3076 24674 2021-03-08 2021-03-08 07:49:09
## 3077 19124 2021-03-08 2021-03-08 13:58:04
## 3078 19124 2021-03-08 2021-03-08 13:58:04
## 3079 11804 2021-03-09 2021-03-09 06:59:46
## 3080 11804 2021-03-09 2021-03-09 06:59:46
## 3081 11804 2021-03-09 2021-03-09 06:59:46
## 3082 11804 2021-03-09 2021-03-09 06:59:46
## 3083 2594 2021-03-11 2021-03-10 19:28:08
## 3084 2594 2021-03-11 2021-03-10 19:28:08
## 3085 2594 2021-03-11 2021-03-10 19:28:08
## 3086 11531 2021-03-09 2021-03-09 07:46:20
## 3087 50693 2021-03-05 2021-03-05 14:52:49
## 3088 50693 2021-03-05 2021-03-05 14:52:49
## 3089 2590 2021-03-11 2021-03-10 19:32:04
## 3090 22681 2021-03-08 2021-03-08 09:58:46
## 3091 30833 2021-03-08 2021-03-07 23:55:09
## 3092 31401 2021-03-08 2021-03-07 23:28:45
## 3093 31401 2021-03-08 2021-03-07 23:28:45
## 3094 37708 2021-03-08 2021-03-07 21:13:48
## 3095 4845 2021-03-10 2021-03-10 08:27:23
## 3096 4845 2021-03-10 2021-03-10 08:27:23
## 3097 19036 2021-03-08 2021-03-08 14:02:10
## 3098 10608 2021-03-09 2021-03-09 10:52:09
## 3099 10608 2021-03-09 2021-03-09 10:52:09
## 3100 11388 2021-03-09 2021-03-09 08:13:37
## 3101 11388 2021-03-09 2021-03-09 08:13:37
## 3102 11388 2021-03-09 2021-03-09 08:13:37
## 3103 11034 2021-03-09 2021-03-09 09:34:09
## 3104 11034 2021-03-09 2021-03-09 09:34:09
## 3105 11034 2021-03-09 2021-03-09 09:34:09
## 3106 10367 2021-03-09 2021-03-09 11:38:51
## 3107 47928 2021-03-07 2021-03-07 07:52:59
## 3108 47928 2021-03-07 2021-03-07 07:52:59
## 3109 47928 2021-03-07 2021-03-07 07:52:59
## 3110 33492 2021-03-08 2021-03-07 22:12:10
## 3111 33492 2021-03-08 2021-03-07 22:12:10
## 3112 23642 2021-03-08 2021-03-08 08:57:44
## 3113 25106 2021-03-08 2021-03-08 07:19:10
## 3114 25106 2021-03-08 2021-03-08 07:19:10
## 3115 25106 2021-03-08 2021-03-08 07:19:10
## 3116 46258 2021-03-07 2021-03-07 17:48:44
475
## 3117 44145 2021-03-08 2021-03-07 20:25:29
## 3118 23398 2021-03-08 2021-03-08 09:13:25
## 3119 30509 2021-03-08 2021-03-08 00:10:16
## 3120 30509 2021-03-08 2021-03-08 00:10:16
## 3121 21338 2021-03-08 2021-03-08 11:26:52
## 3122 2172 2021-03-11 2021-03-11 00:20:32
## 3123 33680 2021-03-08 2021-03-07 22:07:42
## 3124 31004 2021-03-08 2021-03-07 23:48:43
## 3125 13330 2021-03-09 2021-03-09 01:16:57
## 3126 51454 2021-03-05 2021-03-05 08:06:46
## 3127 34450 2021-03-08 2021-03-07 21:54:57
## 3128 34450 2021-03-08 2021-03-07 21:54:57
## 3129 26655 2021-03-08 2021-03-08 05:17:42
## 3130 48421 2021-03-07 2021-03-07 02:56:57
## 3131 48421 2021-03-07 2021-03-07 02:56:57
## 3132 47732 2021-03-07 2021-03-07 08:56:47
## 3133 47732 2021-03-07 2021-03-07 08:56:47
## 3134 42988 2021-03-08 2021-03-07 20:35:29
## 3135 42988 2021-03-08 2021-03-07 20:35:29
## 3136 3340 2021-03-10 2021-03-10 14:08:37
## 3137 3340 2021-03-10 2021-03-10 14:08:37
## 3138 3340 2021-03-10 2021-03-10 14:08:37
## 3139 21819 2021-03-08 2021-03-08 10:53:48
## 3140 21819 2021-03-08 2021-03-08 10:53:48
## 3141 14202 2021-03-09 2021-03-08 21:23:26
## 3142 16727 2021-03-08 2021-03-08 16:53:25
## 3143 16727 2021-03-08 2021-03-08 16:53:25
## 3144 52322 2021-03-04 2021-03-04 14:44:44
## 3145 52322 2021-03-04 2021-03-04 14:44:44
## 3146 52322 2021-03-04 2021-03-04 14:44:44
## 3147 12359 2021-03-09 2021-03-09 03:59:27
## 3148 13344 2021-03-09 2021-03-09 01:11:58
## 3149 25871 2021-03-08 2021-03-08 06:21:09
## 3150 25871 2021-03-08 2021-03-08 06:21:09
## 3151 51668 2021-03-05 2021-03-05 03:55:16
## 3152 13502 2021-03-09 2021-03-09 00:16:18
## 3153 13204 2021-03-09 2021-03-09 01:54:43
## 3154 2028 2021-03-11 2021-03-11 02:53:59
## 3155 32063 2021-03-08 2021-03-07 23:02:34
## 3156 22481 2021-03-08 2021-03-08 10:10:52
## 3157 22481 2021-03-08 2021-03-08 10:10:52
## 3158 15400 2021-03-08 2021-03-08 18:34:02
## 3159 18717 2021-03-08 2021-03-08 14:20:04
## 3160 18717 2021-03-08 2021-03-08 14:20:04
## 3161 24069 2021-03-08 2021-03-08 08:29:51
## 3162 2566 2021-03-11 2021-03-10 19:42:03
## 3163 16504 2021-03-08 2021-03-08 17:05:45
## 3164 5460 2021-03-10 2021-03-10 05:27:54
## 3165 15182 2021-03-08 2021-03-08 18:57:19
## 3166 47731 2021-03-07 2021-03-07 08:57:18
## 3167 47731 2021-03-07 2021-03-07 08:57:18
## 3168 47731 2021-03-07 2021-03-07 08:57:18
## 3169 21311 2021-03-08 2021-03-08 11:28:47
## 3170 21311 2021-03-08 2021-03-08 11:28:47
476
## 3171 26577 2021-03-08 2021-03-08 05:23:35
## 3172 36204 2021-03-08 2021-03-07 21:31:59
## 3173 12345 2021-03-09 2021-03-09 04:05:19
## 3174 52316 2021-03-04 2021-03-04 14:49:58
## 3175 52316 2021-03-04 2021-03-04 14:49:58
## 3176 10532 2021-03-09 2021-03-09 11:07:40
## 3177 30391 2021-03-08 2021-03-08 00:15:38
## 3178 7817 2021-03-09 2021-03-09 16:35:41
## 3179 47817 2021-03-07 2021-03-07 08:29:40
## 3180 47817 2021-03-07 2021-03-07 08:29:40
## 3181 47817 2021-03-07 2021-03-07 08:29:40
## 3182 35839 2021-03-08 2021-03-07 21:36:18
## 3183 35839 2021-03-08 2021-03-07 21:36:18
## 3184 2914 2021-03-10 2021-03-10 17:17:12
## 3185 2914 2021-03-10 2021-03-10 17:17:12
## 3186 36364 2021-03-08 2021-03-07 21:29:50
## 3187 52038 2021-03-04 2021-03-04 18:27:58
## 3188 13959 2021-03-09 2021-03-08 22:13:31
## 3189 17969 2021-03-08 2021-03-08 15:20:47
## 3190 26738 2021-03-08 2021-03-08 05:10:05
## 3191 25585 2021-03-08 2021-03-08 06:43:22
## 3192 20099 2021-03-08 2021-03-08 13:02:20
## 3193 21355 2021-03-08 2021-03-08 11:25:37
## 3194 51197 2021-03-05 2021-03-05 11:27:38
## 3195 7897 2021-03-09 2021-03-09 16:20:30
## 3196 10916 2021-03-09 2021-03-09 09:55:40
## 3197 10916 2021-03-09 2021-03-09 09:55:40
## 3198 10916 2021-03-09 2021-03-09 09:55:40
## 3199 6738 2021-03-10 2021-03-09 21:40:27
## 3200 8872 2021-03-09 2021-03-09 14:17:59
## 3201 31197 2021-03-08 2021-03-07 23:39:53
## 3202 31197 2021-03-08 2021-03-07 23:39:53
## 3203 21504 2021-03-08 2021-03-08 11:15:36
## 3204 19584 2021-03-08 2021-03-08 13:33:43
## 3205 25945 2021-03-08 2021-03-08 06:15:27
## 3206 25945 2021-03-08 2021-03-08 06:15:27
## 3207 25945 2021-03-08 2021-03-08 06:15:27
## 3208 52199 2021-03-04 2021-03-04 16:05:52
## 3209 15941 2021-03-08 2021-03-08 17:47:22
## 3210 15941 2021-03-08 2021-03-08 17:47:22
## 3211 7059 2021-03-10 2021-03-09 19:47:36
## 3212 38871 2021-03-08 2021-03-07 21:04:56
## 3213 22560 2021-03-08 2021-03-08 10:06:04
## 3214 21370 2021-03-08 2021-03-08 11:25:06
## 3215 2988 2021-03-10 2021-03-10 16:38:40
## 3216 49033 2021-03-06 2021-03-06 15:16:55
## 3217 49810 2021-03-06 2021-03-06 03:33:33
## 3218 28164 2021-03-08 2021-03-08 03:00:39
## 3219 28164 2021-03-08 2021-03-08 03:00:39
## 3220 28164 2021-03-08 2021-03-08 03:00:39
## 3221 17369 2021-03-08 2021-03-08 16:17:35
## 3222 5566 2021-03-10 2021-03-10 04:59:55
## 3223 46608 2021-03-07 2021-03-07 15:24:46
## 3224 48519 2021-03-07 2021-03-07 00:33:55
477
## 3225 4777 2021-03-10 2021-03-10 08:42:50
## 3226 47177 2021-03-07 2021-03-07 11:49:56
## 3227 51251 2021-03-05 2021-03-05 10:39:36
## 3228 51251 2021-03-05 2021-03-05 10:39:36
## 3229 3039 2021-03-10 2021-03-10 16:23:53
## 3230 2159 2021-03-11 2021-03-11 00:35:27
## 3231 10457 2021-03-09 2021-03-09 11:20:05
## 3232 46980 2021-03-07 2021-03-07 13:06:31
## 3233 52351 2021-03-04 2021-03-04 14:27:48
## 3234 52351 2021-03-04 2021-03-04 14:27:48
## 3235 52331 2021-03-04 2021-03-04 14:38:21
## 3236 50124 2021-03-06 2021-03-05 20:24:53
## 3237 50124 2021-03-06 2021-03-05 20:24:53
## 3238 50124 2021-03-06 2021-03-05 20:24:53
## 3239 50124 2021-03-06 2021-03-05 20:24:53
## 3240 1567 2021-03-11 2021-03-11 06:46:57
## 3241 12199 2021-03-09 2021-03-09 05:06:57
## 3242 36794 2021-03-08 2021-03-07 21:24:58
## 3243 6114 2021-03-10 2021-03-10 01:35:42
## 3244 6114 2021-03-10 2021-03-10 01:35:42
## 3245 6114 2021-03-10 2021-03-10 01:35:42
## 3246 2266 2021-03-11 2021-03-10 22:57:36
## 3247 2266 2021-03-11 2021-03-10 22:57:36
## 3248 24081 2021-03-08 2021-03-08 08:28:58
## 3249 14480 2021-03-09 2021-03-08 20:37:00
## 3250 26020 2021-03-08 2021-03-08 06:09:23
## 3251 3972 2021-03-10 2021-03-10 11:44:15
## 3252 49129 2021-03-06 2021-03-06 13:57:40
## 3253 49129 2021-03-06 2021-03-06 13:57:40
## 3254 46391 2021-03-07 2021-03-07 17:06:06
## 3255 15786 2021-03-08 2021-03-08 17:58:24
## 3256 28667 2021-03-08 2021-03-08 02:11:34
## 3257 20508 2021-03-08 2021-03-08 12:30:01
## 3258 8931 2021-03-09 2021-03-09 14:14:23
## 3259 41140 2021-03-08 2021-03-07 20:50:27
## 3260 41140 2021-03-08 2021-03-07 20:50:27
## 3261 23023 2021-03-08 2021-03-08 09:36:12
## 3262 23023 2021-03-08 2021-03-08 09:36:12
## 3263 23023 2021-03-08 2021-03-08 09:36:12
## 3264 2156 2021-03-11 2021-03-11 00:37:00
## 3265 2156 2021-03-11 2021-03-11 00:37:00
## 3266 32966 2021-03-08 2021-03-07 22:28:25
## 3267 32966 2021-03-08 2021-03-07 22:28:25
## 3268 32966 2021-03-08 2021-03-07 22:28:25
## 3269 1705 2021-03-11 2021-03-11 05:52:16
## 3270 1705 2021-03-11 2021-03-11 05:52:16
## 3271 52183 2021-03-04 2021-03-04 16:18:37
## 3272 20694 2021-03-08 2021-03-08 12:14:51
## 3273 20694 2021-03-08 2021-03-08 12:14:51
## 3274 6440 2021-03-10 2021-03-09 23:20:48
## 3275 6440 2021-03-10 2021-03-09 23:20:48
## 3276 51398 2021-03-05 2021-03-05 08:45:50
## 3277 51398 2021-03-05 2021-03-05 08:45:50
## 3278 51398 2021-03-05 2021-03-05 08:45:50
478
## 3279 3096 2021-03-10 2021-03-10 16:04:15
## 3280 38453 2021-03-08 2021-03-07 21:08:17
## 3281 29727 2021-03-08 2021-03-08 00:56:20
## 3282 25005 2021-03-08 2021-03-08 07:25:53
## 3283 30402 2021-03-08 2021-03-08 00:15:16
## 3284 17960 2021-03-08 2021-03-08 15:21:41
## 3285 13063 2021-03-09 2021-03-09 02:19:16
## 3286 6913 2021-03-10 2021-03-09 20:41:08
## 3287 6913 2021-03-10 2021-03-09 20:41:08
## 3288 6913 2021-03-10 2021-03-09 20:41:08
## 3289 1209 2021-03-11 2021-03-11 08:16:46
## 3290 1209 2021-03-11 2021-03-11 08:16:46
## 3291 6898 2021-03-10 2021-03-09 20:46:01
## 3292 8844 2021-03-09 2021-03-09 14:20:02
## 3293 52283 2021-03-04 2021-03-04 15:12:49
## 3294 52283 2021-03-04 2021-03-04 15:12:49
## 3295 52283 2021-03-04 2021-03-04 15:12:49
## 3296 52283 2021-03-04 2021-03-04 15:12:49
## 3297 50933 2021-03-05 2021-03-05 13:14:14
## 3298 17391 2021-03-08 2021-03-08 16:16:09
## 3299 17391 2021-03-08 2021-03-08 16:16:09
## 3300 17391 2021-03-08 2021-03-08 16:16:09
## 3301 17391 2021-03-08 2021-03-08 16:16:09
## 3302 17391 2021-03-08 2021-03-08 16:16:09
## 3303 17391 2021-03-08 2021-03-08 16:16:09
## 3304 17391 2021-03-08 2021-03-08 16:16:09
## 3305 17391 2021-03-08 2021-03-08 16:16:09
## 3306 27041 2021-03-08 2021-03-08 04:45:21
## 3307 2105 2021-03-11 2021-03-11 01:29:17
## 3308 2105 2021-03-11 2021-03-11 01:29:17
## 3309 27276 2021-03-08 2021-03-08 04:27:57
## 3310 27531 2021-03-08 2021-03-08 04:10:06
## 3311 27531 2021-03-08 2021-03-08 04:10:06
## 3312 45989 2021-03-08 2021-03-07 19:14:39
## 3313 45989 2021-03-08 2021-03-07 19:14:39
## 3314 52593 2021-03-04 2021-03-04 12:03:46
## 3315 17303 2021-03-08 2021-03-08 16:21:04
## 3316 28071 2021-03-08 2021-03-08 03:23:25
## 3317 5612 2021-03-10 2021-03-10 04:44:51
## 3318 12426 2021-03-09 2021-03-09 03:38:30
## 3319 50266 2021-03-06 2021-03-05 19:00:23
## 3320 50266 2021-03-06 2021-03-05 19:00:23
## 3321 50266 2021-03-06 2021-03-05 19:00:23
## 3322 20358 2021-03-08 2021-03-08 12:41:50
## 3323 50238 2021-03-06 2021-03-05 19:15:40
## 3324 25977 2021-03-08 2021-03-08 06:12:53
## 3325 14342 2021-03-09 2021-03-08 20:59:08
## 3326 27803 2021-03-08 2021-03-08 03:47:58
## 3327 27803 2021-03-08 2021-03-08 03:47:58
## 3328 27803 2021-03-08 2021-03-08 03:47:58
## 3329 20047 2021-03-08 2021-03-08 13:06:24
## 3330 20047 2021-03-08 2021-03-08 13:06:24
## 3331 20047 2021-03-08 2021-03-08 13:06:24
## 3332 5508 2021-03-10 2021-03-10 05:14:47
479
## 3333 3435 2021-03-10 2021-03-10 13:42:27
## 3334 689 2021-03-11 2021-03-11 11:18:26
## 3335 547 2021-03-11 2021-03-11 12:49:41
## 3336 49199 2021-03-06 2021-03-06 13:15:27
## 3337 49199 2021-03-06 2021-03-06 13:15:27
## 3338 49199 2021-03-06 2021-03-06 13:15:27
## 3339 27831 2021-03-08 2021-03-08 03:45:28
## 3340 1741 2021-03-11 2021-03-11 05:31:40
## 3341 1741 2021-03-11 2021-03-11 05:31:40
## 3342 1741 2021-03-11 2021-03-11 05:31:40
## 3343 1741 2021-03-11 2021-03-11 05:31:40
## 3344 7053 2021-03-10 2021-03-09 19:49:44
## 3345 7053 2021-03-10 2021-03-09 19:49:44
## 3346 2076 2021-03-11 2021-03-11 02:06:04
## 3347 2076 2021-03-11 2021-03-11 02:06:04
## 3348 26130 2021-03-08 2021-03-08 05:58:50
## 3349 26889 2021-03-08 2021-03-08 04:57:30
## 3350 50712 2021-03-05 2021-03-05 14:41:39
## 3351 19442 2021-03-08 2021-03-08 13:41:10
## 3352 30035 2021-03-08 2021-03-08 00:37:57
## 3353 30035 2021-03-08 2021-03-08 00:37:57
## 3354 20889 2021-03-08 2021-03-08 11:59:00
## 3355 28895 2021-03-08 2021-03-08 01:56:20
## 3356 42460 2021-03-08 2021-03-07 20:41:42
## 3357 28242 2021-03-08 2021-03-08 02:48:49
## 3358 27621 2021-03-08 2021-03-08 04:01:20
## 3359 49392 2021-03-06 2021-03-06 10:50:06
## 3360 24648 2021-03-08 2021-03-08 07:51:22
## 3361 24648 2021-03-08 2021-03-08 07:51:22
## 3362 24648 2021-03-08 2021-03-08 07:51:22
## 3363 11694 2021-03-09 2021-03-09 07:17:48
## 3364 11694 2021-03-09 2021-03-09 07:17:48
## 3365 11694 2021-03-09 2021-03-09 07:17:48
## 3366 47501 2021-03-07 2021-03-07 10:06:13
## 3367 47501 2021-03-07 2021-03-07 10:06:13
## 3368 47501 2021-03-07 2021-03-07 10:06:13
## 3369 47501 2021-03-07 2021-03-07 10:06:13
## 3370 14455 2021-03-09 2021-03-08 20:41:06
## 3371 50533 2021-03-05 2021-03-05 16:20:05
## 3372 36847 2021-03-08 2021-03-07 21:24:17
## 3373 23563 2021-03-08 2021-03-08 09:03:05
## 3374 17525 2021-03-08 2021-03-08 16:07:08
## 3375 5962 2021-03-10 2021-03-10 02:36:59
## 3376 5962 2021-03-10 2021-03-10 02:36:59
## 3377 49565 2021-03-06 2021-03-06 08:21:24
## 3378 49565 2021-03-06 2021-03-06 08:21:24
## 3379 49565 2021-03-06 2021-03-06 08:21:24
## 3380 49565 2021-03-06 2021-03-06 08:21:24
## 3381 49565 2021-03-06 2021-03-06 08:21:24
## 3382 49565 2021-03-06 2021-03-06 08:21:24
## 3383 4478 2021-03-10 2021-03-10 09:42:27
## 3384 18225 2021-03-08 2021-03-08 14:57:02
## 3385 4892 2021-03-10 2021-03-10 08:19:25
## 3386 774 2021-03-11 2021-03-11 10:41:21
480
## 3387 774 2021-03-11 2021-03-11 10:41:21
## 3388 19596 2021-03-08 2021-03-08 13:33:08
## 3389 22269 2021-03-08 2021-03-08 10:25:11
## 3390 22269 2021-03-08 2021-03-08 10:25:11
## 3391 28450 2021-03-08 2021-03-08 02:29:39
## 3392 17194 2021-03-08 2021-03-08 16:27:54
## 3393 17194 2021-03-08 2021-03-08 16:27:54
## 3394 17854 2021-03-08 2021-03-08 15:33:21
## 3395 50226 2021-03-06 2021-03-05 19:21:30
## 3396 50226 2021-03-06 2021-03-05 19:21:30
## 3397 5335 2021-03-10 2021-03-10 06:27:32
## 3398 52708 2021-03-04 2021-03-04 10:47:18
## 3399 49052 2021-03-06 2021-03-06 15:03:45
## 3400 49052 2021-03-06 2021-03-06 15:03:45
## 3401 7823 2021-03-09 2021-03-09 16:35:14
## 3402 38886 2021-03-08 2021-03-07 21:04:51
## 3403 38886 2021-03-08 2021-03-07 21:04:51
## 3404 17867 2021-03-08 2021-03-08 15:31:44
## 3405 10138 2021-03-09 2021-03-09 12:17:33
## 3406 5466 2021-03-10 2021-03-10 05:26:19
## 3407 13334 2021-03-09 2021-03-09 01:16:05
## 3408 3834 2021-03-10 2021-03-10 12:16:56
## 3409 38142 2021-03-08 2021-03-07 21:10:40
## 3410 11769 2021-03-09 2021-03-09 07:04:41
## 3411 15999 2021-03-08 2021-03-08 17:42:43
## 3412 35346 2021-03-08 2021-03-07 21:42:22
## 3413 48423 2021-03-07 2021-03-07 02:56:33
## 3414 48423 2021-03-07 2021-03-07 02:56:33
## 3415 48423 2021-03-07 2021-03-07 02:56:33
## 3416 48423 2021-03-07 2021-03-07 02:56:33
## 3417 7268 2021-03-09 2021-03-09 18:38:07
## 3418 50456 2021-03-05 2021-03-05 16:47:33
## 3419 17845 2021-03-08 2021-03-08 15:34:29
## 3420 17845 2021-03-08 2021-03-08 15:34:29
## 3421 7539 2021-03-09 2021-03-09 17:30:54
## 3422 13900 2021-03-09 2021-03-08 22:26:41
## 3423 8473 2021-03-09 2021-03-09 14:55:19
## 3424 25817 2021-03-08 2021-03-08 06:25:06
## 3425 10984 2021-03-09 2021-03-09 09:44:00
## 3426 10176 2021-03-09 2021-03-09 12:12:58
## 3427 10176 2021-03-09 2021-03-09 12:12:58
## 3428 10176 2021-03-09 2021-03-09 12:12:58
## 3429 12927 2021-03-09 2021-03-09 02:38:10
## 3430 12927 2021-03-09 2021-03-09 02:38:10
## 3431 12927 2021-03-09 2021-03-09 02:38:10
## 3432 49598 2021-03-06 2021-03-06 07:32:12
## 3433 4460 2021-03-10 2021-03-10 09:46:35
## 3434 50560 2021-03-05 2021-03-05 16:09:45
## 3435 50560 2021-03-05 2021-03-05 16:09:45
## 3436 31685 2021-03-08 2021-03-07 23:17:31
## 3437 19585 2021-03-08 2021-03-08 13:33:35
## 3438 30638 2021-03-08 2021-03-08 00:04:12
## 3439 30638 2021-03-08 2021-03-08 00:04:12
## 3440 6713 2021-03-10 2021-03-09 21:49:28
481
## 3441 1989 2021-03-11 2021-03-11 03:20:53
## 3442 5170 2021-03-10 2021-03-10 07:11:34
## 3443 5170 2021-03-10 2021-03-10 07:11:34
## 3444 34734 2021-03-08 2021-03-07 21:50:09
## 3445 13186 2021-03-09 2021-03-09 01:59:22
## 3446 1358 2021-03-11 2021-03-11 07:41:10
## 3447 16385 2021-03-08 2021-03-08 17:14:07
## 3448 16385 2021-03-08 2021-03-08 17:14:07
## 3449 37927 2021-03-08 2021-03-07 21:11:55
## 3450 7582 2021-03-09 2021-03-09 17:21:01
## 3451 7582 2021-03-09 2021-03-09 17:21:01
## 3452 33542 2021-03-08 2021-03-07 22:11:01
## 3453 34368 2021-03-08 2021-03-07 21:56:52
## 3454 34368 2021-03-08 2021-03-07 21:56:52
## 3455 13125 2021-03-09 2021-03-09 02:12:25
## 3456 47830 2021-03-07 2021-03-07 08:22:49
## 3457 51596 2021-03-05 2021-03-05 05:38:49
## 3458 15976 2021-03-08 2021-03-08 17:44:08
## 3459 15976 2021-03-08 2021-03-08 17:44:08
## 3460 45573 2021-03-08 2021-03-07 20:04:19
## 3461 45573 2021-03-08 2021-03-07 20:04:19
## 3462 2039 2021-03-11 2021-03-11 02:43:08
## 3463 2039 2021-03-11 2021-03-11 02:43:08
## 3464 32714 2021-03-08 2021-03-07 22:36:31
## 3465 32714 2021-03-08 2021-03-07 22:36:31
## 3466 14954 2021-03-09 2021-03-08 19:26:38
## 3467 12005 2021-03-09 2021-03-09 06:19:59
## 3468 12005 2021-03-09 2021-03-09 06:19:59
## 3469 8368 2021-03-09 2021-03-09 15:06:33
## 3470 8368 2021-03-09 2021-03-09 15:06:33
## 3471 8368 2021-03-09 2021-03-09 15:06:33
## 3472 8368 2021-03-09 2021-03-09 15:06:33
## 3473 8368 2021-03-09 2021-03-09 15:06:33
## 3474 3229 2021-03-10 2021-03-10 14:59:33
## 3475 48622 2021-03-07 2021-03-06 22:08:57
## 3476 49162 2021-03-06 2021-03-06 13:40:08
## 3477 49162 2021-03-06 2021-03-06 13:40:08
## 3478 10735 2021-03-09 2021-03-09 10:29:09
## 3479 10735 2021-03-09 2021-03-09 10:29:09
## 3480 29976 2021-03-08 2021-03-08 00:41:16
## 3481 25613 2021-03-08 2021-03-08 06:40:58
## 3482 734 2021-03-11 2021-03-11 11:01:11
## 3483 44127 2021-03-08 2021-03-07 20:25:41
## 3484 14618 2021-03-09 2021-03-08 20:18:14
## 3485 6510 2021-03-10 2021-03-09 22:57:01
## 3486 4268 2021-03-10 2021-03-10 10:33:24
## 3487 24820 2021-03-08 2021-03-08 07:36:51
## 3488 24820 2021-03-08 2021-03-08 07:36:51
## 3489 22128 2021-03-08 2021-03-08 10:34:45
## 3490 22128 2021-03-08 2021-03-08 10:34:45
## 3491 3561 2021-03-10 2021-03-10 13:14:38
## 3492 44104 2021-03-08 2021-03-07 20:25:57
## 3493 44104 2021-03-08 2021-03-07 20:25:57
## 3494 1534 2021-03-11 2021-03-11 06:55:42
482
## 3495 25477 2021-03-08 2021-03-08 06:51:25
## 3496 3451 2021-03-10 2021-03-10 13:39:04
## 3497 3451 2021-03-10 2021-03-10 13:39:04
## 3498 27379 2021-03-08 2021-03-08 04:20:48
## 3499 38216 2021-03-08 2021-03-07 21:10:19
## 3500 1942 2021-03-11 2021-03-11 03:53:05
## 3501 46694 2021-03-07 2021-03-07 14:39:39
## 3502 46694 2021-03-07 2021-03-07 14:39:39
## 3503 16118 2021-03-08 2021-03-08 17:33:54
## 3504 7062 2021-03-10 2021-03-09 19:46:35
## 3505 47950 2021-03-07 2021-03-07 07:41:41
## 3506 15427 2021-03-08 2021-03-08 18:30:54
## 3507 12969 2021-03-09 2021-03-09 02:32:08
## 3508 19007 2021-03-08 2021-03-08 14:03:40
## 3509 6464 2021-03-10 2021-03-09 23:12:12
## 3510 28683 2021-03-08 2021-03-08 02:10:24
## 3511 3885 2021-03-10 2021-03-10 12:05:33
## 3512 12150 2021-03-09 2021-03-09 05:27:37
## 3513 43233 2021-03-08 2021-03-07 20:33:38
## 3514 46250 2021-03-07 2021-03-07 17:51:13
## 3515 46250 2021-03-07 2021-03-07 17:51:13
## 3516 15078 2021-03-09 2021-03-08 19:09:19
## 3517 26847 2021-03-08 2021-03-08 05:00:31
## 3518 12097 2021-03-09 2021-03-09 05:44:29
## 3519 52095 2021-03-04 2021-03-04 17:29:37
## 3520 1544 2021-03-11 2021-03-11 06:53:22
## 3521 13546 2021-03-09 2021-03-08 23:58:44
## 3522 13546 2021-03-09 2021-03-08 23:58:44
## 3523 13546 2021-03-09 2021-03-08 23:58:44
## 3524 30451 2021-03-08 2021-03-08 00:12:50
## 3525 30451 2021-03-08 2021-03-08 00:12:50
## 3526 13667 2021-03-09 2021-03-08 23:29:50
## 3527 1226 2021-03-11 2021-03-11 08:13:04
## 3528 39170 2021-03-08 2021-03-07 21:02:58
## 3529 39170 2021-03-08 2021-03-07 21:02:58
## 3530 18946 2021-03-08 2021-03-08 14:06:28
## 3531 18946 2021-03-08 2021-03-08 14:06:28
## 3532 50229 2021-03-06 2021-03-05 19:20:55
## 3533 14537 2021-03-09 2021-03-08 20:28:14
## 3534 12737 2021-03-09 2021-03-09 03:02:28
## 3535 12737 2021-03-09 2021-03-09 03:02:28
## 3536 12737 2021-03-09 2021-03-09 03:02:28
## 3537 26685 2021-03-08 2021-03-08 05:15:28
## 3538 26685 2021-03-08 2021-03-08 05:15:28
## 3539 33148 2021-03-08 2021-03-07 22:22:17
## 3540 33148 2021-03-08 2021-03-07 22:22:17
## 3541 48241 2021-03-07 2021-03-07 05:11:42
## 3542 25064 2021-03-08 2021-03-08 07:22:26
## 3543 50146 2021-03-06 2021-03-05 20:12:57
## 3544 5953 2021-03-10 2021-03-10 02:39:50
## 3545 5953 2021-03-10 2021-03-10 02:39:50
## 3546 47037 2021-03-07 2021-03-07 12:41:05
## 3547 47037 2021-03-07 2021-03-07 12:41:05
## 3548 47329 2021-03-07 2021-03-07 11:02:22
483
## 3549 29906 2021-03-08 2021-03-08 00:44:58
## 3550 29906 2021-03-08 2021-03-08 00:44:58
## 3551 5311 2021-03-10 2021-03-10 06:38:08
## 3552 27847 2021-03-08 2021-03-08 03:44:36
## 3553 27847 2021-03-08 2021-03-08 03:44:36
## 3554 23678 2021-03-08 2021-03-08 08:55:37
## 3555 34470 2021-03-08 2021-03-07 21:54:29
## 3556 34470 2021-03-08 2021-03-07 21:54:29
## 3557 48299 2021-03-07 2021-03-07 04:33:55
## 3558 2879 2021-03-10 2021-03-10 17:29:35
## 3559 2879 2021-03-10 2021-03-10 17:29:35
## 3560 2879 2021-03-10 2021-03-10 17:29:35
## 3561 26225 2021-03-08 2021-03-08 05:49:56
## 3562 26225 2021-03-08 2021-03-08 05:49:56
## 3563 18242 2021-03-08 2021-03-08 14:55:57
## 3564 5204 2021-03-10 2021-03-10 07:03:53
## 3565 5204 2021-03-10 2021-03-10 07:03:53
## 3566 11687 2021-03-09 2021-03-09 07:18:55
## 3567 10835 2021-03-09 2021-03-09 10:08:14
## 3568 31298 2021-03-08 2021-03-07 23:34:05
## 3569 47393 2021-03-07 2021-03-07 10:37:17
## 3570 8748 2021-03-09 2021-03-09 14:27:15
## 3571 24615 2021-03-08 2021-03-08 07:53:58
## 3572 32774 2021-03-08 2021-03-07 22:34:38
## 3573 32774 2021-03-08 2021-03-07 22:34:38
## 3574 32774 2021-03-08 2021-03-07 22:34:38
## 3575 34590 2021-03-08 2021-03-07 21:52:37
## 3576 14408 2021-03-09 2021-03-08 20:49:28
## 3577 46994 2021-03-07 2021-03-07 13:01:15
## 3578 46994 2021-03-07 2021-03-07 13:01:15
## 3579 15076 2021-03-09 2021-03-08 19:09:31
## 3580 20738 2021-03-08 2021-03-08 12:12:26
## 3581 49207 2021-03-06 2021-03-06 13:05:59
## 3582 49207 2021-03-06 2021-03-06 13:05:59
## 3583 51026 2021-03-05 2021-03-05 12:41:50
## 3584 51026 2021-03-05 2021-03-05 12:41:50
## 3585 51026 2021-03-05 2021-03-05 12:41:50
## 3586 51026 2021-03-05 2021-03-05 12:41:50
## 3587 4151 2021-03-10 2021-03-10 11:01:47
## 3588 11970 2021-03-09 2021-03-09 06:26:34
## 3589 11970 2021-03-09 2021-03-09 06:26:34
## 3590 11970 2021-03-09 2021-03-09 06:26:34
## 3591 40726 2021-03-08 2021-03-07 20:53:37
## 3592 35371 2021-03-08 2021-03-07 21:42:07
## 3593 29100 2021-03-08 2021-03-08 01:40:25
## 3594 19712 2021-03-08 2021-03-08 13:26:40
## 3595 19712 2021-03-08 2021-03-08 13:26:40
## 3596 19712 2021-03-08 2021-03-08 13:26:40
## 3597 21671 2021-03-08 2021-03-08 11:03:03
## 3598 21671 2021-03-08 2021-03-08 11:03:03
## 3599 21671 2021-03-08 2021-03-08 11:03:03
## 3600 9232 2021-03-09 2021-03-09 13:50:50
## 3601 49505 2021-03-06 2021-03-06 09:23:15
## 3602 7816 2021-03-09 2021-03-09 16:35:44
484
## 3603 7816 2021-03-09 2021-03-09 16:35:44
## 3604 7816 2021-03-09 2021-03-09 16:35:44
## 3605 27517 2021-03-08 2021-03-08 04:11:25
## 3606 1454 2021-03-11 2021-03-11 07:16:29
## 3607 19560 2021-03-08 2021-03-08 13:35:29
## 3608 45675 2021-03-08 2021-03-07 20:02:06
## 3609 45675 2021-03-08 2021-03-07 20:02:06
## 3610 32312 2021-03-08 2021-03-07 22:51:47
## 3611 29785 2021-03-08 2021-03-08 00:52:08
## 3612 2986 2021-03-10 2021-03-10 16:38:47
## 3613 2986 2021-03-10 2021-03-10 16:38:47
## 3614 2986 2021-03-10 2021-03-10 16:38:47
## 3615 2986 2021-03-10 2021-03-10 16:38:47
## 3616 2986 2021-03-10 2021-03-10 16:38:47
## 3617 22035 2021-03-08 2021-03-08 10:41:02
## 3618 40103 2021-03-08 2021-03-07 20:57:14
## 3619 20316 2021-03-08 2021-03-08 12:46:31
## 3620 20316 2021-03-08 2021-03-08 12:46:31
## 3621 3111 2021-03-10 2021-03-10 15:59:00
## 3622 3111 2021-03-10 2021-03-10 15:59:00
## 3623 8252 2021-03-09 2021-03-09 15:19:53
## 3624 46254 2021-03-07 2021-03-07 17:50:40
## 3625 46254 2021-03-07 2021-03-07 17:50:40
## 3626 5091 2021-03-10 2021-03-10 07:38:30
## 3627 18674 2021-03-08 2021-03-08 14:23:57
## 3628 4356 2021-03-10 2021-03-10 10:12:36
## 3629 8714 2021-03-09 2021-03-09 14:29:24
## 3630 47360 2021-03-07 2021-03-07 10:51:32
## 3631 47360 2021-03-07 2021-03-07 10:51:32
## 3632 47360 2021-03-07 2021-03-07 10:51:32
## 3633 47360 2021-03-07 2021-03-07 10:51:32
## 3634 49501 2021-03-06 2021-03-06 09:25:19
## 3635 49501 2021-03-06 2021-03-06 09:25:19
## 3636 14711 2021-03-09 2021-03-08 20:05:40
## 3637 14813 2021-03-09 2021-03-08 19:50:19
## 3638 18291 2021-03-08 2021-03-08 14:52:05
## 3639 22108 2021-03-08 2021-03-08 10:36:25
## 3640 20102 2021-03-08 2021-03-08 13:02:14
## 3641 20102 2021-03-08 2021-03-08 13:02:14
## 3642 20102 2021-03-08 2021-03-08 13:02:14
## 3643 20102 2021-03-08 2021-03-08 13:02:14
## 3644 20102 2021-03-08 2021-03-08 13:02:14
## 3645 2543 2021-03-11 2021-03-10 19:58:10
## 3646 2543 2021-03-11 2021-03-10 19:58:10
## 3647 2543 2021-03-11 2021-03-10 19:58:10
## 3648 2543 2021-03-11 2021-03-10 19:58:10
## 3649 2543 2021-03-11 2021-03-10 19:58:10
## 3650 2543 2021-03-11 2021-03-10 19:58:10
## 3651 2543 2021-03-11 2021-03-10 19:58:10
## 3652 2543 2021-03-11 2021-03-10 19:58:10
## 3653 2543 2021-03-11 2021-03-10 19:58:10
## 3654 3738 2021-03-10 2021-03-10 12:37:58
## 3655 25734 2021-03-08 2021-03-08 06:31:36
## 3656 25734 2021-03-08 2021-03-08 06:31:36
485
## 3657 48977 2021-03-06 2021-03-06 16:06:54
## 3658 52070 2021-03-04 2021-03-04 17:49:28
## 3659 52070 2021-03-04 2021-03-04 17:49:28
## 3660 25681 2021-03-08 2021-03-08 06:35:46
## 3661 36176 2021-03-08 2021-03-07 21:32:17
## 3662 38435 2021-03-08 2021-03-07 21:08:27
## 3663 10696 2021-03-09 2021-03-09 10:35:49
## 3664 4255 2021-03-10 2021-03-10 10:36:05
## 3665 4255 2021-03-10 2021-03-10 10:36:05
## 3666 4255 2021-03-10 2021-03-10 10:36:05
## 3667 4255 2021-03-10 2021-03-10 10:36:05
## 3668 4255 2021-03-10 2021-03-10 10:36:05
## 3669 4255 2021-03-10 2021-03-10 10:36:05
## 3670 4255 2021-03-10 2021-03-10 10:36:05
## 3671 4255 2021-03-10 2021-03-10 10:36:05
## 3672 10295 2021-03-09 2021-03-09 11:49:48
## 3673 2586 2021-03-11 2021-03-10 19:32:50
## 3674 6050 2021-03-10 2021-03-10 02:04:15
## 3675 6050 2021-03-10 2021-03-10 02:04:15
## 3676 6050 2021-03-10 2021-03-10 02:04:15
## 3677 11417 2021-03-09 2021-03-09 08:08:17
## 3678 26922 2021-03-08 2021-03-08 04:54:08
## 3679 26922 2021-03-08 2021-03-08 04:54:08
## 3680 26288 2021-03-08 2021-03-08 05:44:50
## 3681 30108 2021-03-08 2021-03-08 00:32:15
## 3682 11280 2021-03-09 2021-03-09 08:31:29
## 3683 11280 2021-03-09 2021-03-09 08:31:29
## 3684 24275 2021-03-08 2021-03-08 08:16:44
## 3685 24275 2021-03-08 2021-03-08 08:16:44
## 3686 13807 2021-03-09 2021-03-08 22:48:26
## 3687 21959 2021-03-08 2021-03-08 10:45:22
## 3688 35897 2021-03-08 2021-03-07 21:35:38
## 3689 9453 2021-03-09 2021-03-09 13:34:29
## 3690 22452 2021-03-08 2021-03-08 10:12:26
## 3691 31182 2021-03-08 2021-03-07 23:40:44
## 3692 31182 2021-03-08 2021-03-07 23:40:44
## 3693 31182 2021-03-08 2021-03-07 23:40:44
## 3694 30224 2021-03-08 2021-03-08 00:25:26
## 3695 30224 2021-03-08 2021-03-08 00:25:26
## 3696 31181 2021-03-08 2021-03-07 23:40:48
## 3697 46657 2021-03-07 2021-03-07 14:55:50
## 3698 8358 2021-03-09 2021-03-09 15:07:43
## 3699 7913 2021-03-09 2021-03-09 16:16:44
## 3700 36774 2021-03-08 2021-03-07 21:25:12
## 3701 36774 2021-03-08 2021-03-07 21:25:12
## 3702 36774 2021-03-08 2021-03-07 21:25:12
## 3703 36774 2021-03-08 2021-03-07 21:25:12
## 3704 36774 2021-03-08 2021-03-07 21:25:12
## 3705 3853 2021-03-10 2021-03-10 12:12:06
## 3706 29731 2021-03-08 2021-03-08 00:56:12
## 3707 27716 2021-03-08 2021-03-08 03:54:23
## 3708 27716 2021-03-08 2021-03-08 03:54:23
## 3709 13221 2021-03-09 2021-03-09 01:51:29
## 3710 13221 2021-03-09 2021-03-09 01:51:29
486
## 3711 13221 2021-03-09 2021-03-09 01:51:29
## 3712 48781 2021-03-06 2021-03-06 18:55:34
## 3713 52471 2021-03-04 2021-03-04 13:27:47
## 3714 52471 2021-03-04 2021-03-04 13:27:47
## 3715 7513 2021-03-09 2021-03-09 17:36:42
## 3716 27020 2021-03-08 2021-03-08 04:46:51
## 3717 14964 2021-03-09 2021-03-08 19:24:31
## 3718 52703 2021-03-04 2021-03-04 10:51:54
## 3719 51480 2021-03-05 2021-03-05 07:43:43
## 3720 51480 2021-03-05 2021-03-05 07:43:43
## 3721 37349 2021-03-08 2021-03-07 21:18:38
## 3722 52113 2021-03-04 2021-03-04 17:20:19
## 3723 3486 2021-03-10 2021-03-10 13:31:10
## 3724 50771 2021-03-05 2021-03-05 14:19:25
## 3725 50771 2021-03-05 2021-03-05 14:19:25
## 3726 50771 2021-03-05 2021-03-05 14:19:25
## 3727 50771 2021-03-05 2021-03-05 14:19:25
## 3728 18104 2021-03-08 2021-03-08 15:07:20
## 3729 33211 2021-03-08 2021-03-07 22:20:25
## 3730 49742 2021-03-06 2021-03-06 04:53:27
## 3731 3926 2021-03-10 2021-03-10 11:57:57
## 3732 3322 2021-03-10 2021-03-10 14:15:47
## 3733 47669 2021-03-07 2021-03-07 09:17:55
## 3734 47403 2021-03-07 2021-03-07 10:34:17
## 3735 21554 2021-03-08 2021-03-08 11:11:40
## 3736 21554 2021-03-08 2021-03-08 11:11:40
## 3737 41410 2021-03-08 2021-03-07 20:48:45
## 3738 20624 2021-03-08 2021-03-08 12:21:03
## 3739 42227 2021-03-08 2021-03-07 20:44:04
## 3740 50832 2021-03-05 2021-03-05 14:00:15
## 3741 50832 2021-03-05 2021-03-05 14:00:15
## 3742 18148 2021-03-08 2021-03-08 15:03:38
## 3743 47262 2021-03-07 2021-03-07 11:26:56
## 3744 37938 2021-03-08 2021-03-07 21:11:51
## 3745 2395 2021-03-11 2021-03-10 21:19:44
## 3746 27760 2021-03-08 2021-03-08 03:50:52
## 3747 12784 2021-03-09 2021-03-09 02:56:52
## 3748 12784 2021-03-09 2021-03-09 02:56:52
## 3749 7073 2021-03-10 2021-03-09 19:41:14
## 3750 14691 2021-03-09 2021-03-08 20:06:53
## 3751 25101 2021-03-08 2021-03-08 07:19:43
## 3752 2885 2021-03-10 2021-03-10 17:27:18
## 3753 48091 2021-03-07 2021-03-07 06:17:17
## 3754 4437 2021-03-10 2021-03-10 09:50:44
## 3755 10298 2021-03-09 2021-03-09 11:49:27
## 3756 10298 2021-03-09 2021-03-09 11:49:27
## 3757 31963 2021-03-08 2021-03-07 23:06:31
## 3758 45456 2021-03-08 2021-03-07 20:06:45
## 3759 22437 2021-03-08 2021-03-08 10:13:11
## 3760 27081 2021-03-08 2021-03-08 04:41:48
## 3761 3881 2021-03-10 2021-03-10 12:06:05
## 3762 3881 2021-03-10 2021-03-10 12:06:05
## 3763 3881 2021-03-10 2021-03-10 12:06:05
## 3764 3881 2021-03-10 2021-03-10 12:06:05
487
## 3765 33261 2021-03-08 2021-03-07 22:19:06
## 3766 3458 2021-03-10 2021-03-10 13:37:52
## 3767 11669 2021-03-09 2021-03-09 07:22:28
## 3768 6085 2021-03-10 2021-03-10 01:47:00
## 3769 13055 2021-03-09 2021-03-09 02:20:36
## 3770 32651 2021-03-08 2021-03-07 22:38:39
## 3771 23229 2021-03-08 2021-03-08 09:23:26
## 3772 8274 2021-03-09 2021-03-09 15:16:43
## 3773 760 2021-03-11 2021-03-11 10:51:46
## 3774 28555 2021-03-08 2021-03-08 02:20:52
## 3775 43724 2021-03-08 2021-03-07 20:29:58
## 3776 29013 2021-03-08 2021-03-08 01:46:13
## 3777 9758 2021-03-09 2021-03-09 13:02:14
## 3778 50263 2021-03-06 2021-03-05 19:01:24
## 3779 50263 2021-03-06 2021-03-05 19:01:24
## 3780 50263 2021-03-06 2021-03-05 19:01:24
## 3781 48124 2021-03-07 2021-03-07 06:06:45
## 3782 2529 2021-03-11 2021-03-10 20:04:17
## 3783 14897 2021-03-09 2021-03-08 19:36:18
## 3784 2939 2021-03-10 2021-03-10 17:05:26
## 3785 2939 2021-03-10 2021-03-10 17:05:26
## 3786 28145 2021-03-08 2021-03-08 03:04:17
## 3787 46491 2021-03-07 2021-03-07 16:17:25
## 3788 31091 2021-03-08 2021-03-07 23:45:04
## 3789 31091 2021-03-08 2021-03-07 23:45:04
## 3790 6621 2021-03-10 2021-03-09 22:19:05
## 3791 1957 2021-03-11 2021-03-11 03:42:28
## 3792 1957 2021-03-11 2021-03-11 03:42:28
## 3793 1957 2021-03-11 2021-03-11 03:42:28
## 3794 36899 2021-03-08 2021-03-07 21:23:35
## 3795 10758 2021-03-09 2021-03-09 10:25:35
## 3796 50257 2021-03-06 2021-03-05 19:03:19
## 3797 50257 2021-03-06 2021-03-05 19:03:19
## 3798 50257 2021-03-06 2021-03-05 19:03:19
## 3799 28675 2021-03-08 2021-03-08 02:11:10
## 3800 37453 2021-03-08 2021-03-07 21:17:01
## 3801 37453 2021-03-08 2021-03-07 21:17:01
## 3802 37453 2021-03-08 2021-03-07 21:17:01
## 3803 21444 2021-03-08 2021-03-08 11:20:15
## 3804 49390 2021-03-06 2021-03-06 10:51:52
## 3805 50027 2021-03-06 2021-03-05 22:15:08
## 3806 5652 2021-03-10 2021-03-10 04:26:09
## 3807 8336 2021-03-09 2021-03-09 15:10:23
## 3808 8336 2021-03-09 2021-03-09 15:10:23
## 3809 7350 2021-03-09 2021-03-09 18:15:30
## 3810 17340 2021-03-08 2021-03-08 16:19:01
## 3811 17340 2021-03-08 2021-03-08 16:19:01
## 3812 17340 2021-03-08 2021-03-08 16:19:01
## 3813 26950 2021-03-08 2021-03-08 04:51:27
## 3814 7580 2021-03-09 2021-03-09 17:21:15
## 3815 7580 2021-03-09 2021-03-09 17:21:15
## 3816 28172 2021-03-08 2021-03-08 02:58:58
## 3817 5583 2021-03-10 2021-03-10 04:57:05
## 3818 5583 2021-03-10 2021-03-10 04:57:05
488
## 3819 18504 2021-03-08 2021-03-08 14:35:22
## 3820 7316 2021-03-09 2021-03-09 18:26:10
## 3821 7316 2021-03-09 2021-03-09 18:26:10
## 3822 7316 2021-03-09 2021-03-09 18:26:10
## 3823 29485 2021-03-08 2021-03-08 01:13:05
## 3824 29485 2021-03-08 2021-03-08 01:13:05
## 3825 29407 2021-03-08 2021-03-08 01:17:34
## 3826 6746 2021-03-10 2021-03-09 21:37:24
## 3827 33056 2021-03-08 2021-03-07 22:25:13
## 3828 11656 2021-03-09 2021-03-09 07:24:13
## 3829 11656 2021-03-09 2021-03-09 07:24:13
## 3830 31904 2021-03-08 2021-03-07 23:09:01
## 3831 1804 2021-03-11 2021-03-11 05:04:43
## 3832 1893 2021-03-11 2021-03-11 04:23:29
## 3833 8057 2021-03-09 2021-03-09 15:50:40
## 3834 11911 2021-03-09 2021-03-09 06:40:41
## 3835 11911 2021-03-09 2021-03-09 06:40:41
## 3836 37081 2021-03-08 2021-03-07 21:21:36
## 3837 29242 2021-03-08 2021-03-08 01:30:08
## 3838 29242 2021-03-08 2021-03-08 01:30:08
## 3839 1019 2021-03-11 2021-03-11 09:18:21
## 3840 2260 2021-03-11 2021-03-10 23:01:55
## 3841 2260 2021-03-11 2021-03-10 23:01:55
## 3842 2260 2021-03-11 2021-03-10 23:01:55
## 3843 2969 2021-03-10 2021-03-10 16:50:51
## 3844 2969 2021-03-10 2021-03-10 16:50:51
## 3845 2969 2021-03-10 2021-03-10 16:50:51
## 3846 2969 2021-03-10 2021-03-10 16:50:51
## 3847 45916 2021-03-08 2021-03-07 19:35:55
## 3848 42454 2021-03-08 2021-03-07 20:41:45
## 3849 42816 2021-03-08 2021-03-07 20:37:29
## 3850 12280 2021-03-09 2021-03-09 04:27:49
## 3851 14653 2021-03-09 2021-03-08 20:13:35
## 3852 14653 2021-03-09 2021-03-08 20:13:35
## 3853 14243 2021-03-09 2021-03-08 21:15:59
## 3854 14243 2021-03-09 2021-03-08 21:15:59
## 3855 7794 2021-03-09 2021-03-09 16:39:52
## 3856 47410 2021-03-07 2021-03-07 10:33:04
## 3857 20756 2021-03-08 2021-03-08 12:11:03
## 3858 2741 2021-03-10 2021-03-10 18:32:27
## 3859 47643 2021-03-07 2021-03-07 09:26:36
## 3860 28402 2021-03-08 2021-03-08 02:33:49
## 3861 28402 2021-03-08 2021-03-08 02:33:49
## 3862 28402 2021-03-08 2021-03-08 02:33:49
## 3863 14207 2021-03-09 2021-03-08 21:22:05
## 3864 32677 2021-03-08 2021-03-07 22:38:02
## 3865 6277 2021-03-10 2021-03-10 00:21:55
## 3866 6277 2021-03-10 2021-03-10 00:21:55
## 3867 6277 2021-03-10 2021-03-10 00:21:55
## 3868 1996 2021-03-11 2021-03-11 03:17:52
## 3869 1996 2021-03-11 2021-03-11 03:17:52
## 3870 1996 2021-03-11 2021-03-11 03:17:52
## 3871 1477 2021-03-11 2021-03-11 07:09:20
## 3872 4505 2021-03-10 2021-03-10 09:35:37
489
## 3873 12601 2021-03-09 2021-03-09 03:16:47
## 3874 13787 2021-03-09 2021-03-08 22:55:17
## 3875 10731 2021-03-09 2021-03-09 10:30:00
## 3876 16313 2021-03-08 2021-03-08 17:19:31
## 3877 6111 2021-03-10 2021-03-10 01:39:16
## 3878 7593 2021-03-09 2021-03-09 17:18:57
## 3879 3209 2021-03-10 2021-03-10 15:04:45
## 3880 3209 2021-03-10 2021-03-10 15:04:45
## 3881 3209 2021-03-10 2021-03-10 15:04:45
## 3882 3209 2021-03-10 2021-03-10 15:04:45
## 3883 3209 2021-03-10 2021-03-10 15:04:45
## 3884 23414 2021-03-08 2021-03-08 09:12:16
## 3885 42694 2021-03-08 2021-03-07 20:39:05
## 3886 48968 2021-03-06 2021-03-06 16:11:24
## 3887 48968 2021-03-06 2021-03-06 16:11:24
## 3888 9803 2021-03-09 2021-03-09 12:56:57
## 3889 14997 2021-03-09 2021-03-08 19:19:35
## 3890 14997 2021-03-09 2021-03-08 19:19:35
## 3891 2923 2021-03-10 2021-03-10 17:12:40
## 3892 2923 2021-03-10 2021-03-10 17:12:40
## 3893 613 2021-03-11 2021-03-11 12:10:53
## 3894 613 2021-03-11 2021-03-11 12:10:53
## 3895 12951 2021-03-09 2021-03-09 02:34:49
## 3896 43134 2021-03-08 2021-03-07 20:34:23
## 3897 43134 2021-03-08 2021-03-07 20:34:23
## 3898 43134 2021-03-08 2021-03-07 20:34:23
## 3899 43134 2021-03-08 2021-03-07 20:34:23
## 3900 43134 2021-03-08 2021-03-07 20:34:23
## 3901 43134 2021-03-08 2021-03-07 20:34:23
## 3902 43134 2021-03-08 2021-03-07 20:34:23
## 3903 43134 2021-03-08 2021-03-07 20:34:23
## 3904 8342 2021-03-09 2021-03-09 15:09:35
## 3905 31655 2021-03-08 2021-03-07 23:18:37
## 3906 22771 2021-03-08 2021-03-08 09:52:22
## 3907 24440 2021-03-08 2021-03-08 08:05:37
## 3908 12386 2021-03-09 2021-03-09 03:47:32
## 3909 12386 2021-03-09 2021-03-09 03:47:32
## 3910 13072 2021-03-09 2021-03-09 02:18:08
## 3911 50046 2021-03-06 2021-03-05 21:53:58
## 3912 50046 2021-03-06 2021-03-05 21:53:58
## 3913 50046 2021-03-06 2021-03-05 21:53:58
## 3914 50046 2021-03-06 2021-03-05 21:53:58
## 3915 29264 2021-03-08 2021-03-08 01:28:34
## 3916 29264 2021-03-08 2021-03-08 01:28:34
## 3917 29264 2021-03-08 2021-03-08 01:28:34
## 3918 31844 2021-03-08 2021-03-07 23:11:01
## 3919 49931 2021-03-06 2021-03-05 23:55:54
## 3920 49931 2021-03-06 2021-03-05 23:55:54
## 3921 5517 2021-03-10 2021-03-10 05:12:57
## 3922 48581 2021-03-07 2021-03-06 23:14:50
## 3923 48581 2021-03-07 2021-03-06 23:14:50
## 3924 48581 2021-03-07 2021-03-06 23:14:50
## 3925 7831 2021-03-09 2021-03-09 16:33:13
## 3926 25602 2021-03-08 2021-03-08 06:42:11
490
## 3927 22925 2021-03-08 2021-03-08 09:41:13
## 3928 4198 2021-03-10 2021-03-10 10:51:11
## 3929 4198 2021-03-10 2021-03-10 10:51:11
## 3930 11908 2021-03-09 2021-03-09 06:41:02
## 3931 28483 2021-03-08 2021-03-08 02:26:48
## 3932 36199 2021-03-08 2021-03-07 21:32:01
## 3933 36199 2021-03-08 2021-03-07 21:32:01
## 3934 6252 2021-03-10 2021-03-10 00:31:18
## 3935 6252 2021-03-10 2021-03-10 00:31:18
## 3936 6252 2021-03-10 2021-03-10 00:31:18
## 3937 4047 2021-03-10 2021-03-10 11:27:36
## 3938 18432 2021-03-08 2021-03-08 14:40:53
## 3939 18432 2021-03-08 2021-03-08 14:40:53
## 3940 15293 2021-03-08 2021-03-08 18:46:28
## 3941 15293 2021-03-08 2021-03-08 18:46:28
## 3942 25998 2021-03-08 2021-03-08 06:10:57
## 3943 49736 2021-03-06 2021-03-06 05:00:06
## 3944 24240 2021-03-08 2021-03-08 08:19:03
## 3945 24240 2021-03-08 2021-03-08 08:19:03
## 3946 24240 2021-03-08 2021-03-08 08:19:03
## 3947 4866 2021-03-10 2021-03-10 08:23:21
## 3948 32743 2021-03-08 2021-03-07 22:35:28
## 3949 16003 2021-03-08 2021-03-08 17:42:37
## 3950 5275 2021-03-10 2021-03-10 06:48:23
## 3951 31297 2021-03-08 2021-03-07 23:34:05
## 3952 11004 2021-03-09 2021-03-09 09:40:30
## 3953 23105 2021-03-08 2021-03-08 09:30:39
## 3954 23105 2021-03-08 2021-03-08 09:30:39
## 3955 29645 2021-03-08 2021-03-08 01:00:12
## 3956 45170 2021-03-08 2021-03-07 20:12:54
## 3957 19487 2021-03-08 2021-03-08 13:39:06
## 3958 6651 2021-03-10 2021-03-09 22:10:07
## 3959 6651 2021-03-10 2021-03-09 22:10:07
## 3960 5345 2021-03-10 2021-03-10 06:18:36
## 3961 5345 2021-03-10 2021-03-10 06:18:36
## 3962 19369 2021-03-08 2021-03-08 13:45:13
## 3963 14899 2021-03-09 2021-03-08 19:36:15
## 3964 14899 2021-03-09 2021-03-08 19:36:15
## 3965 40050 2021-03-08 2021-03-07 20:57:30
## 3966 51808 2021-03-05 2021-03-04 23:27:32
## 3967 4486 2021-03-10 2021-03-10 09:40:47
## 3968 34234 2021-03-08 2021-03-07 21:58:42
## 3969 34234 2021-03-08 2021-03-07 21:58:42
## 3970 48937 2021-03-06 2021-03-06 16:45:28
## 3971 48937 2021-03-06 2021-03-06 16:45:28
## 3972 48937 2021-03-06 2021-03-06 16:45:28
## 3973 43122 2021-03-08 2021-03-07 20:34:28
## 3974 47107 2021-03-07 2021-03-07 12:11:42
## 3975 47107 2021-03-07 2021-03-07 12:11:42
## 3976 3009 2021-03-10 2021-03-10 16:31:33
## 3977 50761 2021-03-05 2021-03-05 14:23:18
## 3978 27135 2021-03-08 2021-03-08 04:37:54
## 3979 13377 2021-03-09 2021-03-09 00:59:43
## 3980 26452 2021-03-08 2021-03-08 05:33:37
491
## 3981 26452 2021-03-08 2021-03-08 05:33:37
## 3982 52208 2021-03-04 2021-03-04 16:01:30
## 3983 52208 2021-03-04 2021-03-04 16:01:30
## 3984 52208 2021-03-04 2021-03-04 16:01:30
## 3985 47741 2021-03-07 2021-03-07 08:54:01
## 3986 34437 2021-03-08 2021-03-07 21:55:13
## 3987 37709 2021-03-08 2021-03-07 21:13:48
## 3988 3144 2021-03-10 2021-03-10 15:39:27
## 3989 11855 2021-03-09 2021-03-09 06:50:16
## 3990 198 2021-03-11 2021-03-11 16:56:01
## 3991 198 2021-03-11 2021-03-11 16:56:01
## 3992 198 2021-03-11 2021-03-11 16:56:01
## 3993 198 2021-03-11 2021-03-11 16:56:01
## 3994 39822 2021-03-08 2021-03-07 20:59:11
## 3995 10371 2021-03-09 2021-03-09 11:38:23
## 3996 518 2021-03-11 2021-03-11 13:02:43
## 3997 518 2021-03-11 2021-03-11 13:02:43
## 3998 518 2021-03-11 2021-03-11 13:02:43
## 3999 14948 2021-03-09 2021-03-08 19:27:22
## 4000 31839 2021-03-08 2021-03-07 23:11:09
## 4001 31839 2021-03-08 2021-03-07 23:11:09
## 4002 31839 2021-03-08 2021-03-07 23:11:09
## 4003 24119 2021-03-08 2021-03-08 08:26:24
## 4004 24119 2021-03-08 2021-03-08 08:26:24
## 4005 28048 2021-03-08 2021-03-08 03:27:15
## 4006 15486 2021-03-08 2021-03-08 18:23:58
## 4007 48412 2021-03-07 2021-03-07 03:07:16
## 4008 48412 2021-03-07 2021-03-07 03:07:16
## 4009 48412 2021-03-07 2021-03-07 03:07:16
## 4010 9037 2021-03-09 2021-03-09 14:07:20
## 4011 9037 2021-03-09 2021-03-09 14:07:20
## 4012 3922 2021-03-10 2021-03-10 11:59:00
## 4013 4926 2021-03-10 2021-03-10 08:10:31
## 4014 4926 2021-03-10 2021-03-10 08:10:31
## 4015 18325 2021-03-08 2021-03-08 14:49:04
## 4016 18325 2021-03-08 2021-03-08 14:49:04
## 4017 2577 2021-03-11 2021-03-10 19:35:17
## 4018 2577 2021-03-11 2021-03-10 19:35:17
## 4019 6137 2021-03-10 2021-03-10 01:24:21
## 4020 3428 2021-03-10 2021-03-10 13:43:59
## 4021 1585 2021-03-11 2021-03-11 06:37:22
## 4022 24699 2021-03-08 2021-03-08 07:46:13
## 4023 26566 2021-03-08 2021-03-08 05:24:18
## 4024 26566 2021-03-08 2021-03-08 05:24:18
## 4025 7124 2021-03-10 2021-03-09 19:18:00
## 4026 2798 2021-03-10 2021-03-10 18:07:05
## 4027 2798 2021-03-10 2021-03-10 18:07:05
## 4028 47315 2021-03-07 2021-03-07 11:07:34
## 4029 47315 2021-03-07 2021-03-07 11:07:34
## 4030 33999 2021-03-08 2021-03-07 22:01:54
## 4031 5297 2021-03-10 2021-03-10 06:42:26
## 4032 19977 2021-03-08 2021-03-08 13:11:03
## 4033 19977 2021-03-08 2021-03-08 13:11:03
## 4034 5842 2021-03-10 2021-03-10 03:14:34
492
## 4035 44539 2021-03-08 2021-03-07 20:21:18
## 4036 49459 2021-03-06 2021-03-06 09:54:54
## 4037 22416 2021-03-08 2021-03-08 10:14:27
## 4038 22416 2021-03-08 2021-03-08 10:14:27
## 4039 22416 2021-03-08 2021-03-08 10:14:27
## 4040 22416 2021-03-08 2021-03-08 10:14:27
## 4041 22416 2021-03-08 2021-03-08 10:14:27
## 4042 27060 2021-03-08 2021-03-08 04:43:31
## 4043 27060 2021-03-08 2021-03-08 04:43:31
## 4044 27823 2021-03-08 2021-03-08 03:46:04
## 4045 51675 2021-03-05 2021-03-05 03:42:15
## 4046 5012 2021-03-10 2021-03-10 07:56:32
## 4047 5012 2021-03-10 2021-03-10 07:56:32
## 4048 18120 2021-03-08 2021-03-08 15:06:14
## 4049 10270 2021-03-09 2021-03-09 11:54:21
## 4050 27710 2021-03-08 2021-03-08 03:54:41
## 4051 6166 2021-03-10 2021-03-10 01:12:05
## 4052 6166 2021-03-10 2021-03-10 01:12:05
## 4053 6166 2021-03-10 2021-03-10 01:12:05
## 4054 6166 2021-03-10 2021-03-10 01:12:05
## 4055 6166 2021-03-10 2021-03-10 01:12:05
## 4056 22849 2021-03-08 2021-03-08 09:46:12
## 4057 22849 2021-03-08 2021-03-08 09:46:12
## 4058 22849 2021-03-08 2021-03-08 09:46:12
## 4059 49253 2021-03-06 2021-03-06 12:29:07
## 4060 49253 2021-03-06 2021-03-06 12:29:07
## 4061 21957 2021-03-08 2021-03-08 10:45:24
## 4062 32750 2021-03-08 2021-03-07 22:35:23
## 4063 51124 2021-03-05 2021-03-05 12:09:32
## 4064 51124 2021-03-05 2021-03-05 12:09:32
## 4065 25642 2021-03-08 2021-03-08 06:38:41
## 4066 43714 2021-03-08 2021-03-07 20:30:08
## 4067 48116 2021-03-07 2021-03-07 06:07:43
## 4068 10563 2021-03-09 2021-03-09 11:01:28
## 4069 25233 2021-03-08 2021-03-08 07:10:02
## 4070 25233 2021-03-08 2021-03-08 07:10:02
## 4071 9193 2021-03-09 2021-03-09 13:54:05
## 4072 1837 2021-03-11 2021-03-11 04:53:41
## 4073 46561 2021-03-07 2021-03-07 15:46:33
## 4074 1958 2021-03-11 2021-03-11 03:41:07
## 4075 34837 2021-03-08 2021-03-07 21:48:43
## 4076 49785 2021-03-06 2021-03-06 04:10:20
## 4077 52076 2021-03-04 2021-03-04 17:42:54
## 4078 52076 2021-03-04 2021-03-04 17:42:54
## 4079 3196 2021-03-10 2021-03-10 15:09:45
## 4080 2826 2021-03-10 2021-03-10 17:57:37
## 4081 2681 2021-03-10 2021-03-10 18:54:57
## 4082 16074 2021-03-08 2021-03-08 17:36:58
## 4083 16898 2021-03-08 2021-03-08 16:45:45
## 4084 8423 2021-03-09 2021-03-09 15:00:32
## 4085 8423 2021-03-09 2021-03-09 15:00:32
## 4086 8423 2021-03-09 2021-03-09 15:00:32
## 4087 10534 2021-03-09 2021-03-09 11:06:45
## 4088 10534 2021-03-09 2021-03-09 11:06:45
493
## 4089 10534 2021-03-09 2021-03-09 11:06:45
## 4090 20776 2021-03-08 2021-03-08 12:08:29
## 4091 20776 2021-03-08 2021-03-08 12:08:29
## 4092 14593 2021-03-09 2021-03-08 20:20:40
## 4093 12505 2021-03-09 2021-03-09 03:27:44
## 4094 32076 2021-03-08 2021-03-07 23:02:02
## 4095 7868 2021-03-09 2021-03-09 16:25:15
## 4096 41980 2021-03-08 2021-03-07 20:45:35
## 4097 49799 2021-03-06 2021-03-06 03:59:15
## 4098 49799 2021-03-06 2021-03-06 03:59:15
## 4099 49799 2021-03-06 2021-03-06 03:59:15
## 4100 2243 2021-03-11 2021-03-10 23:14:55
## 4101 28478 2021-03-08 2021-03-08 02:27:14
## 4102 30190 2021-03-08 2021-03-08 00:27:30
## 4103 50707 2021-03-05 2021-03-05 14:44:47
## 4104 50707 2021-03-05 2021-03-05 14:44:47
## 4105 586 2021-03-11 2021-03-11 12:24:26
## 4106 586 2021-03-11 2021-03-11 12:24:26
## 4107 586 2021-03-11 2021-03-11 12:24:26
## 4108 15002 2021-03-09 2021-03-08 19:19:09
## 4109 35538 2021-03-08 2021-03-07 21:39:59
## 4110 41819 2021-03-08 2021-03-07 20:46:32
## 4111 41819 2021-03-08 2021-03-07 20:46:32
## 4112 9339 2021-03-09 2021-03-09 13:42:05
## 4113 17701 2021-03-08 2021-03-08 15:50:23
## 4114 21250 2021-03-08 2021-03-08 11:32:00
## 4115 20437 2021-03-08 2021-03-08 12:35:11
## 4116 31063 2021-03-08 2021-03-07 23:46:18
## 4117 7662 2021-03-09 2021-03-09 17:05:41
## 4118 24872 2021-03-08 2021-03-08 07:35:04
## 4119 21197 2021-03-08 2021-03-08 11:35:00
## 4120 30870 2021-03-08 2021-03-07 23:53:46
## 4121 910 2021-03-11 2021-03-11 09:54:46
## 4122 8851 2021-03-09 2021-03-09 14:19:38
## 4123 8851 2021-03-09 2021-03-09 14:19:38
## 4124 8851 2021-03-09 2021-03-09 14:19:38
## 4125 30002 2021-03-08 2021-03-08 00:39:41
## 4126 35032 2021-03-08 2021-03-07 21:46:10
## 4127 2745 2021-03-10 2021-03-10 18:31:06
## 4128 2745 2021-03-10 2021-03-10 18:31:06
## 4129 14664 2021-03-09 2021-03-08 20:11:20
## 4130 14664 2021-03-09 2021-03-08 20:11:20
## 4131 14664 2021-03-09 2021-03-08 20:11:20
## 4132 52539 2021-03-04 2021-03-04 12:44:25
## 4133 52539 2021-03-04 2021-03-04 12:44:25
## 4134 25707 2021-03-08 2021-03-08 06:33:54
## 4135 19153 2021-03-08 2021-03-08 13:56:11
## 4136 19153 2021-03-08 2021-03-08 13:56:11
## 4137 9769 2021-03-09 2021-03-09 13:00:45
## 4138 40026 2021-03-08 2021-03-07 20:57:43
## 4139 41193 2021-03-08 2021-03-07 20:50:07
## 4140 21005 2021-03-08 2021-03-08 11:49:17
## 4141 21005 2021-03-08 2021-03-08 11:49:17
## 4142 5443 2021-03-10 2021-03-10 05:31:34
494
## 4143 5443 2021-03-10 2021-03-10 05:31:34
## 4144 45600 2021-03-08 2021-03-07 20:03:54
## 4145 40882 2021-03-08 2021-03-07 20:52:15
## 4146 40882 2021-03-08 2021-03-07 20:52:15
## 4147 40882 2021-03-08 2021-03-07 20:52:15
## 4148 40882 2021-03-08 2021-03-07 20:52:15
## 4149 40882 2021-03-08 2021-03-07 20:52:15
## 4150 9287 2021-03-09 2021-03-09 13:45:57
## 4151 9287 2021-03-09 2021-03-09 13:45:57
## 4152 51490 2021-03-05 2021-03-05 07:35:14
## 4153 5022 2021-03-10 2021-03-10 07:53:51
## 4154 3159 2021-03-10 2021-03-10 15:29:27
## 4155 47609 2021-03-07 2021-03-07 09:37:57
## 4156 41431 2021-03-08 2021-03-07 20:48:39
## 4157 12546 2021-03-09 2021-03-09 03:23:31
## 4158 51788 2021-03-05 2021-03-05 00:11:52
## 4159 51788 2021-03-05 2021-03-05 00:11:52
## 4160 32117 2021-03-08 2021-03-07 23:00:18
## 4161 32117 2021-03-08 2021-03-07 23:00:18
## 4162 26506 2021-03-08 2021-03-08 05:29:04
## 4163 41265 2021-03-08 2021-03-07 20:49:37
## 4164 21120 2021-03-08 2021-03-08 11:40:26
## 4165 47583 2021-03-07 2021-03-07 09:44:10
## 4166 5528 2021-03-10 2021-03-10 05:10:42
## 4167 12041 2021-03-09 2021-03-09 06:12:48
## 4168 12041 2021-03-09 2021-03-09 06:12:48
## 4169 8691 2021-03-09 2021-03-09 14:32:05
## 4170 8691 2021-03-09 2021-03-09 14:32:05
## 4171 8691 2021-03-09 2021-03-09 14:32:05
## 4172 47031 2021-03-07 2021-03-07 12:43:36
## 4173 47031 2021-03-07 2021-03-07 12:43:36
## 4174 47031 2021-03-07 2021-03-07 12:43:36
## 4175 2877 2021-03-10 2021-03-10 17:30:45
## 4176 2877 2021-03-10 2021-03-10 17:30:45
## 4177 4349 2021-03-10 2021-03-10 10:14:16
## 4178 4349 2021-03-10 2021-03-10 10:14:16
## 4179 7653 2021-03-09 2021-03-09 17:07:05
## 4180 7653 2021-03-09 2021-03-09 17:07:05
## 4181 27478 2021-03-08 2021-03-08 04:14:41
## 4182 47412 2021-03-07 2021-03-07 10:32:13
## 4183 41937 2021-03-08 2021-03-07 20:45:50
## 4184 41937 2021-03-08 2021-03-07 20:45:50
## 4185 41937 2021-03-08 2021-03-07 20:45:50
## 4186 41937 2021-03-08 2021-03-07 20:45:50
## 4187 41937 2021-03-08 2021-03-07 20:45:50
## 4188 25006 2021-03-08 2021-03-08 07:25:51
## 4189 51297 2021-03-05 2021-03-05 09:58:42
## 4190 51297 2021-03-05 2021-03-05 09:58:42
## 4191 51297 2021-03-05 2021-03-05 09:58:42
## 4192 33856 2021-03-08 2021-03-07 22:04:44
## 4193 34101 2021-03-08 2021-03-07 22:00:30
## 4194 18145 2021-03-08 2021-03-08 15:03:53
## 4195 40624 2021-03-08 2021-03-07 20:54:14
## 4196 40624 2021-03-08 2021-03-07 20:54:14
495
## 4197 44806 2021-03-08 2021-03-07 20:18:29
## 4198 23294 2021-03-08 2021-03-08 09:19:28
## 4199 25804 2021-03-08 2021-03-08 06:25:37
## 4200 25804 2021-03-08 2021-03-08 06:25:37
## 4201 25804 2021-03-08 2021-03-08 06:25:37
## 4202 9402 2021-03-09 2021-03-09 13:37:55
## 4203 6586 2021-03-10 2021-03-09 22:28:45
## 4204 6586 2021-03-10 2021-03-09 22:28:45
## 4205 4049 2021-03-10 2021-03-10 11:27:17
## 4206 23260 2021-03-08 2021-03-08 09:21:59
## 4207 51493 2021-03-05 2021-03-05 07:34:40
## 4208 51493 2021-03-05 2021-03-05 07:34:40
## 4209 51493 2021-03-05 2021-03-05 07:34:40
## 4210 2352 2021-03-11 2021-03-10 21:55:33
## 4211 21779 2021-03-08 2021-03-08 10:57:01
## 4212 13569 2021-03-09 2021-03-08 23:53:00
## 4213 48256 2021-03-07 2021-03-07 05:02:53
## 4214 49836 2021-03-06 2021-03-06 02:45:48
## 4215 49836 2021-03-06 2021-03-06 02:45:48
## 4216 49836 2021-03-06 2021-03-06 02:45:48
## 4217 11881 2021-03-09 2021-03-09 06:45:13
## 4218 8190 2021-03-09 2021-03-09 15:28:49
## 4219 12543 2021-03-09 2021-03-09 03:23:52
## 4220 933 2021-03-11 2021-03-11 09:48:27
## 4221 933 2021-03-11 2021-03-11 09:48:27
## 4222 5784 2021-03-10 2021-03-10 03:36:23
## 4223 5784 2021-03-10 2021-03-10 03:36:23
## 4224 20997 2021-03-08 2021-03-08 11:49:32
## 4225 20997 2021-03-08 2021-03-08 11:49:32
## 4226 20997 2021-03-08 2021-03-08 11:49:32
## 4227 20997 2021-03-08 2021-03-08 11:49:32
## 4228 52658 2021-03-04 2021-03-04 11:19:34
## 4229 12396 2021-03-09 2021-03-09 03:43:34
## 4230 12396 2021-03-09 2021-03-09 03:43:34
## 4231 49235 2021-03-06 2021-03-06 12:39:33
## 4232 3248 2021-03-10 2021-03-10 14:49:12
## 4233 48751 2021-03-07 2021-03-06 19:23:37
## 4234 20452 2021-03-08 2021-03-08 12:33:58
## 4235 29236 2021-03-08 2021-03-08 01:30:41
## 4236 29236 2021-03-08 2021-03-08 01:30:41
## 4237 42194 2021-03-08 2021-03-07 20:44:21
## 4238 2072 2021-03-11 2021-03-11 02:07:06
## 4239 50663 2021-03-05 2021-03-05 15:19:45
## 4240 48343 2021-03-07 2021-03-07 04:15:15
## 4241 4171 2021-03-10 2021-03-10 10:58:30
## 4242 20584 2021-03-08 2021-03-08 12:23:54
## 4243 30477 2021-03-08 2021-03-08 00:11:38
## 4244 30477 2021-03-08 2021-03-08 00:11:38
## 4245 30477 2021-03-08 2021-03-08 00:11:38
## 4246 30477 2021-03-08 2021-03-08 00:11:38
## 4247 30477 2021-03-08 2021-03-08 00:11:38
## 4248 37131 2021-03-08 2021-03-07 21:21:05
## 4249 33870 2021-03-08 2021-03-07 22:04:23
## 4250 24388 2021-03-08 2021-03-08 08:09:00
496
## 4251 24388 2021-03-08 2021-03-08 08:09:00
## 4252 24388 2021-03-08 2021-03-08 08:09:00
## 4253 14448 2021-03-09 2021-03-08 20:42:09
## 4254 14252 2021-03-09 2021-03-08 21:14:48
## 4255 52218 2021-03-04 2021-03-04 15:58:23
## 4256 13367 2021-03-09 2021-03-09 01:04:16
## 4257 13367 2021-03-09 2021-03-09 01:04:16
## 4258 13367 2021-03-09 2021-03-09 01:04:16
## 4259 24138 2021-03-08 2021-03-08 08:25:15
## 4260 17825 2021-03-08 2021-03-08 15:36:47
## 4261 17825 2021-03-08 2021-03-08 15:36:47
## 4262 6158 2021-03-10 2021-03-10 01:16:55
## 4263 28433 2021-03-08 2021-03-08 02:31:07
## 4264 32757 2021-03-08 2021-03-07 22:35:14
## 4265 32757 2021-03-08 2021-03-07 22:35:14
## 4266 11482 2021-03-09 2021-03-09 07:56:13
## 4267 11482 2021-03-09 2021-03-09 07:56:13
## 4268 21552 2021-03-08 2021-03-08 11:11:45
## 4269 5243 2021-03-10 2021-03-10 06:55:24
## 4270 47398 2021-03-07 2021-03-07 10:35:28
## 4271 10504 2021-03-09 2021-03-09 11:11:47
## 4272 6412 2021-03-10 2021-03-09 23:26:55
## 4273 23493 2021-03-08 2021-03-08 09:07:28
## 4274 23493 2021-03-08 2021-03-08 09:07:28
## 4275 23493 2021-03-08 2021-03-08 09:07:28
## 4276 23410 2021-03-08 2021-03-08 09:12:33
## 4277 17060 2021-03-08 2021-03-08 16:34:40
## 4278 17060 2021-03-08 2021-03-08 16:34:40
## 4279 11040 2021-03-09 2021-03-09 09:32:56
## 4280 23116 2021-03-08 2021-03-08 09:30:11
## 4281 32461 2021-03-08 2021-03-07 22:45:37
## 4282 29575 2021-03-08 2021-03-08 01:05:52
## 4283 29575 2021-03-08 2021-03-08 01:05:52
## 4284 29575 2021-03-08 2021-03-08 01:05:52
## 4285 4945 2021-03-10 2021-03-10 08:06:17
## 4286 23610 2021-03-08 2021-03-08 09:00:06
## 4287 23610 2021-03-08 2021-03-08 09:00:06
## 4288 2841 2021-03-10 2021-03-10 17:49:24
## 4289 29793 2021-03-08 2021-03-08 00:51:36
## 4290 10400 2021-03-09 2021-03-09 11:33:34
## 4291 47384 2021-03-07 2021-03-07 10:40:50
## 4292 47384 2021-03-07 2021-03-07 10:40:50
## 4293 47384 2021-03-07 2021-03-07 10:40:50
## 4294 47384 2021-03-07 2021-03-07 10:40:50
## 4295 47384 2021-03-07 2021-03-07 10:40:50
## 4296 44212 2021-03-08 2021-03-07 20:24:45
## 4297 7340 2021-03-09 2021-03-09 18:19:42
## 4298 38427 2021-03-08 2021-03-07 21:08:32
## 4299 4112 2021-03-10 2021-03-10 11:12:18
## 4300 4112 2021-03-10 2021-03-10 11:12:18
## 4301 27903 2021-03-08 2021-03-08 03:40:29
## 4302 24798 2021-03-08 2021-03-08 07:38:27
## 4303 24798 2021-03-08 2021-03-08 07:38:27
## 4304 17556 2021-03-08 2021-03-08 16:05:08
497
## 4305 28883 2021-03-08 2021-03-08 01:57:33
## 4306 28883 2021-03-08 2021-03-08 01:57:33
## 4307 28883 2021-03-08 2021-03-08 01:57:33
## 4308 31953 2021-03-08 2021-03-07 23:06:55
## 4309 12963 2021-03-09 2021-03-09 02:32:49
## 4310 30639 2021-03-08 2021-03-08 00:04:10
## 4311 30639 2021-03-08 2021-03-08 00:04:10
## 4312 1131 2021-03-11 2021-03-11 08:43:05
## 4313 50606 2021-03-05 2021-03-05 15:51:14
## 4314 50606 2021-03-05 2021-03-05 15:51:14
## 4315 8299 2021-03-09 2021-03-09 15:13:57
## 4316 8299 2021-03-09 2021-03-09 15:13:57
## 4317 23365 2021-03-08 2021-03-08 09:14:55
## 4318 23365 2021-03-08 2021-03-08 09:14:55
## 4319 11847 2021-03-09 2021-03-09 06:51:18
## 4320 27836 2021-03-08 2021-03-08 03:45:09
## 4321 10519 2021-03-09 2021-03-09 11:09:33
## 4322 10519 2021-03-09 2021-03-09 11:09:33
## 4323 10519 2021-03-09 2021-03-09 11:09:33
## 4324 5979 2021-03-10 2021-03-10 02:31:53
## 4325 5979 2021-03-10 2021-03-10 02:31:53
## 4326 49989 2021-03-06 2021-03-05 22:51:40
## 4327 9302 2021-03-09 2021-03-09 13:44:18
## 4328 1983 2021-03-11 2021-03-11 03:25:07
## 4329 1704 2021-03-11 2021-03-11 05:52:45
## 4330 1704 2021-03-11 2021-03-11 05:52:45
## 4331 1704 2021-03-11 2021-03-11 05:52:45
## 4332 1704 2021-03-11 2021-03-11 05:52:45
## 4333 1704 2021-03-11 2021-03-11 05:52:45
## 4334 5274 2021-03-10 2021-03-10 06:48:25
## 4335 5274 2021-03-10 2021-03-10 06:48:25
## 4336 5274 2021-03-10 2021-03-10 06:48:25
## 4337 50948 2021-03-05 2021-03-05 13:05:46
## 4338 22393 2021-03-08 2021-03-08 10:15:57
## 4339 31733 2021-03-08 2021-03-07 23:15:45
## 4340 12334 2021-03-09 2021-03-09 04:09:26
## 4341 11500 2021-03-09 2021-03-09 07:52:40
## 4342 22785 2021-03-08 2021-03-08 09:51:07
## 4343 22785 2021-03-08 2021-03-08 09:51:07
## 4344 22785 2021-03-08 2021-03-08 09:51:07
## 4345 52410 2021-03-04 2021-03-04 13:56:54
## 4346 52410 2021-03-04 2021-03-04 13:56:54
## 4347 48630 2021-03-07 2021-03-06 21:49:13
## 4348 41073 2021-03-08 2021-03-07 20:50:54
## 4349 15026 2021-03-09 2021-03-08 19:15:06
## 4350 2403 2021-03-11 2021-03-10 21:13:24
## 4351 2403 2021-03-11 2021-03-10 21:13:24
## 4352 38400 2021-03-08 2021-03-07 21:08:47
## 4353 24802 2021-03-08 2021-03-08 07:38:00
## 4354 32767 2021-03-08 2021-03-07 22:34:51
## 4355 26052 2021-03-08 2021-03-08 06:06:39
## 4356 26052 2021-03-08 2021-03-08 06:06:39
## 4357 24844 2021-03-08 2021-03-08 07:36:08
## 4358 21660 2021-03-08 2021-03-08 11:04:07
498
## 4359 33672 2021-03-08 2021-03-07 22:07:53
## 4360 33672 2021-03-08 2021-03-07 22:07:53
## 4361 5425 2021-03-10 2021-03-10 05:37:03
## 4362 18623 2021-03-08 2021-03-08 14:27:10
## 4363 21549 2021-03-08 2021-03-08 11:11:53
## 4364 6048 2021-03-10 2021-03-10 02:04:57
## 4365 6048 2021-03-10 2021-03-10 02:04:57
## 4366 6048 2021-03-10 2021-03-10 02:04:57
## 4367 6048 2021-03-10 2021-03-10 02:04:57
## 4368 6048 2021-03-10 2021-03-10 02:04:57
## 4369 6048 2021-03-10 2021-03-10 02:04:57
## 4370 17729 2021-03-08 2021-03-08 15:47:03
## 4371 36488 2021-03-08 2021-03-07 21:28:16
## 4372 36488 2021-03-08 2021-03-07 21:28:16
## 4373 22532 2021-03-08 2021-03-08 10:07:34
## 4374 23878 2021-03-08 2021-03-08 08:42:02
## 4375 26036 2021-03-08 2021-03-08 06:07:38
## 4376 23253 2021-03-08 2021-03-08 09:22:15
## 4377 23798 2021-03-08 2021-03-08 08:48:28
## 4378 49955 2021-03-06 2021-03-05 23:31:16
## 4379 21559 2021-03-08 2021-03-08 11:11:06
## 4380 24810 2021-03-08 2021-03-08 07:37:22
## 4381 37790 2021-03-08 2021-03-07 21:12:56
## 4382 37790 2021-03-08 2021-03-07 21:12:56
## 4383 37790 2021-03-08 2021-03-07 21:12:56
## 4384 37790 2021-03-08 2021-03-07 21:12:56
## 4385 30102 2021-03-08 2021-03-08 00:33:00
## 4386 51927 2021-03-05 2021-03-04 20:28:27
## 4387 51927 2021-03-05 2021-03-04 20:28:27
## 4388 51927 2021-03-05 2021-03-04 20:28:27
## 4389 51927 2021-03-05 2021-03-04 20:28:27
## 4390 24001 2021-03-08 2021-03-08 08:34:19
## 4391 24001 2021-03-08 2021-03-08 08:34:19
## 4392 24001 2021-03-08 2021-03-08 08:34:19
## 4393 10980 2021-03-09 2021-03-09 09:44:06
## 4394 37591 2021-03-08 2021-03-07 21:15:08
## 4395 12158 2021-03-09 2021-03-09 05:23:52
## 4396 12158 2021-03-09 2021-03-09 05:23:52
## 4397 12158 2021-03-09 2021-03-09 05:23:52
## 4398 12158 2021-03-09 2021-03-09 05:23:52
## 4399 12158 2021-03-09 2021-03-09 05:23:52
## 4400 9180 2021-03-09 2021-03-09 13:55:17
## 4401 11287 2021-03-09 2021-03-09 08:30:30
## 4402 24812 2021-03-08 2021-03-08 07:37:06
## 4403 45696 2021-03-08 2021-03-07 20:01:37
## 4404 45696 2021-03-08 2021-03-07 20:01:37
## 4405 24819 2021-03-08 2021-03-08 07:36:55
## 4406 35089 2021-03-08 2021-03-07 21:45:33
## 4407 5520 2021-03-10 2021-03-10 05:12:04
## 4408 31604 2021-03-08 2021-03-07 23:20:43
## 4409 31604 2021-03-08 2021-03-07 23:20:43
## 4410 31604 2021-03-08 2021-03-07 23:20:43
## 4411 1524 2021-03-11 2021-03-11 06:57:59
## 4412 20781 2021-03-08 2021-03-08 12:08:01
499
## 4413 11379 2021-03-09 2021-03-09 08:15:09
## 4414 11379 2021-03-09 2021-03-09 08:15:09
## 4415 32913 2021-03-08 2021-03-07 22:30:13
## 4416 9399 2021-03-09 2021-03-09 13:38:00
## 4417 12030 2021-03-09 2021-03-09 06:15:30
## 4418 32719 2021-03-08 2021-03-07 22:36:19
## 4419 11639 2021-03-09 2021-03-09 07:27:56
## 4420 11639 2021-03-09 2021-03-09 07:27:56
## 4421 18636 2021-03-08 2021-03-08 14:26:17
## 4422 21582 2021-03-08 2021-03-08 11:09:02
## 4423 31124 2021-03-08 2021-03-07 23:43:33
## 4424 49454 2021-03-06 2021-03-06 09:57:52
## 4425 49454 2021-03-06 2021-03-06 09:57:52
## 4426 50344 2021-03-05 2021-03-05 17:56:32
## 4427 25140 2021-03-08 2021-03-08 07:16:18
## 4428 25140 2021-03-08 2021-03-08 07:16:18
## 4429 25140 2021-03-08 2021-03-08 07:16:18
## 4430 11361 2021-03-09 2021-03-09 08:18:09
## 4431 22801 2021-03-08 2021-03-08 09:50:14
## 4432 4994 2021-03-10 2021-03-10 07:59:40
## 4433 19151 2021-03-08 2021-03-08 13:56:14
## 4434 17849 2021-03-08 2021-03-08 15:34:12
## 4435 17849 2021-03-08 2021-03-08 15:34:12
## 4436 17849 2021-03-08 2021-03-08 15:34:12
## 4437 14441 2021-03-09 2021-03-08 20:43:09
## 4438 23774 2021-03-08 2021-03-08 08:50:17
## 4439 23774 2021-03-08 2021-03-08 08:50:17
## 4440 580 2021-03-11 2021-03-11 12:29:16
## 4441 580 2021-03-11 2021-03-11 12:29:16
## 4442 580 2021-03-11 2021-03-11 12:29:16
## 4443 9964 2021-03-09 2021-03-09 12:42:06
## 4444 9964 2021-03-09 2021-03-09 12:42:06
## 4445 22194 2021-03-08 2021-03-08 10:30:01
## 4446 20573 2021-03-08 2021-03-08 12:25:03
## 4447 9166 2021-03-09 2021-03-09 13:57:35
## 4448 7435 2021-03-09 2021-03-09 17:53:36
## 4449 7902 2021-03-09 2021-03-09 16:19:35
## 4450 7902 2021-03-09 2021-03-09 16:19:35
## 4451 7902 2021-03-09 2021-03-09 16:19:35
## 4452 9217 2021-03-09 2021-03-09 13:51:59
## 4453 39281 2021-03-08 2021-03-07 21:02:11
## 4454 1294 2021-03-11 2021-03-11 07:58:08
## 4455 27312 2021-03-08 2021-03-08 04:26:02
## 4456 32754 2021-03-08 2021-03-07 22:35:19
## 4457 13961 2021-03-09 2021-03-08 22:13:26
## 4458 13961 2021-03-09 2021-03-08 22:13:26
## 4459 20600 2021-03-08 2021-03-08 12:22:28
## 4460 22579 2021-03-08 2021-03-08 10:05:06
## 4461 22579 2021-03-08 2021-03-08 10:05:06
## 4462 35654 2021-03-08 2021-03-07 21:38:36
## 4463 49421 2021-03-06 2021-03-06 10:22:21
## 4464 52662 2021-03-04 2021-03-04 11:18:12
## 4465 5568 2021-03-10 2021-03-10 04:59:08
## 4466 51599 2021-03-05 2021-03-05 05:35:58
500
## 4467 22364 2021-03-08 2021-03-08 10:17:50
## 4468 23474 2021-03-08 2021-03-08 09:08:30
## 4469 23474 2021-03-08 2021-03-08 09:08:30
## 4470 5940 2021-03-10 2021-03-10 02:43:06
## 4471 12593 2021-03-09 2021-03-09 03:17:38
## 4472 12593 2021-03-09 2021-03-09 03:17:38
## 4473 80 2021-03-11 2021-03-11 18:16:35
## 4474 28211 2021-03-08 2021-03-08 02:51:40
## 4475 28211 2021-03-08 2021-03-08 02:51:40
## 4476 28211 2021-03-08 2021-03-08 02:51:40
## 4477 28211 2021-03-08 2021-03-08 02:51:40
## 4478 1251 2021-03-11 2021-03-11 08:05:53
## 4479 49086 2021-03-06 2021-03-06 14:38:10
## 4480 49086 2021-03-06 2021-03-06 14:38:10
## 4481 49086 2021-03-06 2021-03-06 14:38:10
## 4482 8134 2021-03-09 2021-03-09 15:36:44
## 4483 49619 2021-03-06 2021-03-06 06:55:25
## 4484 17671 2021-03-08 2021-03-08 15:54:39
## 4485 574 2021-03-11 2021-03-11 12:32:14
## 4486 47199 2021-03-07 2021-03-07 11:45:56
## 4487 20552 2021-03-08 2021-03-08 12:26:48
## 4488 20552 2021-03-08 2021-03-08 12:26:48
## 4489 20552 2021-03-08 2021-03-08 12:26:48
## 4490 20552 2021-03-08 2021-03-08 12:26:48
## 4491 20552 2021-03-08 2021-03-08 12:26:48
## 4492 20552 2021-03-08 2021-03-08 12:26:48
## 4493 20552 2021-03-08 2021-03-08 12:26:48
## 4494 20552 2021-03-08 2021-03-08 12:26:48
## 4495 18964 2021-03-08 2021-03-08 14:05:29
## 4496 14412 2021-03-09 2021-03-08 20:49:09
## 4497 50134 2021-03-06 2021-03-05 20:20:02
## 4498 50134 2021-03-06 2021-03-05 20:20:02
## 4499 50134 2021-03-06 2021-03-05 20:20:02
## 4500 50134 2021-03-06 2021-03-05 20:20:02
## 4501 4318 2021-03-10 2021-03-10 10:22:06
## 4502 30840 2021-03-08 2021-03-07 23:54:58
## 4503 30840 2021-03-08 2021-03-07 23:54:58
## 4504 18718 2021-03-08 2021-03-08 14:19:54
## 4505 18718 2021-03-08 2021-03-08 14:19:54
## 4506 8369 2021-03-09 2021-03-09 15:06:20
## 4507 8369 2021-03-09 2021-03-09 15:06:20
## 4508 10183 2021-03-09 2021-03-09 12:12:13
## 4509 5406 2021-03-10 2021-03-10 05:44:52
## 4510 5406 2021-03-10 2021-03-10 05:44:52
## 4511 21880 2021-03-08 2021-03-08 10:50:12
## 4512 51891 2021-03-05 2021-03-04 21:28:07
## 4513 19358 2021-03-08 2021-03-08 13:46:00
## 4514 7585 2021-03-09 2021-03-09 17:20:36
## 4515 7585 2021-03-09 2021-03-09 17:20:36
## 4516 7585 2021-03-09 2021-03-09 17:20:36
## 4517 7585 2021-03-09 2021-03-09 17:20:36
## 4518 2073 2021-03-11 2021-03-11 02:06:50
## 4519 2073 2021-03-11 2021-03-11 02:06:50
## 4520 2073 2021-03-11 2021-03-11 02:06:50
501
## 4521 25287 2021-03-08 2021-03-08 07:06:05
## 4522 46046 2021-03-07 2021-03-07 18:59:29
## 4523 46046 2021-03-07 2021-03-07 18:59:29
## 4524 9494 2021-03-09 2021-03-09 13:31:40
## 4525 10379 2021-03-09 2021-03-09 11:37:40
## 4526 48772 2021-03-07 2021-03-06 19:03:41
## 4527 48772 2021-03-07 2021-03-06 19:03:41
## 4528 21965 2021-03-08 2021-03-08 10:44:57
## 4529 23255 2021-03-08 2021-03-08 09:22:11
## 4530 26612 2021-03-08 2021-03-08 05:21:15
## 4531 48114 2021-03-07 2021-03-07 06:08:20
## 4532 51219 2021-03-05 2021-03-05 11:09:13
## 4533 48745 2021-03-07 2021-03-06 19:27:39
## 4534 28598 2021-03-08 2021-03-08 02:16:52
## 4535 33474 2021-03-08 2021-03-07 22:12:35
## 4536 33474 2021-03-08 2021-03-07 22:12:35
## 4537 19053 2021-03-08 2021-03-08 14:01:29
## 4538 37144 2021-03-08 2021-03-07 21:20:56
## 4539 4416 2021-03-10 2021-03-10 09:55:29
## 4540 5814 2021-03-10 2021-03-10 03:23:19
## 4541 5814 2021-03-10 2021-03-10 03:23:19
## 4542 19836 2021-03-08 2021-03-08 13:19:19
## 4543 38352 2021-03-08 2021-03-07 21:09:19
## 4544 20494 2021-03-08 2021-03-08 12:30:38
## 4545 2301 2021-03-11 2021-03-10 22:28:56
## 4546 2301 2021-03-11 2021-03-10 22:28:56
## 4547 12712 2021-03-09 2021-03-09 03:06:17
## 4548 6759 2021-03-10 2021-03-09 21:31:05
## 4549 48498 2021-03-07 2021-03-07 00:56:03
## 4550 48498 2021-03-07 2021-03-07 00:56:03
## 4551 18644 2021-03-08 2021-03-08 14:25:40
## 4552 52424 2021-03-04 2021-03-04 13:53:11
## 4553 24857 2021-03-08 2021-03-08 07:35:37
## 4554 24857 2021-03-08 2021-03-08 07:35:37
## 4555 52016 2021-03-05 2021-03-04 19:00:56
## 4556 10523 2021-03-09 2021-03-09 11:09:13
## 4557 10523 2021-03-09 2021-03-09 11:09:13
## 4558 10523 2021-03-09 2021-03-09 11:09:13
## 4559 6602 2021-03-10 2021-03-09 22:23:44
## 4560 7933 2021-03-09 2021-03-09 16:13:51
## 4561 351 2021-03-11 2021-03-11 14:50:31
## 4562 9515 2021-03-09 2021-03-09 13:30:20
## 4563 9515 2021-03-09 2021-03-09 13:30:20
## 4564 2588 2021-03-11 2021-03-10 19:32:36
## 4565 26361 2021-03-08 2021-03-08 05:40:12
## 4566 26361 2021-03-08 2021-03-08 05:40:12
## 4567 26103 2021-03-08 2021-03-08 06:01:56
## 4568 3820 2021-03-10 2021-03-10 12:20:14
## 4569 10582 2021-03-09 2021-03-09 10:57:21
## 4570 13857 2021-03-09 2021-03-08 22:36:16
## 4571 19475 2021-03-08 2021-03-08 13:39:45
## 4572 12086 2021-03-09 2021-03-09 05:48:20
## 4573 6204 2021-03-10 2021-03-10 00:54:41
## 4574 6204 2021-03-10 2021-03-10 00:54:41
502
## 4575 21287 2021-03-08 2021-03-08 11:29:59
## 4576 28825 2021-03-08 2021-03-08 02:02:20
## 4577 13799 2021-03-09 2021-03-08 22:50:21
## 4578 13799 2021-03-09 2021-03-08 22:50:21
## 4579 13799 2021-03-09 2021-03-08 22:50:21
## 4580 13799 2021-03-09 2021-03-08 22:50:21
## 4581 6953 2021-03-10 2021-03-09 20:28:07
## 4582 6953 2021-03-10 2021-03-09 20:28:07
## 4583 6953 2021-03-10 2021-03-09 20:28:07
## 4584 51652 2021-03-05 2021-03-05 04:26:38
## 4585 51652 2021-03-05 2021-03-05 04:26:38
## 4586 457 2021-03-11 2021-03-11 13:41:31
## 4587 457 2021-03-11 2021-03-11 13:41:31
## 4588 11830 2021-03-09 2021-03-09 06:54:53
## 4589 12118 2021-03-09 2021-03-09 05:39:50
## 4590 37581 2021-03-08 2021-03-07 21:15:16
## 4591 2691 2021-03-10 2021-03-10 18:53:07
## 4592 11337 2021-03-09 2021-03-09 08:21:15
## 4593 19367 2021-03-08 2021-03-08 13:45:17
## 4594 30768 2021-03-08 2021-03-07 23:58:18
## 4595 12620 2021-03-09 2021-03-09 03:14:43
## 4596 12620 2021-03-09 2021-03-09 03:14:43
## 4597 12620 2021-03-09 2021-03-09 03:14:43
## 4598 23617 2021-03-08 2021-03-08 08:59:48
## 4599 49401 2021-03-06 2021-03-06 10:41:07
## 4600 49401 2021-03-06 2021-03-06 10:41:07
## 4601 17349 2021-03-08 2021-03-08 16:18:34
## 4602 3587 2021-03-10 2021-03-10 13:08:38
## 4603 3587 2021-03-10 2021-03-10 13:08:38
## 4604 2432 2021-03-11 2021-03-10 20:57:37
## 4605 51457 2021-03-05 2021-03-05 08:03:31
## 4606 24418 2021-03-08 2021-03-08 08:06:46
## 4607 24883 2021-03-08 2021-03-08 07:34:43
## 4608 1450 2021-03-11 2021-03-11 07:16:45
## 4609 1450 2021-03-11 2021-03-11 07:16:45
## 4610 7760 2021-03-09 2021-03-09 16:44:58
## 4611 7760 2021-03-09 2021-03-09 16:44:58
## 4612 41059 2021-03-08 2021-03-07 20:51:00
## 4613 41059 2021-03-08 2021-03-07 20:51:00
## 4614 51835 2021-03-05 2021-03-04 22:49:41
## 4615 548 2021-03-11 2021-03-11 12:49:28
## 4616 548 2021-03-11 2021-03-11 12:49:28
## 4617 548 2021-03-11 2021-03-11 12:49:28
## 4618 10192 2021-03-09 2021-03-09 12:10:14
## 4619 34523 2021-03-08 2021-03-07 21:53:38
## 4620 34523 2021-03-08 2021-03-07 21:53:38
## 4621 26201 2021-03-08 2021-03-08 05:51:57
## 4622 31355 2021-03-08 2021-03-07 23:31:36
## 4623 31355 2021-03-08 2021-03-07 23:31:36
## 4624 31355 2021-03-08 2021-03-07 23:31:36
## 4625 4331 2021-03-10 2021-03-10 10:18:14
## 4626 20980 2021-03-08 2021-03-08 11:50:49
## 4627 20980 2021-03-08 2021-03-08 11:50:49
## 4628 20980 2021-03-08 2021-03-08 11:50:49
503
## 4629 51767 2021-03-05 2021-03-05 00:29:49
## 4630 51767 2021-03-05 2021-03-05 00:29:49
## 4631 49305 2021-03-06 2021-03-06 11:50:53
## 4632 10779 2021-03-09 2021-03-09 10:21:29
## 4633 10779 2021-03-09 2021-03-09 10:21:29
## 4634 10779 2021-03-09 2021-03-09 10:21:29
## 4635 13175 2021-03-09 2021-03-09 02:01:26
## 4636 13175 2021-03-09 2021-03-09 02:01:26
## 4637 38746 2021-03-08 2021-03-07 21:05:51
## 4638 15517 2021-03-08 2021-03-08 18:20:39
## 4639 15517 2021-03-08 2021-03-08 18:20:39
## 4640 24228 2021-03-08 2021-03-08 08:19:29
## 4641 8177 2021-03-09 2021-03-09 15:30:32
## 4642 8177 2021-03-09 2021-03-09 15:30:32
## 4643 10839 2021-03-09 2021-03-09 10:07:54
## 4644 51256 2021-03-05 2021-03-05 10:34:20
## 4645 31248 2021-03-08 2021-03-07 23:36:21
## 4646 6219 2021-03-10 2021-03-10 00:46:23
## 4647 47071 2021-03-07 2021-03-07 12:26:00
## 4648 47071 2021-03-07 2021-03-07 12:26:00
## 4649 41509 2021-03-08 2021-03-07 20:48:12
## 4650 9718 2021-03-09 2021-03-09 13:06:43
## 4651 9718 2021-03-09 2021-03-09 13:06:43
## 4652 24225 2021-03-08 2021-03-08 08:19:51
## 4653 24225 2021-03-08 2021-03-08 08:19:51
## 4654 1378 2021-03-11 2021-03-11 07:35:40
## 4655 5978 2021-03-10 2021-03-10 02:32:10
## 4656 33231 2021-03-08 2021-03-07 22:19:53
## 4657 9955 2021-03-09 2021-03-09 12:42:41
## 4658 12657 2021-03-09 2021-03-09 03:11:00
## 4659 12657 2021-03-09 2021-03-09 03:11:00
## 4660 3171 2021-03-10 2021-03-10 15:21:51
## 4661 3171 2021-03-10 2021-03-10 15:21:51
## 4662 3171 2021-03-10 2021-03-10 15:21:51
## 4663 3171 2021-03-10 2021-03-10 15:21:51
## 4664 3913 2021-03-10 2021-03-10 12:01:24
## 4665 21835 2021-03-08 2021-03-08 10:52:59
## 4666 18342 2021-03-08 2021-03-08 14:47:36
## 4667 12361 2021-03-09 2021-03-09 03:59:14
## 4668 46830 2021-03-07 2021-03-07 13:56:20
## 4669 44966 2021-03-08 2021-03-07 20:16:05
## 4670 44966 2021-03-08 2021-03-07 20:16:05
## 4671 32267 2021-03-08 2021-03-07 22:53:46
## 4672 32851 2021-03-08 2021-03-07 22:32:24
## 4673 5947 2021-03-10 2021-03-10 02:41:15
## 4674 5947 2021-03-10 2021-03-10 02:41:15
## 4675 10957 2021-03-09 2021-03-09 09:47:43
## 4676 10957 2021-03-09 2021-03-09 09:47:43
## 4677 10957 2021-03-09 2021-03-09 09:47:43
## 4678 18209 2021-03-08 2021-03-08 14:58:37
## 4679 5181 2021-03-10 2021-03-10 07:09:14
## 4680 4984 2021-03-10 2021-03-10 08:00:36
## 4681 2580 2021-03-11 2021-03-10 19:34:55
## 4682 10273 2021-03-09 2021-03-09 11:53:21
504
## 4683 2237 2021-03-11 2021-03-10 23:20:21
## 4684 2492 2021-03-11 2021-03-10 20:28:14
## 4685 46539 2021-03-07 2021-03-07 15:59:39
## 4686 9717 2021-03-09 2021-03-09 13:06:47
## 4687 9717 2021-03-09 2021-03-09 13:06:47
## 4688 61 2021-03-11 2021-03-11 18:28:01
## 4689 61 2021-03-11 2021-03-11 18:28:01
## 4690 61 2021-03-11 2021-03-11 18:28:01
## 4691 25410 2021-03-08 2021-03-08 06:56:50
## 4692 45885 2021-03-08 2021-03-07 19:41:28
## 4693 45885 2021-03-08 2021-03-07 19:41:28
## 4694 45885 2021-03-08 2021-03-07 19:41:28
## 4695 45885 2021-03-08 2021-03-07 19:41:28
## 4696 9680 2021-03-09 2021-03-09 13:12:30
## 4697 30408 2021-03-08 2021-03-08 00:15:00
## 4698 10398 2021-03-09 2021-03-09 11:34:54
## 4699 10398 2021-03-09 2021-03-09 11:34:54
## 4700 7855 2021-03-09 2021-03-09 16:28:46
## 4701 20634 2021-03-08 2021-03-08 12:19:45
## 4702 20634 2021-03-08 2021-03-08 12:19:45
## 4703 33116 2021-03-08 2021-03-07 22:23:32
## 4704 7702 2021-03-09 2021-03-09 16:57:00
## 4705 7702 2021-03-09 2021-03-09 16:57:00
## 4706 46064 2021-03-07 2021-03-07 18:51:15
## 4707 1758 2021-03-11 2021-03-11 05:23:14
## 4708 1758 2021-03-11 2021-03-11 05:23:14
## 4709 1758 2021-03-11 2021-03-11 05:23:14
## 4710 1758 2021-03-11 2021-03-11 05:23:14
## 4711 1758 2021-03-11 2021-03-11 05:23:14
## 4712 1758 2021-03-11 2021-03-11 05:23:14
## 4713 41441 2021-03-08 2021-03-07 20:48:35
## 4714 41441 2021-03-08 2021-03-07 20:48:35
## 4715 41441 2021-03-08 2021-03-07 20:48:35
## 4716 22058 2021-03-08 2021-03-08 10:40:15
## 4717 22058 2021-03-08 2021-03-08 10:40:15
## 4718 25394 2021-03-08 2021-03-08 06:58:17
## 4719 25394 2021-03-08 2021-03-08 06:58:17
## 4720 7381 2021-03-09 2021-03-09 18:06:47
## 4721 23928 2021-03-08 2021-03-08 08:39:31
## 4722 23928 2021-03-08 2021-03-08 08:39:31
## 4723 29600 2021-03-08 2021-03-08 01:03:18
## 4724 29600 2021-03-08 2021-03-08 01:03:18
## 4725 22639 2021-03-08 2021-03-08 10:01:02
## 4726 50346 2021-03-05 2021-03-05 17:52:56
## 4727 50346 2021-03-05 2021-03-05 17:52:56
## 4728 50346 2021-03-05 2021-03-05 17:52:56
## 4729 51181 2021-03-05 2021-03-05 11:39:04
## 4730 3473 2021-03-10 2021-03-10 13:34:21
## 4731 48201 2021-03-07 2021-03-07 05:28:24
## 4732 48201 2021-03-07 2021-03-07 05:28:24
## 4733 21146 2021-03-08 2021-03-08 11:38:59
## 4734 9211 2021-03-09 2021-03-09 13:52:49
## 4735 31334 2021-03-08 2021-03-07 23:32:18
## 4736 38885 2021-03-08 2021-03-07 21:04:51
505
## 4737 21832 2021-03-08 2021-03-08 10:53:05
## 4738 32220 2021-03-08 2021-03-07 22:55:35
## 4739 41108 2021-03-08 2021-03-07 20:50:41
## 4740 39514 2021-03-08 2021-03-07 21:00:55
## 4741 2327 2021-03-11 2021-03-10 22:16:04
## 4742 2327 2021-03-11 2021-03-10 22:16:04
## 4743 15034 2021-03-09 2021-03-08 19:14:28
## 4744 942 2021-03-11 2021-03-11 09:46:21
## 4745 942 2021-03-11 2021-03-11 09:46:21
## 4746 15212 2021-03-08 2021-03-08 18:55:01
## 4747 15212 2021-03-08 2021-03-08 18:55:01
## 4748 48632 2021-03-07 2021-03-06 21:44:07
## 4749 41840 2021-03-08 2021-03-07 20:46:22
## 4750 20349 2021-03-08 2021-03-08 12:42:38
## 4751 18376 2021-03-08 2021-03-08 14:45:42
## 4752 15257 2021-03-08 2021-03-08 18:50:30
## 4753 15257 2021-03-08 2021-03-08 18:50:30
## 4754 15257 2021-03-08 2021-03-08 18:50:30
## 4755 45380 2021-03-08 2021-03-07 20:08:45
## 4756 42815 2021-03-08 2021-03-07 20:37:30
## 4757 6970 2021-03-10 2021-03-09 20:19:10
## 4758 23595 2021-03-08 2021-03-08 09:00:56
## 4759 23595 2021-03-08 2021-03-08 09:00:56
## 4760 23595 2021-03-08 2021-03-08 09:00:56
## 4761 23595 2021-03-08 2021-03-08 09:00:56
## 4762 52180 2021-03-04 2021-03-04 16:23:16
## 4763 52180 2021-03-04 2021-03-04 16:23:16
## 4764 41962 2021-03-08 2021-03-07 20:45:44
## 4765 52025 2021-03-04 2021-03-04 18:50:54
## 4766 36912 2021-03-08 2021-03-07 21:23:24
## 4767 36912 2021-03-08 2021-03-07 21:23:24
## 4768 18761 2021-03-08 2021-03-08 14:17:13
## 4769 17304 2021-03-08 2021-03-08 16:21:03
## 4770 17304 2021-03-08 2021-03-08 16:21:03
## 4771 24813 2021-03-08 2021-03-08 07:37:04
## 4772 24813 2021-03-08 2021-03-08 07:37:04
## 4773 29082 2021-03-08 2021-03-08 01:41:54
## 4774 29082 2021-03-08 2021-03-08 01:41:54
## 4775 21903 2021-03-08 2021-03-08 10:48:26
## 4776 45358 2021-03-08 2021-03-07 20:09:24
## 4777 4708 2021-03-10 2021-03-10 08:58:50
## 4778 9163 2021-03-09 2021-03-09 13:58:03
## 4779 49149 2021-03-06 2021-03-06 13:45:14
## 4780 49149 2021-03-06 2021-03-06 13:45:14
## 4781 49149 2021-03-06 2021-03-06 13:45:14
## 4782 49149 2021-03-06 2021-03-06 13:45:14
## 4783 49149 2021-03-06 2021-03-06 13:45:14
## 4784 49149 2021-03-06 2021-03-06 13:45:14
## 4785 49149 2021-03-06 2021-03-06 13:45:14
## 4786 49149 2021-03-06 2021-03-06 13:45:14
## 4787 49149 2021-03-06 2021-03-06 13:45:14
## 4788 49149 2021-03-06 2021-03-06 13:45:14
## 4789 49149 2021-03-06 2021-03-06 13:45:14
## 4790 8122 2021-03-09 2021-03-09 15:38:48
506
## 4791 25173 2021-03-08 2021-03-08 07:14:14
## 4792 46515 2021-03-07 2021-03-07 16:07:05
## 4793 46515 2021-03-07 2021-03-07 16:07:05
## 4794 46515 2021-03-07 2021-03-07 16:07:05
## 4795 13637 2021-03-09 2021-03-08 23:38:12
## 4796 13637 2021-03-09 2021-03-08 23:38:12
## 4797 11030 2021-03-09 2021-03-09 09:35:11
## 4798 28120 2021-03-08 2021-03-08 03:13:36
## 4799 28120 2021-03-08 2021-03-08 03:13:36
## 4800 28120 2021-03-08 2021-03-08 03:13:36
## 4801 28120 2021-03-08 2021-03-08 03:13:36
## 4802 11810 2021-03-09 2021-03-09 06:58:47
## 4803 33071 2021-03-08 2021-03-07 22:24:42
## 4804 19253 2021-03-08 2021-03-08 13:51:23
## 4805 47113 2021-03-07 2021-03-07 12:09:05
## 4806 47113 2021-03-07 2021-03-07 12:09:05
## 4807 48118 2021-03-07 2021-03-07 06:07:13
## 4808 14875 2021-03-09 2021-03-08 19:41:33
## 4809 9406 2021-03-09 2021-03-09 13:37:35
## 4810 9406 2021-03-09 2021-03-09 13:37:35
## 4811 46201 2021-03-07 2021-03-07 18:05:06
## 4812 7973 2021-03-09 2021-03-09 16:04:07
## 4813 5992 2021-03-10 2021-03-10 02:27:09
## 4814 5992 2021-03-10 2021-03-10 02:27:09
## 4815 45945 2021-03-08 2021-03-07 19:26:18
## 4816 45945 2021-03-08 2021-03-07 19:26:18
## 4817 45945 2021-03-08 2021-03-07 19:26:18
## 4818 17577 2021-03-08 2021-03-08 16:03:40
## 4819 9419 2021-03-09 2021-03-09 13:36:27
## 4820 40069 2021-03-08 2021-03-07 20:57:23
## 4821 4703 2021-03-10 2021-03-10 08:59:26
## 4822 4703 2021-03-10 2021-03-10 08:59:26
## 4823 4703 2021-03-10 2021-03-10 08:59:26
## 4824 12116 2021-03-09 2021-03-09 05:40:02
## 4825 12116 2021-03-09 2021-03-09 05:40:02
## 4826 2322 2021-03-11 2021-03-10 22:17:45
## 4827 2322 2021-03-11 2021-03-10 22:17:45
## 4828 25102 2021-03-08 2021-03-08 07:19:37
## 4829 9257 2021-03-09 2021-03-09 13:48:52
## 4830 15014 2021-03-09 2021-03-08 19:17:12
## 4831 20533 2021-03-08 2021-03-08 12:28:12
## 4832 6517 2021-03-10 2021-03-09 22:55:27
## 4833 42615 2021-03-08 2021-03-07 20:39:56
## 4834 29288 2021-03-08 2021-03-08 01:27:10
## 4835 29288 2021-03-08 2021-03-08 01:27:10
## 4836 14418 2021-03-09 2021-03-08 20:48:31
## 4837 21086 2021-03-08 2021-03-08 11:42:35
## 4838 21086 2021-03-08 2021-03-08 11:42:35
## 4839 4274 2021-03-10 2021-03-10 10:31:27
## 4840 23640 2021-03-08 2021-03-08 08:57:48
## 4841 5800 2021-03-10 2021-03-10 03:28:26
## 4842 49863 2021-03-06 2021-03-06 02:01:03
## 4843 49863 2021-03-06 2021-03-06 02:01:03
## 4844 3044 2021-03-10 2021-03-10 16:21:19
507
## 4845 3044 2021-03-10 2021-03-10 16:21:19
## 4846 37568 2021-03-08 2021-03-07 21:15:29
## 4847 6029 2021-03-10 2021-03-10 02:12:19
## 4848 14393 2021-03-09 2021-03-08 20:51:44
## 4849 51081 2021-03-05 2021-03-05 12:25:21
## 4850 11985 2021-03-09 2021-03-09 06:23:53
## 4851 1768 2021-03-11 2021-03-11 05:18:31
## 4852 1768 2021-03-11 2021-03-11 05:18:31
## 4853 1768 2021-03-11 2021-03-11 05:18:31
## 4854 8953 2021-03-09 2021-03-09 14:12:14
## 4855 9141 2021-03-09 2021-03-09 13:59:35
## 4856 14025 2021-03-09 2021-03-08 21:56:40
## 4857 38457 2021-03-08 2021-03-07 21:08:16
## 4858 38457 2021-03-08 2021-03-07 21:08:16
## 4859 47436 2021-03-07 2021-03-07 10:24:55
## 4860 37750 2021-03-08 2021-03-07 21:13:22
## 4861 47126 2021-03-07 2021-03-07 12:03:54
## 4862 47126 2021-03-07 2021-03-07 12:03:54
## 4863 27987 2021-03-08 2021-03-08 03:34:56
## 4864 27987 2021-03-08 2021-03-08 03:34:56
## 4865 27987 2021-03-08 2021-03-08 03:34:56
## 4866 24333 2021-03-08 2021-03-08 08:13:10
## 4867 3038 2021-03-10 2021-03-10 16:23:56
## 4868 13180 2021-03-09 2021-03-09 02:00:41
## 4869 23428 2021-03-08 2021-03-08 09:11:17
## 4870 23428 2021-03-08 2021-03-08 09:11:17
## 4871 32287 2021-03-08 2021-03-07 22:52:57
## 4872 31411 2021-03-08 2021-03-07 23:28:25
## 4873 25815 2021-03-08 2021-03-08 06:25:12
## 4874 32877 2021-03-08 2021-03-07 22:31:14
## 4875 46075 2021-03-07 2021-03-07 18:47:16
## 4876 38469 2021-03-08 2021-03-07 21:08:12
## 4877 1271 2021-03-11 2021-03-11 08:01:32
## 4878 28782 2021-03-08 2021-03-08 02:04:39
## 4879 12876 2021-03-09 2021-03-09 02:45:21
## 4880 3327 2021-03-10 2021-03-10 14:14:29
## 4881 11791 2021-03-09 2021-03-09 07:01:52
## 4882 11791 2021-03-09 2021-03-09 07:01:52
## 4883 11791 2021-03-09 2021-03-09 07:01:52
## 4884 4476 2021-03-10 2021-03-10 09:42:49
## 4885 7660 2021-03-09 2021-03-09 17:05:50
## 4886 6903 2021-03-10 2021-03-09 20:43:31
## 4887 6903 2021-03-10 2021-03-09 20:43:31
## 4888 6903 2021-03-10 2021-03-09 20:43:31
## 4889 6903 2021-03-10 2021-03-09 20:43:31
## 4890 6903 2021-03-10 2021-03-09 20:43:31
## 4891 20670 2021-03-08 2021-03-08 12:17:00
## 4892 20670 2021-03-08 2021-03-08 12:17:00
## 4893 20670 2021-03-08 2021-03-08 12:17:00
## 4894 28493 2021-03-08 2021-03-08 02:26:06
## 4895 5272 2021-03-10 2021-03-10 06:48:56
## 4896 32496 2021-03-08 2021-03-07 22:44:00
## 4897 8099 2021-03-09 2021-03-09 15:43:43
## 4898 24861 2021-03-08 2021-03-08 07:35:25
508
## 4899 24861 2021-03-08 2021-03-08 07:35:25
## 4900 23688 2021-03-08 2021-03-08 08:54:54
## 4901 23688 2021-03-08 2021-03-08 08:54:54
## 4902 48191 2021-03-07 2021-03-07 05:31:20
## 4903 6054 2021-03-10 2021-03-10 02:02:07
## 4904 6054 2021-03-10 2021-03-10 02:02:07
## 4905 31892 2021-03-08 2021-03-07 23:09:20
## 4906 17987 2021-03-08 2021-03-08 15:18:42
## 4907 17987 2021-03-08 2021-03-08 15:18:42
## 4908 18039 2021-03-08 2021-03-08 15:14:03
## 4909 2993 2021-03-10 2021-03-10 16:37:19
## 4910 49934 2021-03-06 2021-03-05 23:51:09
## 4911 10291 2021-03-09 2021-03-09 11:50:28
## 4912 8802 2021-03-09 2021-03-09 14:24:01
## 4913 8802 2021-03-09 2021-03-09 14:24:01
## 4914 24282 2021-03-08 2021-03-08 08:16:00
## 4915 24282 2021-03-08 2021-03-08 08:16:00
## 4916 31038 2021-03-08 2021-03-07 23:47:31
## 4917 31038 2021-03-08 2021-03-07 23:47:31
## 4918 3417 2021-03-10 2021-03-10 13:45:16
## 4919 18121 2021-03-08 2021-03-08 15:06:09
## 4920 12588 2021-03-09 2021-03-09 03:18:25
## 4921 3848 2021-03-10 2021-03-10 12:13:27
## 4922 29488 2021-03-08 2021-03-08 01:12:39
## 4923 29488 2021-03-08 2021-03-08 01:12:39
## 4924 11601 2021-03-09 2021-03-09 07:34:20
## 4925 9537 2021-03-09 2021-03-09 13:27:58
## 4926 9537 2021-03-09 2021-03-09 13:27:58
## 4927 14137 2021-03-09 2021-03-08 21:36:16
## 4928 17733 2021-03-08 2021-03-08 15:46:53
## 4929 15967 2021-03-08 2021-03-08 17:45:11
## 4930 3478 2021-03-10 2021-03-10 13:32:34
## 4931 26468 2021-03-08 2021-03-08 05:31:58
## 4932 45625 2021-03-08 2021-03-07 20:03:25
## 4933 45918 2021-03-08 2021-03-07 19:35:26
## 4934 46544 2021-03-07 2021-03-07 15:56:08
## 4935 46544 2021-03-07 2021-03-07 15:56:08
## 4936 46544 2021-03-07 2021-03-07 15:56:08
## 4937 46544 2021-03-07 2021-03-07 15:56:08
## 4938 23772 2021-03-08 2021-03-08 08:50:28
## 4939 23772 2021-03-08 2021-03-08 08:50:28
## 4940 23772 2021-03-08 2021-03-08 08:50:28
## 4941 52818 2021-03-04 2021-03-04 09:46:46
## 4942 38599 2021-03-08 2021-03-07 21:07:03
## 4943 36630 2021-03-08 2021-03-07 21:26:37
## 4944 6698 2021-03-10 2021-03-09 21:55:36
## 4945 3818 2021-03-10 2021-03-10 12:20:32
## 4946 18667 2021-03-08 2021-03-08 14:24:18
## 4947 45136 2021-03-08 2021-03-07 20:13:32
## 4948 32916 2021-03-08 2021-03-07 22:30:03
## 4949 12330 2021-03-09 2021-03-09 04:09:51
## 4950 4825 2021-03-10 2021-03-10 08:30:31
## 4951 4825 2021-03-10 2021-03-10 08:30:31
## 4952 8525 2021-03-09 2021-03-09 14:49:38
509
## 4953 41623 2021-03-08 2021-03-07 20:47:33
## 4954 15126 2021-03-09 2021-03-08 19:03:11
## 4955 15126 2021-03-09 2021-03-08 19:03:11
## 4956 39681 2021-03-08 2021-03-07 20:59:59
## 4957 7561 2021-03-09 2021-03-09 17:25:59
## 4958 2787 2021-03-10 2021-03-10 18:14:22
## 4959 2787 2021-03-10 2021-03-10 18:14:22
## 4960 31212 2021-03-08 2021-03-07 23:38:34
## 4961 31212 2021-03-08 2021-03-07 23:38:34
## 4962 31212 2021-03-08 2021-03-07 23:38:34
## 4963 31212 2021-03-08 2021-03-07 23:38:34
## 4964 25574 2021-03-08 2021-03-08 06:44:08
## 4965 5599 2021-03-10 2021-03-10 04:52:30
## 4966 51536 2021-03-05 2021-03-05 06:55:06
## 4967 8363 2021-03-09 2021-03-09 15:06:55
## 4968 8363 2021-03-09 2021-03-09 15:06:55
## 4969 8363 2021-03-09 2021-03-09 15:06:55
## 4970 14379 2021-03-09 2021-03-08 20:53:49
## 4971 4393 2021-03-10 2021-03-10 10:01:42
## 4972 28954 2021-03-08 2021-03-08 01:50:45
## 4973 38509 2021-03-08 2021-03-07 21:07:48
## 4974 20155 2021-03-08 2021-03-08 12:58:58
## 4975 20155 2021-03-08 2021-03-08 12:58:58
## 4976 12544 2021-03-09 2021-03-09 03:23:50
## 4977 12544 2021-03-09 2021-03-09 03:23:50
## 4978 12544 2021-03-09 2021-03-09 03:23:50
## 4979 38837 2021-03-08 2021-03-07 21:05:09
## 4980 1572 2021-03-11 2021-03-11 06:43:07
## 4981 1572 2021-03-11 2021-03-11 06:43:07
## 4982 40892 2021-03-08 2021-03-07 20:52:12
## 4983 48258 2021-03-07 2021-03-07 05:02:08
## 4984 52288 2021-03-04 2021-03-04 15:10:53
## 4985 52288 2021-03-04 2021-03-04 15:10:53
## 4986 49131 2021-03-06 2021-03-06 13:55:25
## 4987 49131 2021-03-06 2021-03-06 13:55:25
## 4988 52261 2021-03-04 2021-03-04 15:24:14
## 4989 6266 2021-03-10 2021-03-10 00:28:24
## 4990 6266 2021-03-10 2021-03-10 00:28:24
## 4991 1519 2021-03-11 2021-03-11 06:59:33
## 4992 1519 2021-03-11 2021-03-11 06:59:33
## 4993 1519 2021-03-11 2021-03-11 06:59:33
## 4994 1519 2021-03-11 2021-03-11 06:59:33
## 4995 1519 2021-03-11 2021-03-11 06:59:33
## 4996 46255 2021-03-07 2021-03-07 17:50:06
## 4997 46255 2021-03-07 2021-03-07 17:50:06
## 4998 46255 2021-03-07 2021-03-07 17:50:06
## 4999 46255 2021-03-07 2021-03-07 17:50:06
## 5000 46255 2021-03-07 2021-03-07 17:50:06
## 5001 6658 2021-03-10 2021-03-09 22:08:33
## 5002 10708 2021-03-09 2021-03-09 10:33:36
## 5003 10708 2021-03-09 2021-03-09 10:33:36
## 5004 52707 2021-03-04 2021-03-04 10:48:42
## 5005 14402 2021-03-09 2021-03-08 20:50:18
## 5006 14402 2021-03-09 2021-03-08 20:50:18
510
## 5007 14402 2021-03-09 2021-03-08 20:50:18
## 5008 3449 2021-03-10 2021-03-10 13:39:31
## 5009 4917 2021-03-10 2021-03-10 08:12:20
## 5010 4917 2021-03-10 2021-03-10 08:12:20
## 5011 4917 2021-03-10 2021-03-10 08:12:20
## 5012 24113 2021-03-08 2021-03-08 08:26:47
## 5013 12794 2021-03-09 2021-03-09 02:56:05
## 5014 9170 2021-03-09 2021-03-09 13:57:20
## 5015 9170 2021-03-09 2021-03-09 13:57:20
## 5016 10389 2021-03-09 2021-03-09 11:36:18
## 5017 948 2021-03-11 2021-03-11 09:45:15
## 5018 7091 2021-03-10 2021-03-09 19:34:38
## 5019 29434 2021-03-08 2021-03-08 01:15:49
## 5020 27381 2021-03-08 2021-03-08 04:20:46
## 5021 5644 2021-03-10 2021-03-10 04:29:46
## 5022 49452 2021-03-06 2021-03-06 09:59:55
## 5023 49452 2021-03-06 2021-03-06 09:59:55
## 5024 49452 2021-03-06 2021-03-06 09:59:55
## 5025 49452 2021-03-06 2021-03-06 09:59:55
## 5026 49452 2021-03-06 2021-03-06 09:59:55
## 5027 49452 2021-03-06 2021-03-06 09:59:55
## 5028 49452 2021-03-06 2021-03-06 09:59:55
## 5029 4465 2021-03-10 2021-03-10 09:45:45
## 5030 4465 2021-03-10 2021-03-10 09:45:45
## 5031 8424 2021-03-09 2021-03-09 15:00:13
## 5032 33191 2021-03-08 2021-03-07 22:20:59
## 5033 11051 2021-03-09 2021-03-09 09:30:46
## 5034 16101 2021-03-08 2021-03-08 17:35:28
## 5035 16101 2021-03-08 2021-03-08 17:35:28
## 5036 16029 2021-03-08 2021-03-08 17:40:22
## 5037 33471 2021-03-08 2021-03-07 22:12:40
## 5038 49846 2021-03-06 2021-03-06 02:26:37
## 5039 49630 2021-03-06 2021-03-06 06:34:17
## 5040 60 2021-03-11 2021-03-11 18:28:11
## 5041 60 2021-03-11 2021-03-11 18:28:11
## 5042 1340 2021-03-11 2021-03-11 07:46:40
## 5043 1340 2021-03-11 2021-03-11 07:46:40
## 5044 21663 2021-03-08 2021-03-08 11:03:45
## 5045 21663 2021-03-08 2021-03-08 11:03:45
## 5046 15897 2021-03-08 2021-03-08 17:50:23
## 5047 15897 2021-03-08 2021-03-08 17:50:23
## 5048 19347 2021-03-08 2021-03-08 13:46:29
## 5049 4335 2021-03-10 2021-03-10 10:17:03
## 5050 11202 2021-03-09 2021-03-09 08:47:48
## 5051 46572 2021-03-07 2021-03-07 15:43:44
## 5052 46572 2021-03-07 2021-03-07 15:43:44
## 5053 21018 2021-03-08 2021-03-08 11:48:00
## 5054 25747 2021-03-08 2021-03-08 06:30:32
## 5055 12717 2021-03-09 2021-03-09 03:05:53
## 5056 12717 2021-03-09 2021-03-09 03:05:53
## 5057 48989 2021-03-06 2021-03-06 15:55:54
## 5058 45068 2021-03-08 2021-03-07 20:14:37
## 5059 19311 2021-03-08 2021-03-08 13:48:20
## 5060 1089 2021-03-11 2021-03-11 08:56:05
511
## 5061 812 2021-03-11 2021-03-11 10:28:14
## 5062 50473 2021-03-05 2021-03-05 16:37:40
## 5063 20720 2021-03-08 2021-03-08 12:13:37
## 5064 20720 2021-03-08 2021-03-08 12:13:37
## 5065 20720 2021-03-08 2021-03-08 12:13:37
## 5066 33000 2021-03-08 2021-03-07 22:27:05
## 5067 22713 2021-03-08 2021-03-08 09:56:33
## 5068 22713 2021-03-08 2021-03-08 09:56:33
## 5069 47377 2021-03-07 2021-03-07 10:43:37
## 5070 2279 2021-03-11 2021-03-10 22:43:03
## 5071 2279 2021-03-11 2021-03-10 22:43:03
## 5072 22880 2021-03-08 2021-03-08 09:44:09
## 5073 22880 2021-03-08 2021-03-08 09:44:09
## 5074 15833 2021-03-08 2021-03-08 17:55:31
## 5075 46528 2021-03-07 2021-03-07 16:02:58
## 5076 46528 2021-03-07 2021-03-07 16:02:58
## 5077 46528 2021-03-07 2021-03-07 16:02:58
## 5078 16228 2021-03-08 2021-03-08 17:25:20
## 5079 5440 2021-03-10 2021-03-10 05:32:41
## 5080 5440 2021-03-10 2021-03-10 05:32:41
## 5081 6551 2021-03-10 2021-03-09 22:40:14
## 5082 7976 2021-03-09 2021-03-09 16:03:50
## 5083 30772 2021-03-08 2021-03-07 23:58:12
## 5084 375 2021-03-11 2021-03-11 14:33:55
## 5085 11533 2021-03-09 2021-03-09 07:46:10
## 5086 11533 2021-03-09 2021-03-09 07:46:10
## 5087 11533 2021-03-09 2021-03-09 07:46:10
## 5088 17732 2021-03-08 2021-03-08 15:47:01
## 5089 20172 2021-03-08 2021-03-08 12:58:03
## 5090 20172 2021-03-08 2021-03-08 12:58:03
## 5091 688 2021-03-11 2021-03-11 11:18:30
## 5092 51562 2021-03-05 2021-03-05 06:25:11
## 5093 51562 2021-03-05 2021-03-05 06:25:11
## 5094 4372 2021-03-10 2021-03-10 10:07:17
## 5095 29345 2021-03-08 2021-03-08 01:22:27
## 5096 22916 2021-03-08 2021-03-08 09:41:54
## 5097 22916 2021-03-08 2021-03-08 09:41:54
## 5098 22916 2021-03-08 2021-03-08 09:41:54
## 5099 17090 2021-03-08 2021-03-08 16:32:45
## 5100 17090 2021-03-08 2021-03-08 16:32:45
## 5101 4933 2021-03-10 2021-03-10 08:09:06
## 5102 4933 2021-03-10 2021-03-10 08:09:06
## 5103 46450 2021-03-07 2021-03-07 16:36:25
## 5104 52788 2021-03-04 2021-03-04 10:03:48
## 5105 47558 2021-03-07 2021-03-07 09:48:54
## 5106 1753 2021-03-11 2021-03-11 05:25:12
## 5107 8641 2021-03-09 2021-03-09 14:36:33
## 5108 49296 2021-03-06 2021-03-06 12:00:59
## 5109 49296 2021-03-06 2021-03-06 12:00:59
## 5110 49296 2021-03-06 2021-03-06 12:00:59
## 5111 12114 2021-03-09 2021-03-09 05:40:14
## 5112 12114 2021-03-09 2021-03-09 05:40:14
## 5113 12114 2021-03-09 2021-03-09 05:40:14
## 5114 27094 2021-03-08 2021-03-08 04:40:45
512
## 5115 27094 2021-03-08 2021-03-08 04:40:45
## 5116 32996 2021-03-08 2021-03-07 22:27:18
## 5117 32996 2021-03-08 2021-03-07 22:27:18
## 5118 13895 2021-03-09 2021-03-08 22:27:48
## 5119 13747 2021-03-09 2021-03-08 23:06:24
## 5120 48447 2021-03-07 2021-03-07 02:24:32
## 5121 48447 2021-03-07 2021-03-07 02:24:32
## 5122 48447 2021-03-07 2021-03-07 02:24:32
## 5123 48447 2021-03-07 2021-03-07 02:24:32
## 5124 15349 2021-03-08 2021-03-08 18:39:51
## 5125 49514 2021-03-06 2021-03-06 09:14:53
## 5126 9692 2021-03-09 2021-03-09 13:10:40
## 5127 40028 2021-03-08 2021-03-07 20:57:41
## 5128 22711 2021-03-08 2021-03-08 09:56:37
## 5129 46926 2021-03-07 2021-03-07 13:23:24
## 5130 214 2021-03-11 2021-03-11 16:39:36
## 5131 214 2021-03-11 2021-03-11 16:39:36
## 5132 2884 2021-03-10 2021-03-10 17:27:20
## 5133 2884 2021-03-10 2021-03-10 17:27:20
## 5134 2884 2021-03-10 2021-03-10 17:27:20
## 5135 18970 2021-03-08 2021-03-08 14:05:09
## 5136 49494 2021-03-06 2021-03-06 09:27:24
## 5137 39892 2021-03-08 2021-03-07 20:58:45
## 5138 11503 2021-03-09 2021-03-09 07:52:10
## 5139 14841 2021-03-09 2021-03-08 19:47:41
## 5140 357 2021-03-11 2021-03-11 14:47:50
## 5141 5160 2021-03-10 2021-03-10 07:16:50
## 5142 5160 2021-03-10 2021-03-10 07:16:50
## 5143 5160 2021-03-10 2021-03-10 07:16:50
## 5144 4330 2021-03-10 2021-03-10 10:18:21
## 5145 48777 2021-03-07 2021-03-06 19:00:07
## 5146 48777 2021-03-07 2021-03-06 19:00:07
## 5147 46094 2021-03-07 2021-03-07 18:38:30
## 5148 46094 2021-03-07 2021-03-07 18:38:30
## 5149 46094 2021-03-07 2021-03-07 18:38:30
## 5150 15643 2021-03-08 2021-03-08 18:09:46
## 5151 50816 2021-03-05 2021-03-05 14:05:14
## 5152 5396 2021-03-10 2021-03-10 05:47:16
## 5153 3071 2021-03-10 2021-03-10 16:11:59
## 5154 3071 2021-03-10 2021-03-10 16:11:59
## 5155 40749 2021-03-08 2021-03-07 20:53:18
## 5156 19884 2021-03-08 2021-03-08 13:15:54
## 5157 21082 2021-03-08 2021-03-08 11:42:42
## 5158 21082 2021-03-08 2021-03-08 11:42:42
## 5159 29660 2021-03-08 2021-03-08 00:59:40
## 5160 49035 2021-03-06 2021-03-06 15:14:20
## 5161 24655 2021-03-08 2021-03-08 07:50:46
## 5162 41862 2021-03-08 2021-03-07 20:46:15
## 5163 41862 2021-03-08 2021-03-07 20:46:15
## 5164 37399 2021-03-08 2021-03-07 21:17:46
## 5165 13486 2021-03-09 2021-03-09 00:19:29
## 5166 50745 2021-03-05 2021-03-05 14:30:27
## 5167 25962 2021-03-08 2021-03-08 06:14:27
## 5168 13855 2021-03-09 2021-03-08 22:36:23
513
## 5169 6417 2021-03-10 2021-03-09 23:24:39
## 5170 6417 2021-03-10 2021-03-09 23:24:39
## 5171 31965 2021-03-08 2021-03-07 23:06:23
## 5172 47776 2021-03-07 2021-03-07 08:43:12
## 5173 39157 2021-03-08 2021-03-07 21:03:03
## 5174 51453 2021-03-05 2021-03-05 08:06:49
## 5175 51453 2021-03-05 2021-03-05 08:06:49
## 5176 51453 2021-03-05 2021-03-05 08:06:49
## 5177 51453 2021-03-05 2021-03-05 08:06:49
## 5178 51453 2021-03-05 2021-03-05 08:06:49
## 5179 51453 2021-03-05 2021-03-05 08:06:49
## 5180 51453 2021-03-05 2021-03-05 08:06:49
## 5181 51453 2021-03-05 2021-03-05 08:06:49
## 5182 51453 2021-03-05 2021-03-05 08:06:49
## 5183 51453 2021-03-05 2021-03-05 08:06:49
## 5184 24109 2021-03-08 2021-03-08 08:26:59
## 5185 2901 2021-03-10 2021-03-10 17:21:51
## 5186 2901 2021-03-10 2021-03-10 17:21:51
## 5187 28529 2021-03-08 2021-03-08 02:23:18
## 5188 34424 2021-03-08 2021-03-07 21:55:28
## 5189 11173 2021-03-09 2021-03-09 08:58:56
## 5190 32233 2021-03-08 2021-03-07 22:55:11
## 5191 50621 2021-03-05 2021-03-05 15:46:34
## 5192 31955 2021-03-08 2021-03-07 23:06:45
## 5193 31955 2021-03-08 2021-03-07 23:06:45
## 5194 6344 2021-03-10 2021-03-09 23:49:06
## 5195 6344 2021-03-10 2021-03-09 23:49:06
## 5196 6344 2021-03-10 2021-03-09 23:49:06
## 5197 16354 2021-03-08 2021-03-08 17:16:23
## 5198 3427 2021-03-10 2021-03-10 13:44:02
## 5199 3427 2021-03-10 2021-03-10 13:44:02
## 5200 3427 2021-03-10 2021-03-10 13:44:02
## 5201 51210 2021-03-05 2021-03-05 11:18:54
## 5202 13739 2021-03-09 2021-03-08 23:09:19
## 5203 49277 2021-03-06 2021-03-06 12:13:27
## 5204 26896 2021-03-08 2021-03-08 04:57:01
## 5205 11948 2021-03-09 2021-03-09 06:30:21
## 5206 11948 2021-03-09 2021-03-09 06:30:21
## 5207 845 2021-03-11 2021-03-11 10:14:44
## 5208 31991 2021-03-08 2021-03-07 23:05:25
## 5209 51775 2021-03-05 2021-03-05 00:20:47
## 5210 25540 2021-03-08 2021-03-08 06:46:39
## 5211 33079 2021-03-08 2021-03-07 22:24:26
## 5212 20979 2021-03-08 2021-03-08 11:51:03
## 5213 24041 2021-03-08 2021-03-08 08:31:28
## 5214 24041 2021-03-08 2021-03-08 08:31:28
## 5215 24041 2021-03-08 2021-03-08 08:31:28
## 5216 31794 2021-03-08 2021-03-07 23:13:04
## 5217 31794 2021-03-08 2021-03-07 23:13:04
## 5218 14372 2021-03-09 2021-03-08 20:54:29
## 5219 10151 2021-03-09 2021-03-09 12:15:56
## 5220 48659 2021-03-07 2021-03-06 20:55:47
## 5221 27466 2021-03-08 2021-03-08 04:15:19
## 5222 22527 2021-03-08 2021-03-08 10:07:50
514
## 5223 22527 2021-03-08 2021-03-08 10:07:50
## 5224 17573 2021-03-08 2021-03-08 16:03:55
## 5225 27888 2021-03-08 2021-03-08 03:41:23
## 5226 8444 2021-03-09 2021-03-09 14:57:59
## 5227 8444 2021-03-09 2021-03-09 14:57:59
## 5228 8444 2021-03-09 2021-03-09 14:57:59
## 5229 22007 2021-03-08 2021-03-08 10:42:38
## 5230 22007 2021-03-08 2021-03-08 10:42:38
## 5231 2141 2021-03-11 2021-03-11 00:48:36
## 5232 2141 2021-03-11 2021-03-11 00:48:36
## 5233 2141 2021-03-11 2021-03-11 00:48:36
## 5234 10286 2021-03-09 2021-03-09 11:51:08
## 5235 15109 2021-03-09 2021-03-08 19:05:24
## 5236 2579 2021-03-11 2021-03-10 19:35:03
## 5237 16287 2021-03-08 2021-03-08 17:21:20
## 5238 16287 2021-03-08 2021-03-08 17:21:20
## 5239 16287 2021-03-08 2021-03-08 17:21:20
## 5240 77 2021-03-11 2021-03-11 18:17:49
## 5241 2838 2021-03-10 2021-03-10 17:51:07
## 5242 2838 2021-03-10 2021-03-10 17:51:07
## 5243 11893 2021-03-09 2021-03-09 06:43:15
## 5244 11893 2021-03-09 2021-03-09 06:43:15
## 5245 11893 2021-03-09 2021-03-09 06:43:15
## 5246 11893 2021-03-09 2021-03-09 06:43:15
## 5247 51207 2021-03-05 2021-03-05 11:20:42
## 5248 51488 2021-03-05 2021-03-05 07:37:52
## 5249 23938 2021-03-08 2021-03-08 08:39:08
## 5250 23938 2021-03-08 2021-03-08 08:39:08
## 5251 23938 2021-03-08 2021-03-08 08:39:08
## 5252 39682 2021-03-08 2021-03-07 20:59:59
## 5253 39682 2021-03-08 2021-03-07 20:59:59
## 5254 49113 2021-03-06 2021-03-06 14:13:05
## 5255 49113 2021-03-06 2021-03-06 14:13:05
## 5256 49113 2021-03-06 2021-03-06 14:13:05
## 5257 5478 2021-03-10 2021-03-10 05:23:01
## 5258 8689 2021-03-09 2021-03-09 14:32:09
## 5259 28772 2021-03-08 2021-03-08 02:05:11
## 5260 10257 2021-03-09 2021-03-09 11:58:36
## 5261 10257 2021-03-09 2021-03-09 11:58:36
## 5262 42038 2021-03-08 2021-03-07 20:45:18
## 5263 12331 2021-03-09 2021-03-09 04:09:49
## 5264 12331 2021-03-09 2021-03-09 04:09:49
## 5265 12331 2021-03-09 2021-03-09 04:09:49
## 5266 12331 2021-03-09 2021-03-09 04:09:49
## 5267 12331 2021-03-09 2021-03-09 04:09:49
## 5268 12331 2021-03-09 2021-03-09 04:09:49
## 5269 12331 2021-03-09 2021-03-09 04:09:49
## 5270 12331 2021-03-09 2021-03-09 04:09:49
## 5271 12331 2021-03-09 2021-03-09 04:09:49
## 5272 28074 2021-03-08 2021-03-08 03:21:43
## 5273 13006 2021-03-09 2021-03-09 02:27:38
## 5274 13006 2021-03-09 2021-03-09 02:27:38
## 5275 48626 2021-03-07 2021-03-06 22:02:46
## 5276 48626 2021-03-07 2021-03-06 22:02:46
515
## 5277 21360 2021-03-08 2021-03-08 11:25:29
## 5278 13099 2021-03-09 2021-03-09 02:15:04
## 5279 979 2021-03-11 2021-03-11 09:33:39
## 5280 1180 2021-03-11 2021-03-11 08:27:05
## 5281 1180 2021-03-11 2021-03-11 08:27:05
## 5282 4977 2021-03-10 2021-03-10 08:01:23
## 5283 3053 2021-03-10 2021-03-10 16:18:12
## 5284 11448 2021-03-09 2021-03-09 08:01:31
## 5285 11448 2021-03-09 2021-03-09 08:01:31
## 5286 6861 2021-03-10 2021-03-09 20:56:17
## 5287 5634 2021-03-10 2021-03-10 04:35:27
## 5288 50212 2021-03-06 2021-03-05 19:28:36
## 5289 50212 2021-03-06 2021-03-05 19:28:36
## 5290 50212 2021-03-06 2021-03-05 19:28:36
## 5291 18653 2021-03-08 2021-03-08 14:25:02
## 5292 49593 2021-03-06 2021-03-06 07:45:14
## 5293 32727 2021-03-08 2021-03-07 22:36:01
## 5294 18760 2021-03-08 2021-03-08 14:17:14
## 5295 18760 2021-03-08 2021-03-08 14:17:14
## 5296 18760 2021-03-08 2021-03-08 14:17:14
## 5297 30614 2021-03-08 2021-03-08 00:05:05
## 5298 30614 2021-03-08 2021-03-08 00:05:05
## 5299 30614 2021-03-08 2021-03-08 00:05:05
## 5300 30614 2021-03-08 2021-03-08 00:05:05
## 5301 30614 2021-03-08 2021-03-08 00:05:05
## 5302 26741 2021-03-08 2021-03-08 05:09:53
## 5303 11397 2021-03-09 2021-03-09 08:11:39
## 5304 11397 2021-03-09 2021-03-09 08:11:39
## 5305 4789 2021-03-10 2021-03-10 08:39:50
## 5306 4789 2021-03-10 2021-03-10 08:39:50
## 5307 4789 2021-03-10 2021-03-10 08:39:50
## 5308 4862 2021-03-10 2021-03-10 08:24:00
## 5309 28879 2021-03-08 2021-03-08 01:57:47
## 5310 37710 2021-03-08 2021-03-07 21:13:47
## 5311 9590 2021-03-09 2021-03-09 13:22:00
## 5312 9590 2021-03-09 2021-03-09 13:22:00
## 5313 9590 2021-03-09 2021-03-09 13:22:00
## 5314 9590 2021-03-09 2021-03-09 13:22:00
## 5315 9590 2021-03-09 2021-03-09 13:22:00
## 5316 9590 2021-03-09 2021-03-09 13:22:00
## 5317 9590 2021-03-09 2021-03-09 13:22:00
## 5318 12814 2021-03-09 2021-03-09 02:54:03
## 5319 31490 2021-03-08 2021-03-07 23:25:16
## 5320 32300 2021-03-08 2021-03-07 22:52:22
## 5321 32300 2021-03-08 2021-03-07 22:52:22
## 5322 16577 2021-03-08 2021-03-08 17:00:57
## 5323 12775 2021-03-09 2021-03-09 02:57:55
## 5324 40820 2021-03-08 2021-03-07 20:52:46
## 5325 41587 2021-03-08 2021-03-07 20:47:45
## 5326 46011 2021-03-08 2021-03-07 19:08:52
## 5327 48864 2021-03-06 2021-03-06 17:47:21
## 5328 30944 2021-03-08 2021-03-07 23:50:51
## 5329 47399 2021-03-07 2021-03-07 10:35:24
## 5330 21608 2021-03-08 2021-03-08 11:07:11
516
## 5331 21608 2021-03-08 2021-03-08 11:07:11
## 5332 21608 2021-03-08 2021-03-08 11:07:11
## 5333 33657 2021-03-08 2021-03-07 22:08:05
## 5334 21745 2021-03-08 2021-03-08 10:58:23
## 5335 21745 2021-03-08 2021-03-08 10:58:23
## 5336 11508 2021-03-09 2021-03-09 07:51:22
## 5337 22400 2021-03-08 2021-03-08 10:15:36
## 5338 28263 2021-03-08 2021-03-08 02:47:26
## 5339 18954 2021-03-08 2021-03-08 14:05:47
## 5340 5515 2021-03-10 2021-03-10 05:13:19
## 5341 35665 2021-03-08 2021-03-07 21:38:27
## 5342 35665 2021-03-08 2021-03-07 21:38:27
## 5343 12606 2021-03-09 2021-03-09 03:16:29
## 5344 741 2021-03-11 2021-03-11 11:00:13
## 5345 741 2021-03-11 2021-03-11 11:00:13
## 5346 17574 2021-03-08 2021-03-08 16:03:49
## 5347 10108 2021-03-09 2021-03-09 12:21:54
## 5348 10108 2021-03-09 2021-03-09 12:21:54
## 5349 10108 2021-03-09 2021-03-09 12:21:54
## 5350 10108 2021-03-09 2021-03-09 12:21:54
## 5351 11921 2021-03-09 2021-03-09 06:38:42
## 5352 34392 2021-03-08 2021-03-07 21:56:19
## 5353 6987 2021-03-10 2021-03-09 20:12:32
## 5354 5540 2021-03-10 2021-03-10 05:06:38
## 5355 5540 2021-03-10 2021-03-10 05:06:38
## 5356 36213 2021-03-08 2021-03-07 21:31:53
## 5357 49311 2021-03-06 2021-03-06 11:46:30
## 5358 49311 2021-03-06 2021-03-06 11:46:30
## 5359 49311 2021-03-06 2021-03-06 11:46:30
## 5360 32344 2021-03-08 2021-03-07 22:50:08
## 5361 29274 2021-03-08 2021-03-08 01:27:45
## 5362 11988 2021-03-09 2021-03-09 06:23:00
## 5363 14291 2021-03-09 2021-03-08 21:08:33
## 5364 27305 2021-03-08 2021-03-08 04:26:27
## 5365 11163 2021-03-09 2021-03-09 09:00:30
## 5366 21840 2021-03-08 2021-03-08 10:52:38
## 5367 6744 2021-03-10 2021-03-09 21:38:52
## 5368 18299 2021-03-08 2021-03-08 14:51:07
## 5369 2797 2021-03-10 2021-03-10 18:07:57
## 5370 10885 2021-03-09 2021-03-09 10:00:52
## 5371 35314 2021-03-08 2021-03-07 21:42:47
## 5372 35314 2021-03-08 2021-03-07 21:42:47
## 5373 50979 2021-03-05 2021-03-05 12:55:20
## 5374 18920 2021-03-08 2021-03-08 14:08:15
## 5375 7606 2021-03-09 2021-03-09 17:16:00
## 5376 50067 2021-03-06 2021-03-05 21:23:45
## 5377 12688 2021-03-09 2021-03-09 03:08:33
## 5378 245 2021-03-11 2021-03-11 16:06:36
## 5379 16756 2021-03-08 2021-03-08 16:52:23
## 5380 50264 2021-03-06 2021-03-05 19:01:02
## 5381 50264 2021-03-06 2021-03-05 19:01:02
## 5382 8466 2021-03-09 2021-03-09 14:56:12
## 5383 48689 2021-03-07 2021-03-06 20:15:55
## 5384 30131 2021-03-08 2021-03-08 00:30:29
517
## 5385 33645 2021-03-08 2021-03-07 22:08:19
## 5386 27351 2021-03-08 2021-03-08 04:23:08
## 5387 10804 2021-03-09 2021-03-09 10:15:16
## 5388 35514 2021-03-08 2021-03-07 21:40:16
## 5389 24612 2021-03-08 2021-03-08 07:54:17
## 5390 8149 2021-03-09 2021-03-09 15:35:44
## 5391 52177 2021-03-04 2021-03-04 16:25:44
## 5392 52177 2021-03-04 2021-03-04 16:25:44
## 5393 6872 2021-03-10 2021-03-09 20:53:44
## 5394 6872 2021-03-10 2021-03-09 20:53:44
## 5395 7887 2021-03-09 2021-03-09 16:21:26
## 5396 12575 2021-03-09 2021-03-09 03:20:26
## 5397 14254 2021-03-09 2021-03-08 21:14:34
## 5398 14254 2021-03-09 2021-03-08 21:14:34
## 5399 14254 2021-03-09 2021-03-08 21:14:34
## 5400 3051 2021-03-10 2021-03-10 16:18:40
## 5401 3051 2021-03-10 2021-03-10 16:18:40
## 5402 21491 2021-03-08 2021-03-08 11:16:44
## 5403 2130 2021-03-11 2021-03-11 00:58:20
## 5404 2130 2021-03-11 2021-03-11 00:58:20
## 5405 13547 2021-03-09 2021-03-08 23:58:29
## 5406 1961 2021-03-11 2021-03-11 03:39:42
## 5407 1961 2021-03-11 2021-03-11 03:39:42
## 5408 47556 2021-03-07 2021-03-07 09:49:09
## 5409 20466 2021-03-08 2021-03-08 12:32:44
## 5410 32001 2021-03-08 2021-03-07 23:04:47
## 5411 32001 2021-03-08 2021-03-07 23:04:47
## 5412 32001 2021-03-08 2021-03-07 23:04:47
## 5413 32001 2021-03-08 2021-03-07 23:04:47
## 5414 32001 2021-03-08 2021-03-07 23:04:47
## 5415 32001 2021-03-08 2021-03-07 23:04:47
## 5416 32001 2021-03-08 2021-03-07 23:04:47
## 5417 21692 2021-03-08 2021-03-08 11:01:55
## 5418 21692 2021-03-08 2021-03-08 11:01:55
## 5419 21692 2021-03-08 2021-03-08 11:01:55
## 5420 48316 2021-03-07 2021-03-07 04:29:09
## 5421 48316 2021-03-07 2021-03-07 04:29:09
## 5422 48316 2021-03-07 2021-03-07 04:29:09
## 5423 48316 2021-03-07 2021-03-07 04:29:09
## 5424 48316 2021-03-07 2021-03-07 04:29:09
## 5425 10395 2021-03-09 2021-03-09 11:35:30
## 5426 40016 2021-03-08 2021-03-07 20:57:48
## 5427 22533 2021-03-08 2021-03-08 10:07:31
## 5428 46717 2021-03-07 2021-03-07 14:31:21
## 5429 5847 2021-03-10 2021-03-10 03:12:36
## 5430 24887 2021-03-08 2021-03-08 07:34:20
## 5431 11945 2021-03-09 2021-03-09 06:31:29
## 5432 24834 2021-03-08 2021-03-08 07:36:33
## 5433 24834 2021-03-08 2021-03-08 07:36:33
## word
## 1 @benshapiro
## 2 @serenawilliams
## 3 @latimesent
## 4 @gma
518
## 5 @theroyaleditor
## 6 @royalfamily
## 7 @clarencehouse
## 8 @cnnâ\200¦
## 9 @gma
## 10 @theroyaleditor
## 11 @dpburnette
## 12 @mfinale1
## 13 @wterrence
## 14 @mmfa
## 15 @piersmorgan
## 16 @gmb
## 17 @alexberesfordtvâ\200¦
## 18 @hughcasswell
## 19 @annasoubry
## 20 @oprah
## 21 @scottadamssays
## 22 @piersmorgan
## 23 @theamandagorman
## 24 @cindymcguire52
## 25 @loveforcambridg
## 26 @piersmorgan
## 27 @dryaninmexico
## 28 @petershilton
## 29 @oprah
## 30 @tylerperrys
## 31 @gretagarbage
## 32 @alexberesfordtv
## 33 @dominiquetaegon
## 34 @natashadevon
## 35 @meghanmccain
## 36 @piersmorgan
## 37 @skynewsaust
## 38 @zacgoldsmith
## 39 @borisjohnson
## 40 @oprah
## 41 @forbes
## 42 @sccounty
## 43 @itv
## 44 @dailymailuk
## 45 @kateemccann
## 46 @bethrigby
## 47 @piersmorgan
## 48 @newsweek
## 49 @mollyjongfast
## 50 @iamjohnoliver
## 51 @miserablebill82
## 52 @nowthisnews
## 53 @craigstone
## 54 @realcandaceo
## 55 @piersmorgan
## 56 @ang3lj926
## 57 @alicevr7
## 58 @piersmorgan
519
## 59 @piersmorgan
## 60 @dailymailuk
## 61 @telegraph
## 62 @danwootton
## 63 @channel4news
## 64 @dailymirror
## 65 @oprah
## 66 @cbs
## 67 @googlenews
## 68 @piecederesister
## 69 @chrisrickett
## 70 @piersmorgan
## 71 @godblesstofu
## 72 @emmakennedy
## 73 @dailymailuk
## 74 @nickferrarilbc
## 75 @lbc
## 76 @fox26houston
## 77 @perezhilton
## 78 @brendankeefe
## 79 @piersmorgan
## 80 @notcapnamerica
## 81 @oprah
## 82 @gayleking
## 83 @dailymailuk
## 84 @mailonline
## 85 @royalobserver
## 86 @piersmorgan
## 87 @ryangirdusky
## 88 @gmb
## 89 @piersmorgan
## 90 @spotifys
## 91 @paulbegala
## 92 @oprah
## 93 @piersmorgan
## 94 @douglaskmurray
## 95 @dannypellegrino
## 96 @royalobserver
## 97 @royalfamily
## 98 @douglaskmurray
## 99 @nypost
## 100 @tauraloubelle
## 101 @hoganboomer
## 102 @davenelson91
## 103 @nathanhgshore
## 104 @bbcmarkeaston
## 105 @shattenstone
## 106 @ayeshahazarika
## 107 @nypost
## 108 @youtube
## 109 @adamcarolla
## 110 @bbcworldatone
## 111 @piersmorgan
## 112 @indierayat
520
## 113 @nypost
## 114 @kensingtonroyal
## 115 @alivegas247
## 116 @aherb8
## 117 @kimwebb44671708
## 118 @gibsonoma
## 119 @oprah
## 120 @realnatalierowe
## 121 @piersmorgan
## 122 @susannareid100
## 123 @cbsnews
## 124 @nbcnews
## 125 @msnbcâ\200¦
## 126 @oprah
## 127 @clarencehouse
## 128 @wabbey
## 129 @bbcone
## 130 @oprah
## 131 @cogitator99
## 132 @itvnews
## 133 @bbcnews
## 134 @skynews
## 135 @avrilburg
## 136 @nytimes
## 137 @dstfelix
## 138 @thecut
## 139 @kelvmackenzie
## 140 @thelmarouge
## 141 @piersmorgan
## 142 @t0nit0ne
## 143 @piersmorgan
## 144 @tonyh091963
## 145 @mailonline
## 146 @priyaatwal
## 147 @joannepaul
## 148 @caromt
## 149 @seerutkchawla
## 150 @teenvogue
## 151 @imteddybless
## 152 @mrssosbourne
## 153 @theview
## 154 @bbcworld
## 155 @halfadams
## 156 @meghanmood
## 157 @ndtv
## 158 @oprah
## 159 @bbclaurak
## 160 @piersmorgan
## 161 @piersmorgan
## 162 @maxfostercnn
## 163 @novogratz
## 164 @elzmo3008
## 165 @thedemocrats
## 166 @rahulroushan
521
## 167 @bbcpopup
## 168 @rgay
## 169 @patrickfreyne1
## 170 @piersmorgan
## 171 @labouraretoast
## 172 @beyonce
## 173 @oprah
## 174 @bigjim44398984
## 175 @jesuswept19
## 176 @sjhanna
## 177 @pastorjimberoo3
## 178 @bbcni
## 179 @jamiebrysoncpni
## 180 @bbcnolan
## 181 @bbctalkbackâ\200¦
## 182 @piersmorgan
## 183 @itvnews
## 184 @1100
## 185 @oprah
## 186 @oprah
## 187 @camanpour
## 188 @farah07595123
## 189 @thelondoneye
## 190 @piersmorgan
## 191 @toryboypierce
## 192 @kevinmaguire
## 193 @oprah
## 194 @royaldickie
## 195 @thesundaytimes
## 196 @jenniebond1
## 197 @piersmorgan
## 198 @iamshaniera
## 199 @piersmorgan
## 200 @brookbaypirate
## 201 @kaileicarr
## 202 @emzanotti
## 203 @kartikeyatanna
## 204 @piersmorgan
## 205 @oprah
## 206 @reuters
## 207 @kensingtonroyal
## 208 @giveusashout
## 209 @thismorning
## 210 @murkymeg
## 211 @gmb
## 212 @justmetwits1
## 213 @poonamsharma00
## 214 @allsussextweets
## 215 @oprah
## 216 @alexberesfordtv
## 217 @dailymailuk
## 218 @foxnews
## 219 @dailymailuk
## 220 @hilliebabes
522
## 221 @paulabrexiteer
## 222 @sannetje26
## 223 @bethenny
## 224 @skinnygirlbrand
## 225 @tjmaxx
## 226 @marshalls
## 227 @chakakhan
## 228 @piersmorgan
## 229 @piersmorgan
## 230 @paroyal
## 231 @duchessmeg2
## 232 @3rdhourtoday
## 233 @priceisright
## 234 @cbs
## 235 @netflix
## 236 @piersmorgan
## 237 @oprah
## 238 @oprah
## 239 @dailymailuk
## 240 @lindash12842233
## 241 @clarencehouse
## 242 @clarencehouse
## 243 @kensingtonroyal
## 244 @morningjoe
## 245 @joenbc
## 246 @kattykay
## 247 @harklestan
## 248 @theview
## 249 @owntv
## 250 @piersmorgan
## 251 @dailyexpress
## 252 @matthew57343840
## 253 @stanglab
## 254 @likaluca
## 255 @rachelrileyrr
## 256 @oprah
## 257 @royalfamily
## 258 @battleaxebrit1
## 259 @camillard
## 260 @piersmorgan
## 261 @trishagoddard
## 262 @piersmorgan
## 263 @iromg
## 264 @scobie
## 265 @garylineker
## 266 @piersmorgan
## 267 @lottikenith
## 268 @serenawilliams
## 269 @oprah
## 270 @jamelia
## 271 @glblctzn
## 272 @alexberesfordtv
## 273 @krisjenner
## 274 @piersmorgan
523
## 275 @borisjohnsons
## 276 @oprah
## 277 @oprah
## 278 @enews
## 279 @piersmorgan
## 280 @oprah
## 281 @andrewlawrence
## 282 @piersmorgan
## 283 @anthony41806183
## 284 @piersmorgan
## 285 @etnow
## 286 @kensingtonroyal
## 287 @davidmushens
## 288 @dlefkin
## 289 @johnpaulfurlong
## 290 @piersmorgan
## 291 @youtubeâ\200¦
## 292 @bbcnews
## 293 @oprah
## 294 @nenagerman
## 295 @gmb
## 296 @itvnews
## 297 @chinaaminaj
## 298 @genius
## 299 @binkyboo1970
## 300 @899kmoj
## 301 @wccoradio
## 302 @twitter
## 303 @quick13
## 304 @gmb
## 305 @susannareid100
## 306 @royalfamily
## 307 @oprah
## 308 @piersmorgan
## 309 @maakindness
## 310 @estonian01
## 311 @gayleking
## 312 @cbssunday
## 313 @weareinvictus
## 314 @youtubeâ\200¦
## 315 @miraagia
## 316 @piersmorgan
## 317 @cnn
## 318 @victoriaarbiter
## 319 @simigarewal
## 320 @oprah
## 321 @suesuezep
## 322 @juliussmalema
## 323 @piersmorgan
## 324 @potus
## 325 @presssec
## 326 @hillaryclinton
## 327 @jamesdelingpole
## 328 @gayleking
524
## 329 @oprah
## 330 @cbsthismorning
## 331 @perezhilton
## 332 @madonnaâ\200¦
## 333 @oprah
## 334 @piersmorgans
## 335 @oprah
## 336 @dailymailuk
## 337 @tesco
## 338 @nigelfarage
## 339 @oprah
## 340 @piersmorgan
## 341 @northwesternu
## 342 @sassygirlcanada
## 343 @piersmorgan
## 344 @nowthisnews
## 345 @kaitlancollins
## 346 @royalfamily
## 347 @clarencehouseâ\200¦
## 348 @twitter
## 349 @realtimblack
## 350 @giromonsale
## 351 @camillatominey
## 352 @favbreed1
## 353 @jadapsmith
## 354 @thehill
## 355 @footballfan301
## 356 @junesim63
## 357 @livelylot
## 358 @jimmfelton
## 359 @humzayousaf
## 360 @proftomkins
## 361 @itv
## 362 @piersmorgan
## 363 @gmb
## 364 @gmb
## 365 @piersmorgan
## 366 @kensingtonroyal
## 367 @donaldjtrumpjr
## 368 @oprah
## 369 @jennymccarthy
## 370 @shehnazkhan
## 371 @apentertainment
## 372 @samsclub
## 373 @aswegenelvera
## 374 @dianeclehane
## 375 @cbsthismorning
## 376 @oprah
## 377 @cbsthismorning
## 378 @fcc
## 379 @royalfamily
## 380 @telegraph
## 381 @victoriasanusi
## 382 @piersmorgan
525
## 383 @chrissyteigen
## 384 @cnn
## 385 @femisorry
## 386 @piersmorgan
## 387 @debramessing
## 388 @rinsehold
## 389 @buzzfeed
## 390 @bsocialplus
## 391 @thehill
## 392 @wajahatali
## 393 @jenniebond1
## 394 @bbcwomanshour
## 395 @mailonline
## 396 @piersmorgan
## 397 @04nbod
## 398 @timesoneill
## 399 @valentinelow
## 400 @washingtonpost
## 401 @pagesix
## 402 @douglaskmurray
## 403 @rulebrexitannia
## 404 @nypost
## 405 @oprah
## 406 @qasimrashid
## 407 @savageflippermo
## 408 @oprah
## 409 @bbcnews
## 410 @oprah
## 411 @cbs
## 412 @caldronpool
## 413 @eveningstandard
## 414 @dahleeng
## 415 @halfadams
## 416 @mailonline
## 417 @gmb
## 418 @piersmorgan
## 419 @cnn
## 420 @donlemon
## 421 @luenic
## 422 @reignofapril
## 423 @lordsugar
## 424 @selexiak
## 425 @wterrence
## 426 @marymykoca
## 427 @chrisshipitv
## 428 @alexberesfordtv
## 429 @gmb
## 430 @piersmorgan
## 431 @lbc
## 432 @disclosetv
## 433 @aarn4president
## 434 @piersmorgan
## 435 @khirsk
## 436 @dannygoesard
526
## 437 @reuters
## 438 @wendywilliams
## 439 @getitdonewith52
## 440 @megande70276649
## 441 @grannyg310
## 442 @michelebwell
## 443 @piersmorgan
## 444 @alexberesfordtv
## 445 @itvâ\200¦
## 446 @cbsthismorning
## 447 @oprah
## 448 @independent
## 449 @indyvoices
## 450 @mrahmednurali
## 451 @royalfamily
## 452 @halfadams
## 453 @rfitzwilliams
## 454 @victoriaarbiter
## 455 @royalbiographer
## 456 @royaldickie
## 457 @rfitzwilliams
## 458 @gmb
## 459 @estonian01
## 460 @scobie
## 461 @harpersbazaarus
## 462 @pagesix
## 463 @rifahmapranga
## 464 @nathferguson
## 465 @politicsjoeuk
## 466 @piersmorgan
## 467 @sholamos1
## 468 @oprah
## 469 @reuters
## 470 @priceisright
## 471 @cbsnews
## 472 @chrisrickett
## 473 @otvdesk
## 474 @royalfamily
## 475 @mswhoopie
## 476 @bethenny
## 477 @cuteahmah
## 478 @farah07595123
## 479 @gmb
## 480 @oprah
## 481 @senategop
## 482 @housegop
## 483 @royalfamily
## 484 @huffpost
## 485 @oprah
## 486 @cbs
## 487 @bbcnews
## 488 @oprah
## 489 @hellotefi
## 490 @berniceking
527
## 491 @piersmorgan
## 492 @nhsuk
## 493 @conservatives
## 494 @joshuapieters
## 495 @archiemanners
## 496 @brijh
## 497 @clady62
## 498 @justdoodirty3
## 499 @jimmiemckinnon
## 500 @glamor14kt
## 501 @iamprettypetty
## 502 @kenanthompson
## 503 @youtube
## 504 @piersmorganâ\200¦
## 505 @sholamos1
## 506 @katewilliamsme
## 507 @nclarke30
## 508 @2tunnn
## 509 @lindymomma
## 510 @tuckercarlson
## 511 @foxnews
## 512 @oprahâ\200¦
## 513 @sunny
## 514 @thesun
## 515 @gmb
## 516 @piersmorgan
## 517 @starthereabc
## 518 @jolentag
## 519 @joenbc
## 520 @morningjoe
## 521 @oprah
## 522 @amandaf10647240
## 523 @numbers28
## 524 @harish99430
## 525 @cbsthismorning
## 526 @oprah
## 527 @royalfamily
## 528 @bbcnews
## 529 @errolwebber
## 530 @njabbitscover
## 531 @qsteph
## 532 @oprah
## 533 @tvkhaleesi
## 534 @piersmorgan
## 535 @celebrityradio
## 536 @jamesmelville
## 537 @hillaryclinton
## 538 @royalfamily
## 539 @mgaletti01
## 540 @toryboypierce
## 541 @kevinmaguire
## 542 @oprah
## 543 @cbs
## 544 @carolinecprogro
528
## 545 @nbcnews
## 546 @nbcblk
## 547 @cnn
## 548 @latimes
## 549 @nytimes
## 550 @cbsthismorning
## 551 @cbs
## 552 @cbseveningnews
## 553 @abc
## 554 @abcnews
## 555 @theroyaleditor
## 556 @oprah
## 557 @piersmorgan
## 558 @piersmorgan
## 559 @piersmorgan
## 560 @gmb
## 561 @bethenny
## 562 @piersmorgan
## 563 @gmb
## 564 @bbcbreakfast
## 565 @gmb
## 566 @piersmorgan
## 567 @piersmorgan
## 568 @oprah
## 569 @oprah
## 570 @xoduchess
## 571 @pharrymeghan
## 572 @chrisshipitv
## 573 @cbsthismorning
## 574 @piersmorgan
## 575 @httweets
## 576 @nocatnoglory
## 577 @nytimes
## 578 @piersmorgan
## 579 @piersmorgan
## 580 @ruthturner65
## 581 @debbiehair2
## 582 @gmb
## 583 @susannareid100
## 584 @oprah
## 585 @kutv2newsâ\200¦
## 586 @ginawatss
## 587 @tmz
## 588 @rachelchinourir
## 589 @itv
## 590 @piersmorgan
## 591 @cnni
## 592 @kateatoyw
## 593 @olivassison
## 594 @gloversusan
## 595 @regina74
## 596 @jaakkolakaarina
## 597 @martinremains
## 598 @bobmca1
529
## 599 @kathymilburn9
## 600 @thatscottfordâ\200¦
## 601 @realcandaceo
## 602 @ashleyspivey
## 603 @bunchdbunch77
## 604 @kingjames
## 605 @honeycombmoms
## 606 @panderson220275
## 607 @piersmorgan
## 608 @itv
## 609 @oprah
## 610 @femisorry
## 611 @robcrilly
## 612 @mailonline
## 613 @ledbettercarly
## 614 @ellievhall
## 615 @gerardjasper
## 616 @patwilliams1944
## 617 @kensingtonroyal
## 618 @demondave
## 619 @msronnyb
## 620 @peterfitz
## 621 @piersmorgan
## 622 @alexberesfordtv
## 623 @alexberesfordtv
## 624 @alexberesfordtv
## 625 @chrisshipitv
## 626 @itv
## 627 @piersmorgan
## 628 @piersmorganâ\200\231s
## 629 @oprah
## 630 @piersmorgan
## 631 @ryenarussillo
## 632 @oprah
## 633 @thehill
## 634 @youtube
## 635 @piersmorgan
## 636 @afneil
## 637 @mindcharity
## 638 @oprah
## 639 @enews
## 640 @andie1105
## 641 @piersmorgan
## 642 @bbgrichie
## 643 @iaincampbell008
## 644 @aol
## 645 @martinslewis
## 646 @oprah
## 647 @owntv
## 648 @charlenewhite
## 649 @loosewomen
## 650 @realtuckfrumper
## 651 @yankeewally2
## 652 @jiminycriket
530
## 653 @remisagoodboy
## 654 @gmbâ\200¦
## 655 @clayaiken
## 656 @clayaiken
## 657 @bbcbreaking
## 658 @joshuapieters
## 659 @archiemanners
## 660 @rodinafighters
## 661 @petryanufc
## 662 @petryanufc
## 663 @thismorning
## 664 @piersmorgan
## 665 @bbcnews
## 666 @m2020sharon
## 667 @missjxnes
## 668 @realdailywire
## 669 @kimichaddah
## 670 @huffpost
## 671 @dineshdsouza
## 672 @onevapid
## 673 @justintrudeau
## 674 @piersmorgan
## 675 @believingbruce
## 676 @gmb
## 677 @peterhunt
## 678 @royalfamily
## 679 @clarencehouse
## 680 @kensingtonroyal
## 681 @oprahâ\200¦
## 682 @mailonline
## 683 @breakingbrown
## 684 @sholamos1
## 685 @oprah
## 686 @halfadams
## 687 @meghanmccain
## 688 @dimpledcandy
## 689 @pegotitdone
## 690 @oprah
## 691 @popthebubble3
## 692 @mailonline
## 693 @darrengrimes
## 694 @dubes09
## 695 @oprah
## 696 @yamiche
## 697 @peterhunt
## 698 @rianne088
## 699 @spectator
## 700 @michelleobama
## 701 @popsugar
## 702 @girlsalliance
## 703 @bethenny
## 704 @therightmelissa
## 705 @oprahs
## 706 @michaeljknowles
531
## 707 @louisvirtel
## 708 @oprah
## 709 @piersmorgan
## 710 @piersmorgan
## 711 @oprah
## 712 @ginamcgalliard
## 713 @buskyta
## 714 @finnprescott
## 715 @piersmorgan
## 716 @amberrosegill
## 717 @megynkelly
## 718 @piersmorgan
## 719 @gmb
## 720 @piersmorgan
## 721 @kelechnekoff
## 722 @whoopigoldberg
## 723 @meghanmccain
## 724 @tcracupuncture
## 725 @texasgirl9712
## 726 @blondeanddeaf
## 727 @remisagoodboy
## 728 @kegeiger
## 729 @rupertamargate
## 730 @jococo20
## 731 @nannydeb79
## 732 @marymanfrinâ\200¦
## 733 @kathy2166
## 734 @annemarchant
## 735 @lucylu54012514
## 736 @royalfamily
## 737 @kensingtonroyal
## 738 @bbcnews
## 739 @bbc
## 740 @itv
## 741 @itvnews
## 742 @skynews
## 743 @gmbâ\200¦
## 744 @cbs
## 745 @wallaahi
## 746 @swedeyeh
## 747 @tommycorbyn
## 748 @piersmorgan
## 749 @hrrysgreysuit
## 750 @jd25141596
## 751 @nytimes
## 752 @nydailynews
## 753 @dailymailuk
## 754 @bbcworld
## 755 @foxnews
## 756 @httweets
## 757 @thamesandhudson
## 758 @royalfamilyâ\200¦
## 759 @limidoh38
## 760 @alexberesfordtv
532
## 761 @itv
## 762 @gmb
## 763 @gma
## 764 @itv
## 765 @morningjoe
## 766 @joenbc
## 767 @trendulkar
## 768 @0livejews
## 769 @christianwalk1r
## 770 @telegraph
## 771 @thetimes
## 772 @piersmorgan
## 773 @oprah
## 774 @skaijackson
## 775 @gmb
## 776 @piersmorgan
## 777 @susannareid100
## 778 @gmb
## 779 @kensingtonroyal
## 780 @nigelfarage
## 781 @alexberesfordtv
## 782 @gmb
## 783 @piersmorgan
## 784 @abcnews
## 785 @mailonline
## 786 @itvnews
## 787 @frankaquiller
## 788 @oprah
## 789 @cbsnews
## 790 @piersmorgan
## 791 @itv
## 792 @piersmorganâ\200\231s
## 793 @trishagoddard
## 794 @davenelson91
## 795 @nathanhgshore
## 796 @iam49beatz
## 797 @danaslewis
## 798 @toryboypierce
## 799 @markdice
## 800 @thetodayshow
## 801 @syndicate
## 802 @mrbeast
## 803 @royalfamily
## 804 @kensingtonroyal
## 805 @oprahâ\200¦
## 806 @halfadams
## 807 @rickyp2052
## 808 @socialm85897394
## 809 @oprah
## 810 @richardaeden
## 811 @piersmorgan
## 812 @piersmorgan
## 813 @chicksintheoff
## 814 @zarahsultana
533
## 815 @ml1maria
## 816 @oprah
## 817 @ariberman
## 818 @borisjohnson
## 819 @abcnews
## 820 @scottfoxonair
## 821 @temposlow
## 822 @bellaitalia609
## 823 @emzanotti
## 824 @skynews
## 825 @piersmorgan
## 826 @blackmindsmatt
## 827 @piersmorgan
## 828 @miserablebill82
## 829 @kensingtonroyal
## 830 @youtube
## 831 @piersmorgan
## 832 @oprah
## 833 @lozzafox
## 834 @doctuir
## 835 @jack
## 836 @emmanuelmacronâ\200¦
## 837 @andylassner
## 838 @mchooyah
## 839 @thesun
## 840 @piersmorgan
## 841 @chrisshipitv
## 842 @piersmorgan
## 843 @stephennolan
## 844 @oprah
## 845 @mattd41391
## 846 @bethenny
## 847 @bethenny
## 848 @clarencehouse
## 849 @royalfamily
## 850 @kensingtonroyal
## 851 @dineoranaka
## 852 @pennylebyane
## 853 @pagesix
## 854 @hayleymulenda
## 855 @duanecia
## 856 @piersmorgan
## 857 @gmb
## 858 @heinzuk
## 859 @vicksmithyy
## 860 @itsjackwalsh
## 861 @politichick
## 862 @nytimes
## 863 @justdoodirty3
## 864 @azulsoul2013
## 865 @iamprettypetty
## 866 @glamor14kt
## 867 @farrisflagg
## 868 @kateferguson4
534
## 869 @piersmorgan
## 870 @roguecats7
## 871 @dearauntcrabby
## 872 @oprah
## 873 @chrisshipitv
## 874 @alexberesfordtv
## 875 @piersmorgan
## 876 @piersmorgan
## 877 @thehill
## 878 @youtube
## 879 @kensingtonroyal
## 880 @skynews
## 881 @whiteteeth75
## 882 @hrhofsussex
## 883 @emmadabiri
## 884 @jjmbusiness
## 885 @alexberesfordtv
## 886 @iromg
## 887 @talkradioâ\200¦
## 888 @gwynethpaltrow
## 889 @cbs
## 890 @davidschneider
## 891 @cbsthismorning
## 892 @royanikkhah
## 893 @thesundaytimes
## 894 @oprah
## 895 @cbsthismorning
## 896 @royanikkhah
## 897 @wendellpierce
## 898 @xraytedpro
## 899 @sunny
## 900 @piersmorgan
## 901 @resurgentsheep
## 902 @ajenglish
## 903 @oprah
## 904 @piersmorgan
## 905 @terihart
## 906 @johnnysibilly
## 907 @bethenny
## 908 @annetgriffin
## 909 @mindaharts
## 910 @oprah
## 911 @cbs
## 912 @justintrudeau
## 913 @oprah
## 914 @oprah
## 915 @johnathanperk
## 916 @nbcnewsbusiness
## 917 @commsec
## 918 @devnicolee
## 919 @oprah
## 920 @pharrymeghan
## 921 @huffpost
## 922 @macleans
535
## 923 @jackposobiec
## 924 @mrmacaronii
## 925 @brexitbrit
## 926 @suetayl14911306
## 927 @superscuba83
## 928 @gll1956
## 929 @andiedeb
## 930 @rfcevo
## 931 @voguemagazine
## 932 @ohheyjenna
## 933 @dailymirror
## 934 @bryonygordon
## 935 @itv
## 936 @emilymiller
## 937 @piersmorgan
## 938 @gmb
## 939 @atehjewel
## 940 @lpiroh
## 941 @piersmorgan
## 942 @fbi
## 943 @absrdnews
## 944 @pickardje
## 945 @piersmorgan
## 946 @netflix
## 947 @chrissyteigen
## 948 @katewilliamsme
## 949 @guardian
## 950 @kevonstage
## 951 @oprah
## 952 @youtubeâ\200¦
## 953 @popcrave
## 954 @meenaharris
## 955 @oprah
## 956 @oprah
## 957 @dailymailuk
## 958 @mohamoudgaildon
## 959 @mrahmednurali
## 960 @kirastar33
## 961 @piersmorgan
## 962 @spoteasybos
## 963 @kennethcolereal
## 964 @owntv
## 965 @piersmorgan
## 966 @mattsunroyal
## 967 @garylineker
## 968 @bethenny
## 969 @davidolusoga
## 970 @halfadams
## 971 @faizashaheen
## 972 @alexberesfordtv
## 973 @gmb
## 974 @jenniebond1
## 975 @itsnotlookingg1
## 976 @coolhandluke25
536
## 977 @piersmorgan
## 978 @suitspeacock
## 979 @thecrownnetflix
## 980 @thehills
## 981 @murkymeg
## 982 @emersonlotzia
## 983 @emchenderson
## 984 @westcoastwoman7
## 985 @scobie
## 986 @oprah
## 987 @piersmorgan
## 988 @piersmorgan
## 989 @gmb
## 990 @mrssosbourne
## 991 @pammielnik
## 992 @gmb
## 993 @afuathescot
## 994 @smugshua
## 995 @itv
## 996 @gmb
## 997 @itvhub
## 998 @oprah
## 999 @ofcom
## 1000 @bbcnews
## 1001 @newscomauhqâ\200¦
## 1002 @therecount
## 1003 @beyonce
## 1004 @dutcessk
## 1005 @halfadams
## 1006 @royalfamily
## 1007 @starpoolworld
## 1008 @lorenagl85
## 1009 @gmb
## 1010 @starpoolworld
## 1011 @silentamuse
## 1012 @run4urmny
## 1013 @santanalove23
## 1014 @asianmacaron
## 1015 @ryahcurry
## 1016 @guardthatgalaxy
## 1017 @afrojay96
## 1018 @etcanada
## 1019 @notcapnamerica
## 1020 @dailymailuk
## 1021 @dailymail
## 1022 @chrisshipitv
## 1023 @janina
## 1024 @thismorning
## 1025 @itv
## 1026 @scobie
## 1027 @realiteatime
## 1028 @jazam02
## 1029 @bethenny
## 1030 @oprah
537
## 1031 @salmacnn
## 1032 @huffpostcanada
## 1033 @camillatominey
## 1034 @royanikkhah
## 1035 @piersmorgan
## 1036 @royalreporter
## 1037 @chrisshipitv
## 1038 @latimes
## 1039 @stevebattaglio
## 1040 @piersmorgan
## 1041 @tuckercarlson
## 1042 @kensingtonroyal
## 1043 @megynkellyshow
## 1044 @danwootton
## 1045 @megynkelly
## 1046 @bariweiss
## 1047 @mailonline
## 1048 @royalfamily
## 1049 @itv
## 1050 @nickadamsinusa
## 1051 @bbcnews
## 1052 @juliahb1
## 1053 @emmakennedy
## 1054 @piersmorgan
## 1055 @dailymailuk
## 1056 @twittersupport
## 1057 @twitter
## 1058 @haaretzcom
## 1059 @piersmorgan
## 1060 @piersmorgan
## 1061 @oprah
## 1062 @thingsroyal
## 1063 @oprah
## 1064 @itv
## 1065 @piersmorganwhat
## 1066 @favbreed1
## 1067 @piersmorgan
## 1068 @piersmorgan
## 1069 @susannareid100
## 1070 @chrisrickett
## 1071 @piersmorgan
## 1072 @guardian
## 1073 @oprah
## 1074 @royalfamily
## 1075 @oprah
## 1076 @variety
## 1077 @yadadarcyyada
## 1078 @dailytelegraph
## 1079 @telegraph
## 1080 @hyslopkayleigh
## 1081 @gmb
## 1082 @piersmorgan
## 1083 @enterhacker
## 1084 @popculminefield
538
## 1085 @keeleytalks
## 1086 @furikitten
## 1087 @thecrazyscotttvâ\200¦
## 1088 @amerita
## 1089 @candylitess
## 1090 @darkskinjaiii
## 1091 @whosbadx
## 1092 @etcanada
## 1093 @jenniferenough
## 1094 @dribram
## 1095 @thatsjustgroce
## 1096 @itsgabrielleu
## 1097 @dailymailuk
## 1098 @henrymance
## 1099 @youtubeâ\200¦
## 1100 @people
## 1101 @slimmingworld
## 1102 @piersmorgan
## 1103 @awesomebamon
## 1104 @gmb
## 1105 @thetwerkinggirl
## 1106 @piersmorgan
## 1107 @sainthoax
## 1108 @yamiche
## 1109 @oprah
## 1110 @bethenny
## 1111 @dougbillings
## 1112 @halfadams
## 1113 @bethenny
## 1114 @piersmorgan
## 1115 @oprah
## 1116 @deathcult45
## 1117 @geoffrbennett
## 1118 @oprah
## 1119 @youtube
## 1120 @aldiuk
## 1121 @oprah
## 1122 @oprah
## 1123 @newday
## 1124 @johnberman
## 1125 @msdebbieallen
## 1126 @cnni
## 1127 @cnn
## 1128 @alisyncamerota
## 1129 @eveyoung216
## 1130 @piersmorgan
## 1131 @itv
## 1132 @brummiewitch
## 1133 @thegrio
## 1134 @piersmorgan
## 1135 @royalfamily
## 1136 @elguapo64
## 1137 @spreaker
## 1138 @loosewomen
539
## 1139 @chrisshipitv
## 1140 @susannareid100
## 1141 @bbcpanorama
## 1142 @youtube
## 1143 @byemilyandrews
## 1144 @oprah
## 1145 @thetodayshow
## 1146 @ameliaadams9
## 1147 @zillow
## 1148 @piersmorgan
## 1149 @alexberesfordtv
## 1150 @piersmorgan
## 1151 @gmbâ\200¦
## 1152 @joannalumleyuk
## 1153 @oprah
## 1154 @camilliatominey
## 1155 @mehdirhasan
## 1156 @nbc
## 1157 @todayshow
## 1158 @bethenny
## 1159 @telegraph
## 1160 @bethanholt
## 1161 @domakapablo
## 1162 @tshcelebfix
## 1163 @piersmorgan
## 1164 @brianmclight
## 1165 @sussexsquadpod
## 1166 @oprah
## 1167 @mmflint
## 1168 @dailymailuk
## 1169 @twittersafety
## 1170 @murkymeg
## 1171 @keithwarby
## 1172 @oprah
## 1173 @dailymailuk
## 1174 @halfadams
## 1175 @piersmorgan
## 1176 @zarahsultana
## 1177 @yusufaq
## 1178 @clarencehouse
## 1179 @vanguardngrnews
## 1180 @realcandaceo
## 1181 @oprah
## 1182 @gmb
## 1183 @piersmorgan
## 1184 @joysewing
## 1185 @piersmorgan
## 1186 @royanikkhah
## 1187 @oprah
## 1188 @bbcworld
## 1189 @serenawilliams
## 1190 @karlosw11
## 1191 @rulebrexitannia
## 1192 @operawinfreyar
540
## 1193 @gmb
## 1194 @susannareid100
## 1195 @piersmorgan
## 1196 @itv
## 1197 @scobie
## 1198 @whoopigoldberg
## 1199 @meghanmccain
## 1200 @joyvbehar
## 1201 @gmb
## 1202 @megynkelly
## 1203 @gmb
## 1204 @caronbeesley
## 1205 @royalreporter
## 1206 @mistamonotone
## 1207 @dancharnas
## 1208 @sheckygreen
## 1209 @ontherecorddoc
## 1210 @itv
## 1211 @piersmorgan
## 1212 @newyorker
## 1213 @piersmorgan
## 1214 @mahyartousi
## 1215 @khanmustgo
## 1216 @sadiqkhan
## 1217 @mayoroflondon
## 1218 @msnbc
## 1219 @traditionalvibe
## 1220 @michaeleast1983
## 1221 @piersmorgan
## 1222 @piersmorgan
## 1223 @hallyhan
## 1224 @themarklesammy
## 1225 @cnep80
## 1226 @scobie
## 1227 @nickferrarilbc
## 1228 @lbc
## 1229 @meenaharris
## 1230 @vp
## 1231 @potus
## 1232 @barackobama
## 1233 @michelleobama
## 1234 @jeremyvineon5
## 1235 @halfadams
## 1236 @chrisfixedodd
## 1237 @chrisfixedodd
## 1238 @carolecadwalla
## 1239 @mirrorroyal
## 1240 @palmalison
## 1241 @cozikmel
## 1242 @jaredleto
## 1243 @hillaryclinton
## 1244 @thesun
## 1245 @beebeeggg
## 1246 @piersmorgan
541
## 1247 @meghanmccain
## 1248 @alexberesfordtv
## 1249 @canadianpm
## 1250 @northwesternu
## 1251 @iromg
## 1252 @itv
## 1253 @itv
## 1254 @bbc
## 1255 @royalfamily
## 1256 @oprah
## 1257 @oprah
## 1258 @brianmcfadden
## 1259 @vabvox
## 1260 @gmb
## 1261 @megynkelly
## 1262 @alexberesfordtv
## 1263 @piersmorgan
## 1264 @piersmorgan
## 1265 @newscomauhq
## 1266 @oprah
## 1267 @aaronsweeney1
## 1268 @oprah
## 1269 @matthewwright
## 1270 @euinzim
## 1271 @royalfamily
## 1272 @jacquiewalker4
## 1273 @cbsthismorning
## 1274 @news4buffalo
## 1275 @royalfamily
## 1276 @piersmorgan
## 1277 @rclackofficial
## 1278 @chrisshipitv
## 1279 @oprah
## 1280 @cbsthismorning
## 1281 @piersmorgan
## 1282 @itv
## 1283 @royalfamily
## 1284 @oprah
## 1285 @gayleking
## 1286 @royalfamilyâ\200\231s
## 1287 @alexberesfordtv
## 1288 @theroyaleditor
## 1289 @oprah
## 1290 @royalfamilyâ\200¦
## 1291 @piersmorgan
## 1292 @piersmorgan
## 1293 @azulsoul2013
## 1294 @justdoodirty3
## 1295 @iamprettypetty
## 1296 @glamor14kt
## 1297 @farrisflagg
## 1298 @oprah
## 1299 @lornabaker20
## 1300 @meenaharris
542
## 1301 @nypost
## 1302 @beyonce
## 1303 @gideonrachman
## 1304 @piersmorgan
## 1305 @naomirwolf
## 1306 @megynkelly
## 1307 @piersmorgan
## 1308 @mailonline
## 1309 @bethenny
## 1310 @mattsbanjo
## 1311 @kathleenparker
## 1312 @suitspeacock
## 1313 @bethenny
## 1314 @oprah
## 1315 @gmb
## 1316 @youtube
## 1317 @gmb
## 1318 @scobie
## 1319 @royalfamily
## 1320 @piersmorgan
## 1321 @gmb
## 1322 @alexberesfordtv
## 1323 @lifetimetv
## 1324 @ellymelly
## 1325 @piersmorgan
## 1326 @piersmorgan
## 1327 @berniceking
## 1328 @iyanlavanzant
## 1329 @piersmorgan
## 1330 @gmb
## 1331 @piersmorgan
## 1332 @janina
## 1333 @hallyhan
## 1334 @youtube
## 1335 @deardana
## 1336 @piersmorgan
## 1337 @the5draver
## 1338 @postdisclosure
## 1339 @bridgerton
## 1340 @megynkelly
## 1341 @armani
## 1342 @lorraine
## 1343 @oprah
## 1344 @spotify
## 1345 @spotifypodcasts
## 1346 @nos
## 1347 @catherinemrtn31
## 1348 @stephen1010102
## 1349 @sarahkb83
## 1350 @piersmorgan
## 1351 @gmb
## 1352 @bbcbreakfast
## 1353 @relatedsport
## 1354 @bbcnews
543
## 1355 @meenalsworld
## 1356 @hollybourneya
## 1357 @piersmorgan
## 1358 @ajplus
## 1359 @benjaminjnorris
## 1360 @byqueenvic
## 1361 @pinkvilla
## 1362 @stephenm
## 1363 @voxdotcomâ\200¦
## 1364 @piersmorgan
## 1365 @murkymeg
## 1366 @channel4news
## 1367 @cuteazfoxy
## 1368 @bethenny
## 1369 @oprah
## 1370 @bethenny
## 1371 @actbrigitte
## 1372 @vp
## 1373 @adamboultonsky
## 1374 @bethrigby
## 1375 @samcoatessky
## 1376 @kayburley
## 1377 @dermotmurnaghan
## 1378 @jayneseckersky
## 1379 @markaustintvâ\200¦
## 1380 @dailystar
## 1381 @jeffpill
## 1382 @andersleijersta
## 1383 @magijay
## 1384 @kensingtonroyal
## 1385 @clarencehouseâ\200¦
## 1386 @thecanaryukâ\200¦
## 1387 @royalfamilyâ\201©
## 1388 @oprahâ\201©
## 1389 @piersmorgan
## 1390 @qsteph
## 1391 @royalfamily
## 1392 @gma
## 1393 @valentinelow
## 1394 @valentinelow
## 1395 @dailymailuk
## 1396 @cbs
## 1397 @oprah
## 1398 @humphreyyogart
## 1399 @franzprusse
## 1400 @stevensdesire
## 1401 @sussexhenryviii
## 1402 @ifonly07269389
## 1403 @canadadukeof
## 1404 @halfadams
## 1405 @espn
## 1406 @viacomcbsâ\200¦
## 1407 @oprah
## 1408 @deadline
544
## 1409 @paulabrexiteer
## 1410 @adrianhilton
## 1411 @hillaryclinton
## 1412 @aaronsweeney1
## 1413 @theview
## 1414 @prince
## 1415 @charleshrh
## 1416 @yokoonoâ\200¦
## 1417 @youtubeâ\200¦
## 1418 @klassyk316
## 1419 @victoriaarbiter
## 1420 @royaldickie
## 1421 @rfitzwilliams
## 1422 @royalbiographer
## 1423 @danwootton
## 1424 @jakekanter
## 1425 @enews
## 1426 @bartoedipoes
## 1427 @vochaltd
## 1428 @sunny
## 1429 @whoopigoldberg
## 1430 @joyvbehar
## 1431 @theview
## 1432 @piersmorgan
## 1433 @piersmorgan
## 1434 @oprah
## 1435 @piersmorgan
## 1436 @paulembery
## 1437 @boblisterpoole
## 1438 @vdonnola
## 1439 @thesun
## 1440 @piersmorgan
## 1441 @oprah
## 1442 @piersmorgan
## 1443 @boblisterpoole
## 1444 @netlfix
## 1445 @spotify
## 1446 @piersmorganâ\200¦
## 1447 @oprah
## 1448 @piersmorgan
## 1449 @relatedsport
## 1450 @bbcnews
## 1451 @ajenglish
## 1452 @hhepplewhite
## 1453 @carolaandrea
## 1454 @vonklx
## 1455 @toryboypierce
## 1456 @iamsophianelson
## 1457 @thesocialyvette
## 1458 @realcandaceo
## 1459 @royalreporter
## 1460 @murkymeg
## 1461 @gmb
## 1462 @telegraph
545
## 1463 @iamgmjohnson
## 1464 @royalfamily
## 1465 @royalfamily
## 1466 @clarencehouse
## 1467 @kensingtonroyal
## 1468 @piersmorgan
## 1469 @mindcharity
## 1470 @rangersfc
## 1471 @nicolasturgeon
## 1472 @piersmorgan
## 1473 @foxnews
## 1474 @loudobbs
## 1475 @tylerperry
## 1476 @sthelier
## 1477 @jennerific713
## 1478 @piersmorgan
## 1479 @megynkelly
## 1480 @oprah
## 1481 @oprah
## 1482 @piersmorgan
## 1483 @skroefmagwaza
## 1484 @chrisshipitv
## 1485 @teddyeugene
## 1486 @iamjoricanka
## 1487 @rockchic65
## 1488 @chrisbolton
## 1489 @ralflittle
## 1490 @bachelorabc
## 1491 @piersmorgan
## 1492 @andibaby8
## 1493 @piersmorgan
## 1494 @maxfostercnn
## 1495 @oprahâ\200\231s
## 1496 @cbs
## 1497 @sugaarrbaby
## 1498 @ayocaesar
## 1499 @lisadubbels
## 1500 @francorhvarmit
## 1501 @piersmorgan
## 1502 @bethenny
## 1503 @oprah
## 1504 @pickledpuffin
## 1505 @filsdelenin
## 1506 @youtubeâ\200¦
## 1507 @oprah
## 1508 @oprah
## 1509 @kanyewest
## 1510 @cbsnews
## 1511 @alexberesfordtv
## 1512 @therecount
## 1513 @youtube
## 1514 @jxeker
## 1515 @piersmorganlive
## 1516 @piersmorgan
546
## 1517 @gmb
## 1518 @bbcbreakfast
## 1519 @piersmorganâ\200¦
## 1520 @aceee
## 1521 @murkymeg
## 1522 @piersmorgan
## 1523 @suitspeacock
## 1524 @piersmorgan
## 1525 @sylviaobell
## 1526 @yusufaq
## 1527 @akorsh9
## 1528 @breaking911
## 1529 @disney
## 1530 @mailonline
## 1531 @psychpolis
## 1532 @piersmorgan
## 1533 @tuckercarlson
## 1534 @gmb
## 1535 @cnn
## 1536 @msnbc
## 1537 @abc
## 1538 @winter
## 1539 @headstogether
## 1540 @marthamaccallum
## 1541 @elizabethagan
## 1542 @perilofafrica
## 1543 @reuters
## 1544 @jamiebolton
## 1545 @cbs
## 1546 @siiverskyy
## 1547 @oprah
## 1548 @oprah
## 1549 @cbs
## 1550 @piersmorgan
## 1551 @youtubeâ\200¦
## 1552 @gretcheninok
## 1553 @piersmorgan
## 1554 @thedukeofyork
## 1555 @dailycaller
## 1556 @royalfamily
## 1557 @kensingtonroyal
## 1558 @clarencehouse
## 1559 @piersmorgan
## 1560 @minor7flat5
## 1561 @natet
## 1562 @thebabylonbee
## 1563 @megynkelly
## 1564 @meghanmccain
## 1565 @itvnews
## 1566 @piersmorgan
## 1567 @sherwinwilliams
## 1568 @piersmorgan
## 1569 @piersmorgan
## 1570 @oprah
547
## 1571 @nazirafzal
## 1572 @bookedbusy
## 1573 @dailymailuk
## 1574 @piersmorgan
## 1575 @piersmorgan
## 1576 @piersmorgan
## 1577 @steverichards14
## 1578 @bbcnews
## 1579 @alp26
## 1580 @christiansnoww
## 1581 @bethenny
## 1582 @oprah
## 1583 @piersmorgan
## 1584 @gmb
## 1585 @scuzzqueen
## 1586 @ponynow
## 1587 @lifeisamazinguk
## 1588 @ovotiann
## 1589 @officialcwh
## 1590 @susannareid100
## 1591 @justinwelby
## 1592 @piersmorgan
## 1593 @mommaroozey
## 1594 @megynkelly
## 1595 @zaynmalik
## 1596 @realcandaceo
## 1597 @officialgiggs
## 1598 @piersmorgan
## 1599 @realdonaldtrump
## 1600 @cbsthismorning
## 1601 @youtubeâ\200¦
## 1602 @rnc
## 1603 @elizabe41532076
## 1604 @mailonline
## 1605 @pharrymeghan
## 1606 @sebastiantdog
## 1607 @skynews
## 1608 @mrssosbourne
## 1609 @piersmorgan
## 1610 @dineshdsouza
## 1611 @oprah
## 1612 @oprah
## 1613 @piersmorgan
## 1614 @piersmorgan
## 1615 @otterstacos
## 1616 @titusnation
## 1617 @oprah
## 1618 @gmb
## 1619 @drericding
## 1620 @oprah
## 1621 @yoneka64
## 1622 @cnni
## 1623 @piersmorgan
## 1624 @darrenmhaynes
548
## 1625 @pharrymeghan
## 1626 @meghanmccain
## 1627 @buzzfeed
## 1628 @lindseygrahamsc
## 1629 @spesheffectz
## 1630 @dailymailuk
## 1631 @snooki
## 1632 @bitchofbritian
## 1633 @kingsukhdev
## 1634 @thecrownnetflixmeghanandharryonoprah
## 1635 @youtubeâ\200¦
## 1636 @thevampsjames
## 1637 @piersmorgan
## 1638 @nazirafzal
## 1639 @oliviadope
## 1640 @pantstopolitics
## 1641 @bobstackle
## 1642 @rec777777
## 1643 @royalfamily
## 1644 @gatitonic1968
## 1645 @iromg
## 1646 @piersmorgan
## 1647 @oprah
## 1648 @kuirmary
## 1649 @dailymail
## 1650 @oprah
## 1651 @oprah
## 1652 @sussexprincess
## 1653 @raosnaps
## 1654 @sussexhenryviii
## 1655 @gabsxo3
## 1656 @commonwealthsec
## 1657 @royalfamily
## 1658 @justnykia
## 1659 @gmb
## 1660 @alexberesfordtv
## 1661 @gmb
## 1662 @itvstudios
## 1663 @susannareid100
## 1664 @oprah
## 1665 @nypost
## 1666 @tuckercarlson
## 1667 @piersmorgan
## 1668 @popcrave
## 1669 @monroeliberty
## 1670 @oprah
## 1671 @415lifer
## 1672 @kensingtonroyal
## 1673 @giveusashout
## 1674 @kensingtonroyal
## 1675 @celebrityradio
## 1676 @awilliamscomedy
## 1677 @aoirthoirâ\200¦
## 1678 @chrissycole
549
## 1679 @sussexdetective
## 1680 @hrhprincephil
## 1681 @bbc
## 1682 @sussexhenryviii
## 1683 @royalfamily
## 1684 @thhamilton
## 1685 @piersmorgan
## 1686 @oprah
## 1687 @oprah
## 1688 @cbsnews
## 1689 @afuahirsch
## 1690 @oprah
## 1691 @msnbc
## 1692 @royalfamily
## 1693 @jemelehill
## 1694 @people
## 1695 @scobie
## 1696 @linkupch
## 1697 @darcymcrae
## 1698 @richcooper
## 1699 @abiolao50826206
## 1700 @owenjones84
## 1701 @gmb
## 1702 @latimes
## 1703 @piersmorgan
## 1704 @tiffanydcross
## 1705 @travelong6
## 1706 @oneyoungworld
## 1707 @domjoly
## 1708 @piersmorganâ\200\231s
## 1709 @donnantwich
## 1710 @garthtoons
## 1711 @piersmorgan
## 1712 @gmb
## 1713 @suzhorton
## 1714 @danielpronych
## 1715 @mariashriver
## 1716 @oprah
## 1717 @bethenny
## 1718 @medium
## 1719 @tylerperry
## 1720 @nygovcuomo
## 1721 @sonalibasak
## 1722 @piersmorgan
## 1723 @gmb
## 1724 @piersmorgan
## 1725 @madonna
## 1726 @people
## 1727 @markaustintv
## 1728 @bbcnews
## 1729 @kickstarter
## 1730 @serenawilliams
## 1731 @latimesent
## 1732 @piersmorgan
550
## 1733 @christicarras
## 1734 @henryhchu
## 1735 @piersmorgan
## 1736 @itv
## 1737 @piersmorgan
## 1738 @piersmorgan
## 1739 @gmb
## 1740 @clarencehouse
## 1741 @lidicelise
## 1742 @latimesent
## 1743 @oprah
## 1744 @peteyr13
## 1745 @frootyf16
## 1746 @tessh420
## 1747 @lottikenith
## 1748 @agathawhisker
## 1749 @lindale22381726
## 1750 @doreenyoung
## 1751 @diana24543285â\200¦
## 1752 @valentinelow
## 1753 @hapkidogal
## 1754 @joyannreid
## 1755 @oprah
## 1756 @msnbc
## 1757 @matthewok15
## 1758 @igotaphelan
## 1759 @serenawilliams
## 1760 @jemelehillâ\200¦
## 1761 @drumarjohnson
## 1762 @barkhatrehan16
## 1763 @bbcbreakfast
## 1764 @tmz
## 1765 @fox411
## 1766 @darveypainted
## 1767 @dandylione
## 1768 @leelakathusing
## 1769 @bbcnews
## 1770 @royalfamily
## 1771 @michelleruiz
## 1772 @andrewcuomo
## 1773 @1stmlw
## 1774 @tmz
## 1775 @bbc5live
## 1776 @majestymagazine
## 1777 @tvnaga01
## 1778 @bbcsounds
## 1779 @gordsuk
## 1780 @willpaddyg
## 1781 @twloha
## 1782 @piersmorgan
## 1783 @piersmorgan
## 1784 @royalfamily
## 1785 @josieweatherbyx
## 1786 @donlemon
551
## 1787 @chrisshipitv
## 1788 @janina
## 1789 @thismorning
## 1790 @it
## 1791 @piersmorgan
## 1792 @itv
## 1793 @rjmyers
## 1794 @sophiewalsh9
## 1795 @cbs
## 1796 @piersmorgan
## 1797 @alexberesfordtv
## 1798 @joyannreid
## 1799 @repmondaire
## 1800 @mondairejones
## 1801 @halfadams
## 1802 @gmb
## 1803 @dailymailuk
## 1804 @glynisspencer
## 1805 @piersmorgan
## 1806 @archiemeghaz
## 1807 @bethenny
## 1808 @piersmorgan
## 1809 @oprah
## 1810 @royalfamily
## 1811 @bethenny
## 1812 @oprah
## 1813 @gingergano
## 1814 @cbs
## 1815 @jodivarunner
## 1816 @piersmorgan
## 1817 @oprah
## 1818 @chrisrickett
## 1819 @itv
## 1820 @gmb
## 1821 @piersmorgan
## 1822 @stryder3601
## 1823 @baaz1107
## 1824 @lifedisrupted
## 1825 @rcolvile
## 1826 @fordm
## 1827 @tamronhall
## 1828 @piersmorgan
## 1829 @gmb
## 1830 @thismorning
## 1831 @schofe
## 1832 @tylerperry
## 1833 @talkradio
## 1834 @juliahb1
## 1835 @piersmorgan
## 1836 @piersmorgan
## 1837 @piersmorgan
## 1838 @mindcharity
## 1839 @oprah
## 1840 @sholamos1
552
## 1841 @royalfamily
## 1842 @kensingtonroyal
## 1843 @piersmorgan
## 1844 @skynewsbreak
## 1845 @veestanko
## 1846 @dmdrake2000
## 1847 @proctergamble
## 1848 @reliablesources
## 1849 @brianstelter
## 1850 @sarahellison
## 1851 @oliverdarcy
## 1852 @dianafalzone
## 1853 @kristenmeinzer
## 1854 @royalreporter
## 1855 @mwadsworthâ\200¦
## 1856 @gmb
## 1857 @megynkelly
## 1858 @whoopigoldberg
## 1859 @beardclub
## 1860 @mailonline
## 1861 @unherd
## 1862 @lamontfrazier4
## 1863 @marcusjdl
## 1864 @sussexhenryviii
## 1865 @twitter
## 1866 @60minutes
## 1867 @megynkelly
## 1868 @chrisshipitv
## 1869 @bellawallerstei
## 1870 @afneil
## 1871 @piersmorgan
## 1872 @andileandydube
## 1873 @chrisshipitv
## 1874 @valentinelow
## 1875 @thetimes
## 1876 @gma
## 1877 @oprah
## 1878 @nytimesworld
## 1879 @cnn
## 1880 @piersmorgan
## 1881 @chrisshipitv
## 1882 @irishtimes
## 1883 @lisamarieboothe
## 1884 @millerej11
## 1885 @ebonyteach
## 1886 @blackstrugglr
## 1887 @linmanuel
## 1888 @pagesix
## 1889 @cornishmanpaper
## 1890 @piersmorgan
## 1891 @oprah
## 1892 @chrissyteigen
## 1893 @lbc
## 1894 @sholamos1
553
## 1895 @piersmorgan
## 1896 @gmb
## 1897 @oprah
## 1898 @esacelebnews
## 1899 @moidem
## 1900 @elizabe41532076
## 1901 @igivenochuck
## 1902 @yusufaq
## 1903 @oprahâ\200¦
## 1904 @royalfamily
## 1905 @clarencehouseâ\200¦
## 1906 @adilray
## 1907 @hhepplewhite
## 1908 @camillatominey
## 1909 @piersmorgan
## 1910 @itvs
## 1911 @heelvsbabyface
## 1912 @skynews
## 1913 @ashna
## 1914 @tvnewshq
## 1915 @piersmorgan
## 1916 @toadmeister
## 1917 @piersmorgan
## 1918 @piersmorgan
## 1919 @itv
## 1920 @lauraalvarezjc
## 1921 @thetameffect
## 1922 @piersmorgan
## 1923 @gmb
## 1924 @forbes
## 1925 @hasbro
## 1926 @piersmorgan
## 1927 @tmz
## 1928 @oprah
## 1929 @dwpscumbags
## 1930 @respectisvital
## 1931 @teenvogue
## 1932 @thecanaryuk
## 1933 @nazirafzal
## 1934 @stewoliver
## 1935 @jocoburn
## 1936 @andy
## 1937 @oprah
## 1938 @cbs
## 1939 @charlycox1
## 1940 @skynewsniall
## 1941 @chrisshipitv
## 1942 @nickmartin
## 1943 @royalreporter
## 1944 @lornatveditor
## 1945 @laurasmithcrewe
## 1946 @kensingtonroyal
## 1947 @kensingtonroyal
## 1948 @royalfamilyâ\200¦
554
## 1949 @poddyr
## 1950 @gmb
## 1951 @piersmorgan
## 1952 @sholamos1
## 1953 @gmb
## 1954 @piersmorgan
## 1955 @chrisshipitv
## 1956 @zezemillz
## 1957 @piersmorgan
## 1958 @cnnpolitics
## 1959 @hillaryclinton
## 1960 @standardnews
## 1961 @indiedykee
## 1962 @scobie
## 1963 @piersmorgan
## 1964 @oprah
## 1965 @dancindoti
## 1966 @yeahthatsreese
## 1967 @piersmorgan
## 1968 @gmb
## 1969 @piersmorgan
## 1970 @gmb
## 1971 @natrose38
## 1972 @marascampo
## 1973 @egbertandalvina
## 1974 @tudorchick1501
## 1975 @greykelvin3
## 1976 @toughtruth12
## 1977 @factsdos
## 1978 @kensingtonroyal
## 1979 @oprah
## 1980 @chrisshipitv
## 1981 @cbs
## 1982 @oprah
## 1983 @bethenny
## 1984 @ezralevant
## 1985 @themjap
## 1986 @clayaiken
## 1987 @jaketapper
## 1988 @royalreporter
## 1989 @schofe
## 1990 @thismorning
## 1991 @mondairejones
## 1992 @kirtydwh
## 1993 @telegraph
## 1994 @camillatominey
## 1995 @byrnesh
## 1996 @piersmorgan
## 1997 @nyamekyeasare
## 1998 @camillatominey
## 1999 @bbctalkback
## 2000 @williamcrawley
## 2001 @princeharry
## 2002 @bbcevex
555
## 2003 @femisorry
## 2004 @gmb
## 2005 @cnn
## 2006 @cnn
## 2007 @imallexx
## 2008 @oprah
## 2009 @independent
## 2010 @32jaynie
## 2011 @meenaharris
## 2012 @oprah
## 2013 @faithmkarimi
## 2014 @jaketapper
## 2015 @oprah
## 2016 @youtubeâ\200¦
## 2017 @piersmorgan
## 2018 @gmb
## 2019 @loyaldefender2k
## 2020 @piersmorgan
## 2021 @officialbarnesy
## 2022 @mailonline
## 2023 @cnn
## 2024 @spreaker
## 2025 @lorrainep59
## 2026 @piersmorgan
## 2027 @petauk
## 2028 @chaokohuk
## 2029 @yamiche
## 2030 @dailymailuk
## 2031 @nathanhgshore
## 2032 @nadinewrites
## 2033 @antiracismday
## 2034 @royalfamily
## 2035 @lordsugar
## 2036 @preetbharara
## 2037 @oprah
## 2038 @tomhfh
## 2039 @piersmorgan
## 2040 @normantwitte7
## 2041 @daisy1158
## 2042 @chrisshipitv
## 2043 @gmb
## 2044 @piersmorgan
## 2045 @gmb
## 2046 @susannareid100
## 2047 @susannareid100
## 2048 @11alivenews
## 2049 @uklabour
## 2050 @changu311
## 2051 @anjna116â\200¦
## 2052 @miraagia
## 2053 @mailonline
## 2054 @nigelfarage
## 2055 @people
## 2056 @adrianparra
556
## 2057 @clarencehouse
## 2058 @defencehq
## 2059 @barbados
## 2060 @lbc
## 2061 @prypriestess
## 2062 @fruityfin
## 2063 @hrkbenowen
## 2064 @volodishchenko
## 2065 @piersmorgan
## 2066 @anjahida
## 2067 @davidyelland
## 2068 @jillfilipovic
## 2069 @thecrownnetflix
## 2070 @jenniebond1
## 2071 @sunnyandshay
## 2072 @thecarolemalone
## 2073 @thejeremyvine
## 2074 @stormhuntley
## 2075 @piersmorgan
## 2076 @tvnewshq
## 2077 @piersmorgan
## 2078 @azulsoul2013
## 2079 @justdoodirty3
## 2080 @iamprettypetty
## 2081 @glamor14kt
## 2082 @farrisflagg
## 2083 @piersmorgan
## 2084 @gmb
## 2085 @tylerperry
## 2086 @piersmorgan
## 2087 @whoizzi
## 2088 @kensingtonroyal
## 2089 @rolandsmartin
## 2090 @emynash
## 2091 @alexberesfordtv
## 2092 @gmb
## 2093 @mrahmednurali
## 2094 @msnbc
## 2095 @dailycaller
## 2096 @jerzey11011
## 2097 @run4urmny
## 2098 @oprah
## 2099 @bethenny
## 2100 @bethanny
## 2101 @ladygrem
## 2102 @tdanevirke
## 2103 @serenawilliams
## 2104 @ijaadee
## 2105 @piersmorgan
## 2106 @piersmorgan
## 2107 @lakesman5
## 2108 @susanhu25307477
## 2109 @piersmorgan
## 2110 @theview
557
## 2111 @scobie
## 2112 @piersmorgan
## 2113 @thehill
## 2114 @olga03713154
## 2115 @yankeewally2
## 2116 @kegeiger
## 2117 @lindale22381726
## 2118 @rupertamargate
## 2119 @springbrad1
## 2120 @zacksgirl3
## 2121 @meafter4â\200¦
## 2122 @ovoqueenn
## 2123 @cbs
## 2124 @gmb
## 2125 @nickdixonitv
## 2126 @piersmorgan
## 2127 @oprah
## 2128 @jemelehill
## 2129 @mwatts3376
## 2130 @piersmorganâ\200\231s
## 2131 @washingtonpost
## 2132 @askplaystation
## 2133 @tvkhaleesi
## 2134 @tarmactorque
## 2135 @ofcom
## 2136 @piersmorgan
## 2137 @gmb
## 2138 @catherinelcp
## 2139 @feistyfl
## 2140 @piersmorgan
## 2141 @piersmorgan
## 2142 @piersmorganðÿðÿ\217¾
## 2143 @thr
## 2144 @alexberesfordtv
## 2145 @itvâ\200¦
## 2146 @burgerkinguk
## 2147 @martinslewis
## 2148 @dmreporter
## 2149 @coldwarsteve
## 2150 @sallytherapist
## 2151 @graziauk
## 2152 @jamesmelville
## 2153 @mrssosbourne
## 2154 @karnythia
## 2155 @shondarhimes
## 2156 @oprah
## 2157 @royalfamily
## 2158 @kensingtonroyal
## 2159 @royalfamily
## 2160 @oprahâ\200¦
## 2161 @yahoonews
## 2162 @mslatoshabrown
## 2163 @blackvotersmtr
## 2164 @royalfamily
558
## 2165 @warbyparker
## 2166 @nytimes
## 2167 @aminaatairuâ\200¦
## 2168 @mailonline
## 2169 @oprah
## 2170 @kigimin
## 2171 @originalfunko
## 2172 @thesocialctv
## 2173 @laineygossip
## 2174 @oprah
## 2175 @katierogers
## 2176 @maggienyt
## 2177 @marklandler
## 2178 @â\200¦
## 2179 @modooborahae
## 2180 @hakahelen
## 2181 @cnn
## 2182 @emilylcarney
## 2183 @theeconomist
## 2184 @oprah
## 2185 @piersmorgan
## 2186 @showbizsecrets
## 2187 @gmb
## 2188 @piersmorgan
## 2189 @antiracismdly
## 2190 @piersmorgan
## 2191 @gmbâ\200¦
## 2192 @geenelly
## 2193 @mailonline
## 2194 @oprah
## 2195 @piersmorgan
## 2196 @gmb
## 2197 @gmb
## 2198 @oprah
## 2199 @cbs
## 2200 @oprah
## 2201 @spoonyman
## 2202 @mrpford
## 2203 @piersmorgan
## 2204 @guardian
## 2205 @piersmorgan
## 2206 @qprsteve1982
## 2207 @ginamcgalliard
## 2208 @buskyta
## 2209 @farah07595123
## 2210 @theangiestanton
## 2211 @msdingo
## 2212 @njmomofboys
## 2213 @piersmorgan
## 2214 @darkskinjaiii
## 2215 @homestuckhoovy
## 2216 @live2tellx
## 2217 @etcanada
## 2218 @piersmorgan
559
## 2219 @theprinceofwoke
## 2220 @oprah
## 2221 @harpersbazaarus
## 2222 @scobie
## 2223 @ayeshahazarika
## 2224 @gmb
## 2225 @theipaper
## 2226 @luvvie
## 2227 @realhughjackman
## 2228 @itv
## 2229 @mrssosbourne
## 2230 @royalfamily
## 2231 @kensingtonroyalâ\200¦
## 2232 @oprah
## 2233 @itsgpriyanka
## 2234 @neetusi27364036
## 2235 @sakshim4hta
## 2236 @tris0580â\200¦
## 2237 @bethenny
## 2238 @piersmorgan
## 2239 @gmb
## 2240 @scottmorrisonmp
## 2241 @yashar
## 2242 @piersmorgan
## 2243 @chriscuomo
## 2244 @donlemon
## 2245 @oprah
## 2246 @nytimes
## 2247 @bethenny
## 2248 @piersmorgan
## 2249 @sawcar
## 2250 @candylush
## 2251 @itvnews
## 2252 @piersmorgan
## 2253 @joyannreid
## 2254 @joyannreid
## 2255 @bwoywonder
## 2256 @pilarofsociety
## 2257 @superscuba83
## 2258 @camillatominey
## 2259 @piersmorgan
## 2260 @twittersecurity
## 2261 @royalfamily
## 2262 @thedailybeast
## 2263 @itv
## 2264 @gmb
## 2265 @winstonsih
## 2266 @piersmorgan
## 2267 @oprah
## 2268 @thecandaceshow
## 2269 @realcandaceo
## 2270 @piersmorgan
## 2271 @joshuapieters
## 2272 @archiemanners
560
## 2273 @jameelajamil
## 2274 @mariahcarey
## 2275 @oprah
## 2276 @chrisshipitv
## 2277 @garyjanetti
## 2278 @btheaquarian
## 2279 @blackstrugglr
## 2280 @ambermruffin
## 2281 @brijh
## 2282 @justdoodirty3
## 2283 @iamprettypetty
## 2284 @glamor14kt
## 2285 @farrisflagg
## 2286 @gayleking
## 2287 @alexberesfordtv
## 2288 @tylerperry
## 2289 @editorianmurray
## 2290 @oprah
## 2291 @oprah
## 2292 @mailonlineâ\200¦
## 2293 @jemelehill
## 2294 @amazingdouglass
## 2295 @bkiila
## 2296 @bethenny
## 2297 @piersmorgan
## 2298 @piersmorgan
## 2299 @joebiden
## 2300 @latimes
## 2301 @chrisshipitv
## 2302 @jeremyvineon5
## 2303 @oprah
## 2304 @serenawilliams
## 2305 @sbawumia
## 2306 @sholamos1
## 2307 @piersmorgan
## 2308 @netflixâ\200¦
## 2309 @oprah
## 2310 @susannareid100
## 2311 @washingtonpost
## 2312 @sussexsquadpod
## 2313 @susannareid100
## 2314 @piersmorgan
## 2315 @oprah
## 2316 @itv
## 2317 @nypost
## 2318 @danekkedtruth
## 2319 @todayshow
## 2320 @nbc
## 2321 @cancelbts
## 2322 @oprah
## 2323 @mariashriver
## 2324 @oprah
## 2325 @dailystar
## 2326 @ayocaesar
561
## 2327 @dailymailuk
## 2328 @wheretonow2015
## 2329 @sassythepatty
## 2330 @samanthamaiden
## 2331 @fififevnick
## 2332 @piersmorgan
## 2333 @theellenshow
## 2334 @enews
## 2335 @james19425573
## 2336 @piersmorgan
## 2337 @murkymeg
## 2338 @potus
## 2339 @kamalaharris
## 2340 @barackobama
## 2341 @michelleobama
## 2342 @optajoe
## 2343 @gayleking
## 2344 @teampelosi
## 2345 @melindagatesâ\200¦
## 2346 @piersmorgan
## 2347 @gmb
## 2348 @camillatominey
## 2349 @newyorkpost
## 2350 @mirrorroyal
## 2351 @mailonline
## 2352 @cbs
## 2353 @oprah
## 2354 @cnn
## 2355 @cnn
## 2356 @photosbynae
## 2357 @jessicacadams
## 2358 @jessicacadams
## 2359 @vas2021
## 2360 @jordanwearamask
## 2361 @mickie310
## 2362 @originalfunko
## 2363 @cbs
## 2364 @bethenny
## 2365 @oprah
## 2366 @mindcharity
## 2367 @piersmorgan
## 2368 @bonn1egreer
## 2369 @thephysicsgirl
## 2370 @alichat66
## 2371 @oprah
## 2372 @hallmarkchannel
## 2373 @brittlwriter
## 2374 @danielmaviiin
## 2375 @thecrownnetflix
## 2376 @oprah
## 2377 @merrysomerry
## 2378 @sathnam
## 2379 @kensingtonroyal
## 2380 @darrenadam
562
## 2381 @lbc
## 2382 @nypost
## 2383 @tmzlive
## 2384 @laotianrockrat
## 2385 @pressgazette
## 2386 @editorsuk
## 2387 @pattyarquette
## 2388 @piersmorgan
## 2389 @mailonline
## 2390 @piersmorgan
## 2391 @gmb
## 2392 @tyreeck112
## 2393 @poppycoxanasni1
## 2394 @realitybits101
## 2395 @murkymeg
## 2396 @spikedonline
## 2397 @rowskieurobrit
## 2398 @paulmasonnews
## 2399 @gma
## 2400 @valentinelow
## 2401 @justdoodirty3
## 2402 @jimmiemckinnon
## 2403 @farrisflagg
## 2404 @glamor14kt
## 2405 @iamprettypetty
## 2406 @clady62
## 2407 @kenanthompson
## 2408 @piersmorgan
## 2409 @oprah
## 2410 @cbs
## 2411 @dailymirror
## 2412 @rjmyers
## 2413 @azulsoul2013
## 2414 @brijh
## 2415 @iamprettypetty
## 2416 @glamor14kt
## 2417 @farrisflagg
## 2418 @andersleijersta
## 2419 @piersmorganâ\200¦
## 2420 @socialistsunday
## 2421 @nyckatyc
## 2422 @nytimes
## 2423 @robdavid
## 2424 @thecrownnetflix
## 2425 @thevoodoocow
## 2426 @latimesent
## 2427 @piersmorgan
## 2428 @christicarras
## 2429 @henryhchu
## 2430 @halfadams
## 2431 @andrejpwalker
## 2432 @somenycguy
## 2433 @cbsthismorning
## 2434 @gmb
563
## 2435 @itv
## 2436 @piersmorgan
## 2437 @susannareid100
## 2438 @mindcharity
## 2439 @oprah
## 2440 @alexberesfordtv
## 2441 @trishagoddardâ\200¦
## 2442 @johncon72636524
## 2443 @ginayashere
## 2444 @mrssosbourne
## 2445 @piersmorgan
## 2446 @nigellai5e
## 2447 @mariebe10098426
## 2448 @piersmorgan
## 2449 @oprah
## 2450 @chrisshipitv
## 2451 @davemacladd
## 2452 @iamcardib
## 2453 @pharrymeghan
## 2454 @thetimes
## 2455 @piersmorgan
## 2456 @oprah
## 2457 @joenbc
## 2458 @terrihansen
## 2459 @etcanada
## 2460 @donaldjtrumpjr
## 2461 @bethenny
## 2462 @cbsthismorning
## 2463 @oprah
## 2464 @metroents
## 2465 @cbsnews
## 2466 @chrislhayes
## 2467 @oprah
## 2468 @cnnbusiness
## 2469 @kmov
## 2470 @maude28593392
## 2471 @chrislhayes
## 2472 @karnythia
## 2473 @piersmorgan
## 2474 @delilahc401
## 2475 @oprah
## 2476 @latenightseth
## 2477 @ambermruffin
## 2478 @bbcfrediani
## 2479 @alykhansatchu
## 2480 @800273talk
## 2481 @rthontwatness
## 2482 @hillaryclinton
## 2483 @dejatheviewpod
## 2484 @bethenny
## 2485 @bethenny
## 2486 @cbsthismorning
## 2487 @owntv
## 2488 @piersmorgan
564
## 2489 @independent
## 2490 @peterhunt
## 2491 @chelseahandler
## 2492 @piersmorgan
## 2493 @mrssosbourne
## 2494 @dfiduk
## 2495 @piersmorgan
## 2496 @gmb
## 2497 @thepfashionista
## 2498 @alexberesfordtv
## 2499 @roarquette
## 2500 @thecrownnetflix
## 2501 @boblisterpoole
## 2502 @suzanneevans1
## 2503 @calvinrobinson
## 2504 @dailymailuk
## 2505 @piersmorgan
## 2506 @gmb
## 2507 @kenennewi
## 2508 @abigailspencer
## 2509 @dianajmanwaring
## 2510 @royalreporter
## 2511 @gertsroyals
## 2512 @oprah
## 2513 @terrytyler4
## 2514 @suebavey
## 2515 @becleehansen
## 2516 @lisawilkinson
## 2517 @katytapper
## 2518 @mnet
## 2519 @oprah
## 2520 @gmb
## 2521 @piersmorgan
## 2522 @susannareid100
## 2523 @piersmorgan
## 2524 @oprah
## 2525 @douglaskmurray
## 2526 @nypost
## 2527 @surekingodds
## 2528 @debitjohnson
## 2529 @karenwestberg
## 2530 @wistfulcass
## 2531 @thecrownnetflix
## 2532 @tuckercarlson
## 2533 @respectisvital
## 2534 @garagefloor
## 2535 @tobiasellwood
## 2536 @piersmorgan
## 2537 @gmb
## 2538 @oprah
## 2539 @foxnews
## 2540 @piersmorgan
## 2541 @lizpeek
## 2542 @breannamorello
565
## 2543 @joimariewrites
## 2544 @justdoodirty3
## 2545 @azulsoul2013
## 2546 @iamprettypetty
## 2547 @glamor14kt
## 2548 @farrisflagg
## 2549 @mailonline
## 2550 @enienkela
## 2551 @skynews
## 2552 @piersmorgan
## 2553 @thedailybeast
## 2554 @lizzieitv
## 2555 @theview
## 2556 @latimes
## 2557 @thismorning
## 2558 @schofe
## 2559 @hollywills
## 2560 @piersmorgan
## 2561 @misteex
## 2562 @jeremyvineon5
## 2563 @sholamos1
## 2564 @thecrownnetflix
## 2565 @piersmorgan
## 2566 @gmb
## 2567 @bbchindi
## 2568 @littleromulus
## 2569 @lindava77482107
## 2570 @berniceking
## 2571 @benshapiro
## 2572 @piersmorgan
## 2573 @youtube
## 2574 @itvnews
## 2575 @piersmorgan
## 2576 @piersmorgan
## 2577 @hannahdrake628
## 2578 @oprahs
## 2579 @royalfamily
## 2580 @ohsofrieda
## 2581 @purpleisdabest
## 2582 @eshamanagement
## 2583 @doinglifeeasily
## 2584 @rosequartz4
## 2585 @chbrugge
## 2586 @marybl62
## 2587 @aceomalley89â\200¦
## 2588 @theamandagorman
## 2589 @piersmorgan
## 2590 @chrisshipitv
## 2591 @piersmorgan
## 2592 @piersmorgan
## 2593 @sunny
## 2594 @theview
## 2595 @whoopigoldberg
## 2596 @royalfamily
566
## 2597 @kensingtonroyal
## 2598 @royalfamily
## 2599 @gmb
## 2600 @piersmorgan
## 2601 @susannareid100
## 2602 @cbsthismorning
## 2603 @oprah
## 2604 @soledadobrien
## 2605 @snicklin1
## 2606 @alexberesfordtv
## 2607 @piersmorgan
## 2608 @femail
## 2609 @sunderlanduni
## 2610 @cbs
## 2611 @alexberesfordtv
## 2612 @piersmorgan
## 2613 @ualreadylate
## 2614 @spudqueen19
## 2615 @cbsthismorning
## 2616 @whatmegwore
## 2617 @oprah
## 2618 @hunteryharris
## 2619 @kellyclarkson
## 2620 @piersmorgan
## 2621 @mspackyetti
## 2622 @sophieneiman
## 2623 @promofiverrgigs
## 2624 @royalfamily
## 2625 @ukparliament
## 2626 @spencerhowson
## 2627 @drjessc
## 2628 @joecostigan
## 2629 @twitter
## 2630 @realcandaceo
## 2631 @joebiden
## 2632 @theeehottie
## 2633 @gmb
## 2634 @emmakennedy
## 2635 @freepeeper
## 2636 @dailymail
## 2637 @jenniebond1
## 2638 @sunnyandshay
## 2639 @thecarolemalone
## 2640 @thejeremyvine
## 2641 @stormhuntley
## 2642 @kensingtonroyal
## 2643 @simigarewal
## 2644 @whitehouse
## 2645 @clarencehouse
## 2646 @malalafund
## 2647 @juttermanning
## 2648 @clarebfferguson
## 2649 @people
## 2650 @tmz
567
## 2651 @vanjones68
## 2652 @oprah
## 2653 @cnn
## 2654 @tariqnasheed
## 2655 @tylerperry
## 2656 @jasminedotiwala
## 2657 @furqanreisen
## 2658 @ammaasante
## 2659 @oprah
## 2660 @megynkelly
## 2661 @kjuliek
## 2662 @michael69547659
## 2663 @mrjamesob
## 2664 @dailymailuk
## 2665 @itvnews
## 2666 @piersmorgan
## 2667 @bethenny
## 2668 @oprah
## 2669 @davido
## 2670 @idandizzy
## 2671 @bbcnews
## 2672 @piersmorgan
## 2673 @wildseasees
## 2674 @bethenny
## 2675 @oprah
## 2676 @dorindamedley
## 2677 @vanjones68
## 2678 @oprah
## 2679 @cnn
## 2680 @colleenholt20
## 2681 @notcapnamerica
## 2682 @piersmorgan
## 2683 @beckylendrum
## 2684 @ralflittle
## 2685 @piersmorgan
## 2686 @karlstefanovic
## 2687 @brettmcleodâ\200¦
## 2688 @royalfamily
## 2689 @chrissycole
## 2690 @piffilicious
## 2691 @kaisthadeepak
## 2692 @cbs
## 2693 @oprah
## 2694 @piersmorgan
## 2695 @thisisrory
## 2696 @strongblacklead
## 2697 @piersmorgan
## 2698 @piersmorgan
## 2699 @johnfromsoho
## 2700 @youtube
## 2701 @gma
## 2702 @ukdomainnames
## 2703 @vladduthierscbs
## 2704 @realcandaceo
568
## 2705 @benshapiro
## 2706 @oprah
## 2707 @oprah
## 2708 @realcandaceo
## 2709 @justinwelby
## 2710 @tjfrancislive
## 2711 @cbs
## 2712 @oprah
## 2713 @royalfamily
## 2714 @oprah
## 2715 @nickcarton1
## 2716 @etcanada
## 2717 @labayouboy
## 2718 @newscomauhq
## 2719 @halfadams
## 2720 @mspeachz1
## 2721 @megynkelly
## 2722 @karnythia
## 2723 @mailonline
## 2724 @dailymailuk
## 2725 @midwincharles
## 2726 @piersmorgan
## 2727 @rimonima
## 2728 @bethenny
## 2729 @abc
## 2730 @tamronhall
## 2731 @blackwomenviews
## 2732 @aditijuneja3
## 2733 @profmmurray
## 2734 @sifillldf
## 2735 @royalsuitor
## 2736 @govuk
## 2737 @maxfostercnn
## 2738 @franzprusse
## 2739 @baebradbury
## 2740 @melissaafrancis
## 2741 @piersmorgan
## 2742 @pharrymeghanðÿœðÿ\231\217ðÿ\217¾ðÿºðÿ¸
## 2743 @mailonline
## 2744 @tweetiesweeti13
## 2745 @oprah
## 2746 @piersmorgan
## 2747 @rohinisgh
## 2748 @realcandaceo
## 2749 @thismorning
## 2750 @itv
## 2751 @scobie
## 2752 @scobie
## 2753 @chrisshipitv
## 2754 @mspackyetti
## 2755 @tonysheps
## 2756 @anne12345610
## 2757 @bethenny
## 2758 @oprah
569
## 2759 @piersmorgan
## 2760 @royalfamily
## 2761 @un
## 2762 @cbsnews
## 2763 @cnn
## 2764 @shelaghfogarty
## 2765 @etcanada
## 2766 @gayleking
## 2767 @oprah
## 2768 @dcexaminer
## 2769 @kavn
## 2770 @uklabour
## 2771 @olidugmore
## 2772 @piersmorgan
## 2773 @dailymail
## 2774 @gmb
## 2775 @piersmorgan
## 2776 @itvstudios
## 2777 @gerryoliver1
## 2778 @annabritannia
## 2779 @bbcradioscot
## 2780 @kayeadams
## 2781 @bbcworld
## 2782 @chrisshipitv
## 2783 @piersmorgan
## 2784 @piersmorgan
## 2785 @ofcom
## 2786 @piersmorgan
## 2787 @oprah
## 2788 @piersmorgan
## 2789 @macleans
## 2790 @patriciatreble
## 2791 @realtonysm1th
## 2792 @murkymeg
## 2793 @chrisshipitv
## 2794 @gmb
## 2795 @harrietsergeant
## 2796 @pbrit6
## 2797 @gmb
## 2798 @piersmorgan
## 2799 @sholamos1
## 2800 @therealtsmadison
## 2801 @makerepost
## 2802 @oprah
## 2803 @kveller
## 2804 @royalfamily
## 2805 @t5monkey
## 2806 @meghanmood
## 2807 @englishcoastuk
## 2808 @pritipatel
## 2809 @oprah
## 2810 @rachelsjohnson
## 2811 @jakekanter
## 2812 @oprah
570
## 2813 @oprah
## 2814 @piersmorgan
## 2815 @clarencehouse
## 2816 @piersmorgan
## 2817 @gmb
## 2818 @tallulahb2012
## 2819 @chrisshipitv
## 2820 @alexberesfordtv
## 2821 @gmb
## 2822 @piersmorgan
## 2823 @alexberesfordtv
## 2824 @promofiverrgigs
## 2825 @alexberesfordtv
## 2826 @piersmorgan
## 2827 @youtubeâ\200¦
## 2828 @piersmorgan
## 2829 @piersmorgan
## 2830 @juttermanning
## 2831 @duchessmeghn
## 2832 @mjburgess
## 2833 @halfadams
## 2834 @lisamarieboothe
## 2835 @redailymail
## 2836 @meetjoeblack63
## 2837 @halfadams
## 2838 @dailystar
## 2839 @piersmorgan
## 2840 @furqanreisen
## 2841 @glamourmag
## 2842 @allykurtun
## 2843 @leaveeuofficial
## 2844 @bakarisellers
## 2845 @ezralevant
## 2846 @piersmorgan
## 2847 @royalfamily
## 2848 @serenawilliams
## 2849 @oprah
## 2850 @cnn
## 2851 @wsj
## 2852 @cnn
## 2853 @washingtonpost
## 2854 @piersmorgan
## 2855 @reallyamerican1
## 2856 @piersmorgan
## 2857 @oprah
## 2858 @oprah
## 2859 @itv
## 2860 @mariashriver
## 2861 @oprah
## 2862 @alexeddy21
## 2863 @sibilaur
## 2864 @etcanada
## 2865 @latimesent
## 2866 @chrissyteigen
571
## 2867 @camillatominey
## 2868 @ctvnews
## 2869 @bravobrav0brav0
## 2870 @andy
## 2871 @gmb
## 2872 @trishagoddard
## 2873 @piersmorgan
## 2874 @kinseyschofield
## 2875 @scobie
## 2876 @gmb
## 2877 @itv
## 2878 @breitbartnews
## 2879 @piersmorgan
## 2880 @piersmorgan
## 2881 @debbierodwelld1
## 2882 @gmb
## 2883 @scobie
## 2884 @scobieâ\200¦
## 2885 @liamdeakin
## 2886 @mailonline
## 2887 @gmb
## 2888 @piersmorgan
## 2889 @promofiverrgigs
## 2890 @oprah
## 2891 @aaishahl
## 2892 @bbcnews
## 2893 @10downingstreet
## 2894 @royalfamily
## 2895 @nilegardiner
## 2896 @eileen54292402
## 2897 @mailonline
## 2898 @incognito1922
## 2899 @nationalpost
## 2900 @piersmorgan
## 2901 @spikedonline
## 2902 @livingliberal1
## 2903 @tashamac17
## 2904 @theamandagorman
## 2905 @piersmorgan
## 2906 @oprah
## 2907 @newsmax
## 2908 @nilegardiner
## 2909 @oprah
## 2910 @tylerperry
## 2911 @nadiakhomami
## 2912 @royalfamily
## 2913 @royalfamily
## 2914 @spencermorgan93
## 2915 @theview
## 2916 @meghanmdaily
## 2917 @scobie
## 2918 @darrengrimes
## 2919 @royalfamily
## 2920 @nicolareal
572
## 2921 @royalreporter
## 2922 @adamsculthorpe
## 2923 @nickmartin
## 2924 @joanmatelli
## 2925 @karleighsmith87
## 2926 @kylegriffin1
## 2927 @piersmorgan
## 2928 @gmb
## 2929 @heidiec5
## 2930 @mailonline
## 2931 @cbsthismorning
## 2932 @shawna
## 2933 @theheraldsunâ\200¦
## 2934 @bellbells12
## 2935 @westcoastwoman7
## 2936 @originalstrachs
## 2937 @sharetalknews
## 2938 @garethcave
## 2939 @zakstraderscafe
## 2940 @biocity
## 2941 @royalfamily
## 2942 @kensingtonroyal
## 2943 @piersmorganâ\200¦
## 2944 @njmomofboys
## 2945 @paroyal
## 2946 @ledbettercarly
## 2947 @thecrownnetflix
## 2948 @piersmorgan
## 2949 @50lux14
## 2950 @mabintou
## 2951 @oprah
## 2952 @leaveeuofficial
## 2953 @ksemamajama
## 2954 @ladygravemaster
## 2955 @austinchanning
## 2956 @itvnews
## 2957 @oprah
## 2958 @dailyexpress
## 2959 @jonnygabriel
## 2960 @paramountplus
## 2961 @cbs
## 2962 @cbsnews
## 2963 @itv
## 2964 @royalfamily
## 2965 @kensingtonroyal
## 2966 @clarencehouse
## 2967 @williamsruto
## 2968 @ajplus
## 2969 @chnkymnky4eva
## 2970 @kensingtonroyal
## 2971 @cpkfrozen
## 2972 @motherjones
## 2973 @chrislhayes
## 2974 @museummammy
573
## 2975 @oprah
## 2976 @dailymirror
## 2977 @greenfixed1
## 2978 @nigelfarage
## 2979 @piersmorgan
## 2980 @lordsugar
## 2981 @eamonnholmes
## 2982 @speakerpelosi
## 2983 @justintrudeau
## 2984 @vanessanguyen28
## 2985 @piersmorgan
## 2986 @aprildryan
## 2987 @sholamos1
## 2988 @serenawilliams
## 2989 @oprah
## 2990 @huffpost
## 2991 @keiths47
## 2992 @piersmorgan
## 2993 @andrejpwalker
## 2994 @pauldbowen
## 2995 @bonniegillespie
## 2996 @justinbaragona
## 2997 @atrupar
## 2998 @adrianedmondson
## 2999 @pgmcqueen
## 3000 @strandjunker
## 3001 @piersmorgan
## 3002 @popcrave
## 3003 @sperrypeoplemag
## 3004 @megxit
## 3005 @hulu
## 3006 @breaknnews1
## 3007 @wernhamblogg
## 3008 @thesloughbranch
## 3009 @piersmorgan
## 3010 @aubameyang7
## 3011 @piersmorgan
## 3012 @piersmorgan
## 3013 @stillgray
## 3014 @kensingtonroyal
## 3015 @dukefuqua
## 3016 @oprah
## 3017 @endaisfj
## 3018 @sherylunderwood
## 3019 @cmclymer
## 3020 @jackroyston
## 3021 @piersmorgan
## 3022 @gmb
## 3023 @beyonce
## 3024 @funkflex
## 3025 @oprah
## 3026 @nytimes
## 3027 @danaschwartzzz
## 3028 @piersmorgan
574
## 3029 @huffpost
## 3030 @lbc
## 3031 @nickferrarilbc
## 3032 @piersmorgan
## 3033 @oprah
## 3034 @harryandmeghan
## 3035 @bananarepublic
## 3036 @jansinclair9
## 3037 @piersmorgan
## 3038 @ueajournalism
## 3039 @oprahâ\200¦
## 3040 @piersmorgan
## 3041 @halfadams
## 3042 @10downingstreet
## 3043 @royalfamily
## 3044 @potus
## 3045 @vp
## 3046 @presssec
## 3047 @ussupremecourt
## 3048 @usatoday
## 3049 @cnnmeghanmarkle
## 3050 @pattyarquette
## 3051 @brendanoneill
## 3052 @wuksbackup
## 3053 @murkymeg
## 3054 @chrisshipitv
## 3055 @cbs
## 3056 @royanikkhah
## 3057 @oprah
## 3058 @mailonline
## 3059 @itvnews
## 3060 @gmb
## 3061 @susannareid100
## 3062 @piersmorgan
## 3063 @oprah
## 3064 @people
## 3065 @jayman29439413
## 3066 @goonerbereal
## 3067 @lukeyy6
## 3068 @kirstycorbett
## 3069 @piersmorgan
## 3070 @oprah
## 3071 @dailymailuk
## 3072 @smugshua
## 3073 @gmb
## 3074 @piersmorgan
## 3075 @susannareid100
## 3076 @royalweddingpodâ\200¦
## 3077 @oprah
## 3078 @michelleobama
## 3079 @shaund442
## 3080 @huttonrkr
## 3081 @charliemortdec3
## 3082 @pizzasandpearls
575
## 3083 @royalfamily
## 3084 @clarencehouse
## 3085 @kensingtonroyal
## 3086 @itv
## 3087 @leahsgardn
## 3088 @halfadams
## 3089 @declynchwriter
## 3090 @csurvivor9
## 3091 @professorcrunk
## 3092 @katzish
## 3093 @oprah
## 3094 @tylerperry
## 3095 @cnn
## 3096 @piersmorgan
## 3097 @thebabylonbee
## 3098 @mariashriver
## 3099 @oprah
## 3100 @cochrane07
## 3101 @jaymerz
## 3102 @andy
## 3103 @piersmorgan
## 3104 @gmb
## 3105 @bbcbreakfast
## 3106 @independent
## 3107 @owntv
## 3108 @oprah
## 3109 @oprahmagazine
## 3110 @rebbacaprice
## 3111 @gofakeyourselfm
## 3112 @angryblacklady
## 3113 @oprah
## 3114 @kamalaharris
## 3115 @theamandagormanâ\200¦
## 3116 @royaldickie
## 3117 @scobie
## 3118 @feministabulous
## 3119 @dailymailuk
## 3120 @dailymailuk
## 3121 @meghanmarkle81
## 3122 @dailymail
## 3123 @oprah
## 3124 @serenawilliams
## 3125 @royalfamily
## 3126 @piersmorgan
## 3127 @royalfamily
## 3128 @kensingtonroyal
## 3129 @vicderbyshire
## 3130 @itv
## 3131 @itvhub
## 3132 @mslizmcc
## 3133 @ralflittle
## 3134 @bencsmoke
## 3135 @bencsmoke
## 3136 @samaaiibtishaam
576
## 3137 @karenc43555283
## 3138 @tomhfh
## 3139 @chrisshipitv
## 3140 @cbs
## 3141 @nypost
## 3142 @thedukeofyork
## 3143 @bbcpolitics
## 3144 @talkradio
## 3145 @bbcnews
## 3146 @skynews
## 3147 @jumpedforjoi
## 3148 @oprah
## 3149 @oprah
## 3150 @gayleking
## 3151 @royalfamily
## 3152 @pagesix
## 3153 @cmclymer
## 3154 @mailonline
## 3155 @royalfamily
## 3156 @nickboro1
## 3157 @bbclaurak
## 3158 @independent
## 3159 @cnn
## 3160 @oprah
## 3161 @oprah
## 3162 @alexberesfordtv
## 3163 @oprah
## 3164 @boblisterpoole
## 3165 @aliceetches
## 3166 @bbcnews
## 3167 @bbcpolitics
## 3168 @adamfleming
## 3169 @sparkyxxx
## 3170 @terryelaineh1
## 3171 @itv
## 3172 @foxnews
## 3173 @telegraph
## 3174 @hobbitoncentral
## 3175 @coolgrandad
## 3176 @mailonline
## 3177 @gmb
## 3178 @bbcbreaking
## 3179 @bbcworld
## 3180 @camanpour
## 3181 @bbcworld
## 3182 @beanpolitical
## 3183 @andylassner
## 3184 @piersmorgan
## 3185 @piersmorgan
## 3186 @kensingtonroyalâ\200¦
## 3187 @murkymeg
## 3188 @crikeynews
## 3189 @lordsugar
## 3190 @oprah
577
## 3191 @feministabulous
## 3192 @enews
## 3193 @piersmorgan
## 3194 @nationalecrime
## 3195 @iskandrah
## 3196 @dailymailuk
## 3197 @dailyexpress
## 3198 @bbcnews
## 3199 @mailonlineâ\200¦
## 3200 @misslucyp
## 3201 @officialore
## 3202 @andieplace
## 3203 @cnn
## 3204 @theamandagorman
## 3205 @chipshopbird
## 3206 @gmb
## 3207 @samaritans
## 3208 @sparklemeghan
## 3209 @carolsankar
## 3210 @patrickbetdavid
## 3211 @independent
## 3212 @jelani9
## 3213 @ivysznn
## 3214 @austinmorley402
## 3215 @oprah
## 3216 @marklandler
## 3217 @latimes
## 3218 @gmb
## 3219 @piersmorgan
## 3220 @sholamos1
## 3221 @piersmorgan
## 3222 @piersmorgan
## 3223 @alibunkallsky
## 3224 @eveningstandard
## 3225 @mailonline
## 3226 @jasminedotiwala
## 3227 @cbsthismorning
## 3228 @oprah
## 3229 @kolbeygardner
## 3230 @janina
## 3231 @piersmorgan
## 3232 @telegraph
## 3233 @gmb
## 3234 @susannareid100
## 3235 @royalfamily
## 3236 @victoriaarbiter
## 3237 @royaldickie
## 3238 @royalbiographer
## 3239 @rfitzwilliams
## 3240 @godblesstofu
## 3241 @piersmorgan
## 3242 @newscomauâ\200¦
## 3243 @aundreainfl
## 3244 @thepensivepod
578
## 3245 @alext0dd
## 3246 @dowjones
## 3247 @joebiden
## 3248 @piersmorgan
## 3249 @oprah
## 3250 @alinaka
## 3251 @royalfamily
## 3252 @carolecadwalla
## 3253 @royalfamily
## 3254 @wolfiesmom
## 3255 @oprah
## 3256 @piersmorgan
## 3257 @mnet
## 3258 @piersmorgan
## 3259 @cbs
## 3260 @oprah
## 3261 @kellypd79
## 3262 @boygeorge
## 3263 @cbsthismorning
## 3264 @iamchanteezy
## 3265 @iamchanteezy
## 3266 @msterrymcmillan
## 3267 @royalfamily
## 3268 @kensingtonroyal
## 3269 @maria36222846
## 3270 @mrssosbourne
## 3271 @lozzafox
## 3272 @itsthebrandi
## 3273 @kensingtonroyal
## 3274 @glennkesslerwp
## 3275 @goldmansachs
## 3276 @cbsthismorning
## 3277 @cbs
## 3278 @oprah
## 3279 @piersmorganâ´s
## 3280 @piersmorgan
## 3281 @sperrypeoplemag
## 3282 @kensingtonroyalâ\200¦
## 3283 @piersmorgancan
## 3284 @lisamarieboothe
## 3285 @chrissyteigen
## 3286 @sputnikint
## 3287 @reallorraine
## 3288 @thedukeofyork
## 3289 @kensingtonroyal
## 3290 @royalfamily
## 3291 @piersmorgan
## 3292 @jeffpill
## 3293 @caroline1884
## 3294 @danwootton
## 3295 @kevinmaguire
## 3296 @dailymirror
## 3297 @only1josh
## 3298 @10downingstreet
579
## 3299 @royalfamily
## 3300 @potus
## 3301 @vp
## 3302 @presssec
## 3303 @ussupremecourt
## 3304 @usatoday
## 3305 @cnnit
## 3306 @gb1965uk
## 3307 @dailymailuk
## 3308 @piersmorganâ\200¦
## 3309 @piersmorgan
## 3310 @piersmorgan
## 3311 @sholamos1
## 3312 @bethenny
## 3313 @monicalewinsky
## 3314 @nypost
## 3315 @superscuba83
## 3316 @adamboultonsky
## 3317 @katieraydee
## 3318 @donaldjtrumpjr
## 3319 @gayleking
## 3320 @oprah
## 3321 @norahodonnell
## 3322 @piersmorgan
## 3323 @piersmorgan
## 3324 @breitbartlondon
## 3325 @theview
## 3326 @piersmorgan
## 3327 @gmb
## 3328 @theview
## 3329 @piersmorgan
## 3330 @twitter
## 3331 @parlerapp
## 3332 @thismorning
## 3333 @youtube
## 3334 @oprah
## 3335 @majorbiden2
## 3336 @joshuapieters
## 3337 @archiemanners
## 3338 @rolandsmartin
## 3339 @oprah
## 3340 @daaronovitch
## 3341 @subrompton
## 3342 @thetimes
## 3343 @oprahâ\200¦
## 3344 @cristianovill20
## 3345 @thedailybeast
## 3346 @alexiden3
## 3347 @elcontador2000
## 3348 @oprah
## 3349 @titusnation
## 3350 @twitter
## 3351 @meghanmarkle
## 3352 @amy93166252
580
## 3353 @heidimontag
## 3354 @afuathescot
## 3355 @serenawilliams
## 3356 @oprah
## 3357 @nytimes
## 3358 @bbcnews
## 3359 @holstat
## 3360 @therecount
## 3361 @piersmorgan
## 3362 @itv
## 3363 @rachelchinourir
## 3364 @megundressed
## 3365 @itv
## 3366 @priceycharlie
## 3367 @syco
## 3368 @simoncowell
## 3369 @sonymusicuk
## 3370 @piersmorganâ\200\231s
## 3371 @piersmorgan
## 3372 @cbsâ\200¦
## 3373 @simigarewal
## 3374 @seanyyz
## 3375 @munaabdiphd
## 3376 @piersmorgan
## 3377 @kittweeter
## 3378 @metimazis
## 3379 @jjdoon
## 3380 @smitheister
## 3381 @alexberesfordtv
## 3382 @royalfamily
## 3383 @bbcnews
## 3384 @piersmorgan
## 3385 @t0nit0ne
## 3386 @magalidmathias
## 3387 @marinahyde
## 3388 @megynkelly
## 3389 @christianwalk1r
## 3390 @herschelwalker
## 3391 @apentertainment
## 3392 @theovalpawffice
## 3393 @potus
## 3394 @80svlsion
## 3395 @harryandmeghan1
## 3396 @sam08799263
## 3397 @youtube
## 3398 @gma
## 3399 @royalfamily
## 3400 @kensingtonroyal
## 3401 @blackwomenviews
## 3402 @royalfamily
## 3403 @kensingtonroyal
## 3404 @vrsvirginia
## 3405 @drraggarwal
## 3406 @thecanaryukâ\200¦
581
## 3407 @trauch21
## 3408 @skynews
## 3409 @oprah
## 3410 @pharrymeghan
## 3411 @scobie
## 3412 @dannypellegrino
## 3413 @yankeewally2
## 3414 @ladycolincampb
## 3415 @piersmorgan
## 3416 @celebrityradio
## 3417 @alexberesfordtv
## 3418 @halfadams
## 3419 @serenawilliams
## 3420 @wptvâ\200¦
## 3421 @piersmorgan
## 3422 @decider
## 3423 @meenaharris
## 3424 @piersmorgan
## 3425 @piersmorgan
## 3426 @piersmorgan
## 3427 @gmb
## 3428 @mindcharityâ\200¦
## 3429 @chrisrickett
## 3430 @alexberesfordtv
## 3431 @susannareid100
## 3432 @halfadams
## 3433 @aprildryanâ\200¦
## 3434 @forumsmeghan
## 3435 @emmytargaryen
## 3436 @cmclymer
## 3437 @oprah
## 3438 @aprildryan
## 3439 @oprah
## 3440 @royalfamily
## 3441 @piersmorgan
## 3442 @newjonnyberlin
## 3443 @streetw13266464
## 3444 @cbsnews
## 3445 @gmb
## 3446 @piersmorgan
## 3447 @hootiehoo42
## 3448 @andylassner
## 3449 @tylerperry
## 3450 @marymacrory
## 3451 @dailyexpress
## 3452 @oprah
## 3453 @monr0we
## 3454 @kojorichmond
## 3455 @royalfamily
## 3456 @nationalecrime
## 3457 @kapahater
## 3458 @netflix
## 3459 @thecrownnetflix
## 3460 @cbs
582
## 3461 @oprah
## 3462 @briancathcart
## 3463 @valentinelow
## 3464 @kensingtonroyal
## 3465 @clarencehouse
## 3466 @megynkelly
## 3467 @piersmorgan
## 3468 @mindcharity
## 3469 @piersmorgan
## 3470 @yankeewally2
## 3471 @superscuba83
## 3472 @murkymeg
## 3473 @celtnews
## 3474 @youtube
## 3475 @abigailspencer
## 3476 @tudorchick1501
## 3477 @diversity4me
## 3478 @aryanpaladin
## 3479 @unsubtledesi
## 3480 @oprah
## 3481 @priceisright
## 3482 @gatitonic1968
## 3483 @oprah
## 3484 @banishedbernie
## 3485 @suitspeacock
## 3486 @genellealdred
## 3487 @wandaxstony
## 3488 @originalfunko
## 3489 @gmb
## 3490 @piersmorgan
## 3491 @tptofficial
## 3492 @cbsnews
## 3493 @oprah
## 3494 @dailymirror
## 3495 @oprah
## 3496 @jaybeecher
## 3497 @valtigress
## 3498 @cnni
## 3499 @oprah
## 3500 @leaveeuofficial
## 3501 @bethenny
## 3502 @oprah
## 3503 @rclark98
## 3504 @jeremyvineon5
## 3505 @tomswarbrick1
## 3506 @pharrymeghan
## 3507 @lisawilkinson
## 3508 @variety
## 3509 @bradleywhitford
## 3510 @piersmorgan
## 3511 @veritas1701
## 3512 @oprah
## 3513 @chrisshipitv
## 3514 @meenaharris
583
## 3515 @crystal3ortiz
## 3516 @cadymcclain
## 3517 @videofiverr
## 3518 @lewyb2013
## 3519 @sherylunderwood
## 3520 @leaveeuofficial
## 3521 @royalfamily
## 3522 @kensingtonroyal
## 3523 @clarencehouse
## 3524 @royalfamily
## 3525 @telegraph
## 3526 @bethenny
## 3527 @elsaangel19
## 3528 @bbcworld
## 3529 @oprah
## 3530 @bpdbattler
## 3531 @piersmorgan
## 3532 @halfadams
## 3533 @jemnyc
## 3534 @piersmorgan
## 3535 @royalfamily
## 3536 @oprahs
## 3537 @budapes83295917
## 3538 @guardian
## 3539 @georebekah
## 3540 @mollyjongfast
## 3541 @thetimes
## 3542 @thejeremyvine
## 3543 @louloula10
## 3544 @piersmorgan
## 3545 @arsenal
## 3546 @narcbehavior
## 3547 @csomerton
## 3548 @scobie
## 3549 @oprah
## 3550 @cbs
## 3551 @piersmorgan
## 3552 @itw4sntme
## 3553 @abcnews
## 3554 @piersmorgan
## 3555 @piersmorgan
## 3556 @oprah
## 3557 @piersmorgan
## 3558 @trailerswift69
## 3559 @thismorning
## 3560 @janina
## 3561 @havetstorm
## 3562 @uncasper
## 3563 @megynkelly
## 3564 @itvnews
## 3565 @piersmorgan
## 3566 @piersmorgan
## 3567 @piersmorgan
## 3568 @md2588
584
## 3569 @maya86b
## 3570 @fatfacedtwit
## 3571 @piersmorgan
## 3572 @angelin25395575
## 3573 @thegrio
## 3574 @murielle
## 3575 @theferocity
## 3576 @oprah
## 3577 @nytimes
## 3578 @louis96018668
## 3579 @ayeshahazarika
## 3580 @marklanler
## 3581 @matisaksk
## 3582 @pravdask
## 3583 @intelligently4u
## 3584 @serialdaydream1
## 3585 @soukhalilstepha
## 3586 @chrissyteigen
## 3587 @zbsayed
## 3588 @thr
## 3589 @brianstelter
## 3590 @piersmorgan
## 3591 @oprah
## 3592 @oprah
## 3593 @gracerandolph
## 3594 @clayaiken
## 3595 @60minutes
## 3596 @clayaikens
## 3597 @fcdogovuk
## 3598 @bbcpanorama
## 3599 @houseofcommons
## 3600 @opindiacom
## 3601 @youtube
## 3602 @oprah
## 3603 @kensingtonroyal
## 3604 @royalfamily
## 3605 @nickferrarilbc
## 3606 @royalfamily
## 3607 @dailymailuk
## 3608 @eggyboom
## 3609 @oprah
## 3610 @leylaverdier
## 3611 @etcanada
## 3612 @siggystardust80
## 3613 @enienkela
## 3614 @cambs05
## 3615 @kensingtonroyal
## 3616 @hrhcate
## 3617 @cactusbump
## 3618 @giveusashout
## 3619 @zerphound
## 3620 @ajplus
## 3621 @blightyuk
## 3622 @gbnews
585
## 3623 @spoteasybos
## 3624 @thecut
## 3625 @nymag
## 3626 @chronicleherald
## 3627 @jonathancanyon
## 3628 @martinrowson
## 3629 @piersmorgan
## 3630 @sahadatu77
## 3631 @celine19972
## 3632 @christi44973845
## 3633 @itv
## 3634 @itv
## 3635 @gmb
## 3636 @bethenny
## 3637 @latimes
## 3638 @piersmorgan
## 3639 @gayleking
## 3640 @jamiel99
## 3641 @ljcory1
## 3642 @iamjohnsimon
## 3643 @andy
## 3644 @bethenny
## 3645 @piersmorgan
## 3646 @danwootton
## 3647 @dailymailuk
## 3648 @telegraph
## 3649 @gmb
## 3650 @thismorning
## 3651 @oprah
## 3652 @cbsnews
## 3653 @cbsthismorning
## 3654 @baronessbruck
## 3655 @failsatmom
## 3656 @amharpdoon
## 3657 @superscuba83
## 3658 @gma
## 3659 @pagantrelawney
## 3660 @piersmorgan
## 3661 @bethenny
## 3662 @rihannaâ\200¦
## 3663 @abline11
## 3664 @hyslopkayleigh
## 3665 @gmb
## 3666 @piersmorgan
## 3667 @enterhacker
## 3668 @popculminefield
## 3669 @keeleytalks
## 3670 @furikitten
## 3671 @revan80561577â\200¦
## 3672 @markmackinnon
## 3673 @yahoonewsuk
## 3674 @gmb
## 3675 @susannareid100
## 3676 @piersmorgan
586
## 3677 @sidhant
## 3678 @skynews
## 3679 @royalfamily
## 3680 @oprah
## 3681 @royalfamily
## 3682 @afuahirsch
## 3683 @oprah
## 3684 @dailymail
## 3685 @megynkelly
## 3686 @drgjackbrown
## 3687 @etcanada
## 3688 @eltonofficial
## 3689 @piersmorgan
## 3690 @oprah
## 3691 @lordsugar
## 3692 @piersmorgan
## 3693 @gmb
## 3694 @edargo
## 3695 @kasie
## 3696 @business
## 3697 @bethenny
## 3698 @rockpixi
## 3699 @piersmorgan
## 3700 @justdoodirty3
## 3701 @azulsoul2013
## 3702 @iamprettypetty
## 3703 @glamor14kt
## 3704 @farrisflagg
## 3705 @oprah
## 3706 @vote4robgill
## 3707 @unherd
## 3708 @katrosenfield
## 3709 @andrewjoy1701
## 3710 @gmb
## 3711 @jenniebond1
## 3712 @mailonline
## 3713 @viviennelongst1
## 3714 @thedreadcat
## 3715 @myselfohagain
## 3716 @lbc
## 3717 @cnni
## 3718 @cbs
## 3719 @superscuba83
## 3720 @mailonline
## 3721 @headstogether
## 3722 @oprahs
## 3723 @joenbc
## 3724 @ginayashere
## 3725 @kelechnekoff
## 3726 @sholamos1
## 3727 @skynews
## 3728 @unsubtledesi
## 3729 @royalfamily
## 3730 @marksandspencer
587
## 3731 @imtoomuchnigga
## 3732 @mrssosbourne
## 3733 @lbc
## 3734 @tudorchick1501
## 3735 @oprah
## 3736 @cbsthismorning
## 3737 @cmclymer
## 3738 @piersmorgan
## 3739 @oprah
## 3740 @kensingtonroyal
## 3741 @dailymailuk
## 3742 @therickydavila
## 3743 @michelenorris
## 3744 @njramen
## 3745 @bhavkang
## 3746 @actbrigitte
## 3747 @piersmorgan
## 3748 @gmb
## 3749 @swamy39
## 3750 @redredred80
## 3751 @andylassner
## 3752 @frostreporter
## 3753 @royalfamily
## 3754 @dogecoin
## 3755 @guardiancomms
## 3756 @kathviner
## 3757 @fransi1803
## 3758 @podcastmichelle
## 3759 @billybobwalter1
## 3760 @piersmorgan
## 3761 @gerardjasper
## 3762 @oprah
## 3763 @cbs
## 3764 @itv
## 3765 @oprah
## 3766 @theangiestanton
## 3767 @pagesix
## 3768 @piersmorgan
## 3769 @afneil
## 3770 @thecrownnetflix
## 3771 @etnow
## 3772 @huffpost
## 3773 @nypost
## 3774 @piersmorgan
## 3775 @oprah
## 3776 @oprah
## 3777 @itv
## 3778 @oprah
## 3779 @gayleking
## 3780 @norahodonnell
## 3781 @mwolferobinson
## 3782 @scobie
## 3783 @ryanafournier
## 3784 @mrssosbourne
588
## 3785 @piersmorgan
## 3786 @sputnikint
## 3787 @bethenny
## 3788 @oprah
## 3789 @cbs
## 3790 @nytimes
## 3791 @gmb
## 3792 @kategarraway
## 3793 @benshephard
## 3794 @meghansupporter
## 3795 @piersmorgan
## 3796 @oprah
## 3797 @gayleking
## 3798 @norahodonnell
## 3799 @oprah
## 3800 @disney
## 3801 @disneystudios
## 3802 @disneyplusâ\200¦
## 3803 @christianwalk1r
## 3804 @holstat
## 3805 @halfadams
## 3806 @minhkular
## 3807 @bbcworld
## 3808 @royalfamily
## 3809 @oprah
## 3810 @cnn
## 3811 @cnnbrk
## 3812 @gmb
## 3813 @royalfamily
## 3814 @mrssosbourne
## 3815 @piersmorgan
## 3816 @piersmorgan
## 3817 @piersmorgan
## 3818 @gmb
## 3819 @piersmorgan
## 3820 @pharrymeghan
## 3821 @meghanmdaily
## 3822 @royalfamily
## 3823 @meghansmole
## 3824 @lucia68871359
## 3825 @piersmorgan
## 3826 @piersmorgan
## 3827 @royaldickie
## 3828 @rachaelswindon
## 3829 @piersmorgan
## 3830 @clarencehouse
## 3831 @piersmorganâ\200\231s
## 3832 @dailymail
## 3833 @piersmorgan
## 3834 @royalfamily
## 3835 @britain
## 3836 @royalfamily
## 3837 @saadiasediq
## 3838 @yusufaq
589
## 3839 @piersmorgan
## 3840 @foxnation
## 3841 @tomilahren
## 3842 @pharrymeghan
## 3843 @latimesent
## 3844 @piersmorgan
## 3845 @christicarras
## 3846 @henryhchu
## 3847 @oprah
## 3848 @oprah
## 3849 @houstonxjordan
## 3850 @drchriscarson
## 3851 @latimes
## 3852 @stevebattaglio
## 3853 @saltycracker9
## 3854 @ds13manon
## 3855 @piersmorgan
## 3856 @piersmorgan
## 3857 @oprah
## 3858 @paulabrexiteer
## 3859 @andrejpwalker
## 3860 @gmb
## 3861 @noelphillips
## 3862 @piersmorgan
## 3863 @piersmorgan
## 3864 @kensingtonroyal
## 3865 @emerald007007
## 3866 @lilybelle05
## 3867 @alexberesfordtv
## 3868 @megynkelly
## 3869 @piersmorgan
## 3870 @youtube
## 3871 @redailymail
## 3872 @matthewstadlen
## 3873 @gmb
## 3874 @schmittnyc
## 3875 @sharongaffney
## 3876 @nathanhgshore
## 3877 @cbsnews
## 3878 @alexberesfordtv
## 3879 @egbertandalvina
## 3880 @tudorchick1501
## 3881 @greykelvin3
## 3882 @toughtruth12
## 3883 @factsdos
## 3884 @ajplus
## 3885 @oprah
## 3886 @someguy19785
## 3887 @fedoraabu
## 3888 @kristyswansonxo
## 3889 @cbsthismorning
## 3890 @oprah
## 3891 @theviews
## 3892 @meghanmccain
590
## 3893 @justme4now0
## 3894 @ladycolincampb
## 3895 @katewilton1
## 3896 @purpleisdabest
## 3897 @eshamanagement
## 3898 @doinglifeeasily
## 3899 @wakeprayslay72
## 3900 @rosequartz4
## 3901 @chbrugge
## 3902 @marybl62
## 3903 @aceomalley89â\200¦
## 3904 @dianerosewarn
## 3905 @oprah
## 3906 @piersmorgan
## 3907 @piersmorgan
## 3908 @gmb
## 3909 @gmb
## 3910 @jimmykimmel
## 3911 @specolympicsmom
## 3912 @tom81817917
## 3913 @nypost
## 3914 @chrisshipitv
## 3915 @henryisclear
## 3916 @langalexi
## 3917 @piersmorgan
## 3918 @tylerperry
## 3919 @saglas297
## 3920 @cnn
## 3921 @piersmorgan
## 3922 @chrisshipitv
## 3923 @theview
## 3924 @loosewomen
## 3925 @piersmorgan
## 3926 @gmb
## 3927 @lohud
## 3928 @alexberesfordtv
## 3929 @itvnews
## 3930 @piersmorgan
## 3931 @surekingodds
## 3932 @clarencehouseamp
## 3933 @kensingtonroyal
## 3934 @ingrahamangle
## 3935 @heytammybruce
## 3936 @quakemedia
## 3937 @piersmorgan
## 3938 @steamboatbricky
## 3939 @gdaniseviciute
## 3940 @iromg
## 3941 @royalfamily
## 3942 @huffpost
## 3943 @halfadams
## 3944 @gmb
## 3945 @susannareid100
## 3946 @piersmorgan
591
## 3947 @cnn
## 3948 @bethenny
## 3949 @royalfamily
## 3950 @nigelfarage
## 3951 @kensingtonroyal
## 3952 @cnn
## 3953 @oprah
## 3954 @tsuedu
## 3955 @ryantjansen
## 3956 @oprah
## 3957 @cbcalerts
## 3958 @gmb
## 3959 @alexberesfordtv
## 3960 @janina
## 3961 @thismorning
## 3962 @piersmorgan
## 3963 @cbs
## 3964 @oprah
## 3965 @iamsophianelson
## 3966 @michelleobama
## 3967 @alexberesfordtv
## 3968 @oprah
## 3969 @cbs
## 3970 @latimes
## 3971 @cbs
## 3972 @oprah
## 3973 @oprah
## 3974 @bbcnews
## 3975 @royalfamily
## 3976 @piersmorgan
## 3977 @halfadams
## 3978 @piersmorgan
## 3979 @piersmorgan
## 3980 @delemomodu
## 3981 @crystalsola
## 3982 @talkradio
## 3983 @thejameswhale
## 3984 @virtualash
## 3985 @1fubar
## 3986 @msnbc
## 3987 @tylerperry
## 3988 @richardquest
## 3989 @piersmorgan
## 3990 @justmythots8
## 3991 @chrisshipitv
## 3992 @royalreporter
## 3993 @oprah
## 3994 @handmaidsonhulu
## 3995 @royalfamily
## 3996 @norrthpier
## 3997 @inzyrashid
## 3998 @skynews
## 3999 @cnni
## 4000 @emariam
592
## 4001 @afrojay96
## 4002 @etcanada
## 4003 @carmela67
## 4004 @luenic
## 4005 @independent
## 4006 @darshnasoni
## 4007 @markhookham
## 4008 @katemansey
## 4009 @mailonline
## 4010 @martibick2000
## 4011 @piersmorgan
## 4012 @afuathescot
## 4013 @darrengrimes
## 4014 @reaganbattalion
## 4015 @msnbc
## 4016 @katyturnbc
## 4017 @dailycaller
## 4018 @piersmorgan
## 4019 @meghanmarkle81
## 4020 @priyamvadagopal
## 4021 @nkrankie
## 4022 @piersmorgan
## 4023 @blaynos14
## 4024 @piersmorgan
## 4025 @meaghanwray
## 4026 @skynews
## 4027 @beyonce
## 4028 @ditsychick
## 4029 @actbrigitte
## 4030 @oprah
## 4031 @skynewsaust
## 4032 @bbcnews
## 4033 @bbcradio4
## 4034 @piersmorgan
## 4035 @oprah
## 4036 @sunnyupland
## 4037 @paddyfern
## 4038 @bbcpolitics
## 4039 @bbcnews
## 4040 @oprah
## 4041 @royalfamily
## 4042 @mradclyffe
## 4043 @jeremycorbyn
## 4044 @johngardner
## 4045 @7newssydney
## 4046 @salemmediagrp
## 4047 @hughhewitt
## 4048 @mefeater
## 4049 @arthbychan
## 4050 @bigittieiies
## 4051 @oprah
## 4052 @celebrityradio
## 4053 @mailonline
## 4054 @gmb
593
## 4055 @piersmorganâ\200¦
## 4056 @bbcbreaking
## 4057 @bbcnews
## 4058 @royalfamily
## 4059 @themarklesammy
## 4060 @oprah
## 4061 @apentertainment
## 4062 @huffpost
## 4063 @silvertree77
## 4064 @scobie
## 4065 @bakarisellers
## 4066 @dailymail
## 4067 @thr
## 4068 @thebuffalonews
## 4069 @mytake902737711
## 4070 @dgmoore75
## 4071 @piersmorgan
## 4072 @nickferrarilbc
## 4073 @thesun
## 4074 @redailymail
## 4075 @thedailybeast
## 4076 @piersmorgan
## 4077 @jasamgurlie
## 4078 @qsteph
## 4079 @piersmorgan
## 4080 @tinshingle
## 4081 @kathygriffin
## 4082 @cnn
## 4083 @juliahb1
## 4084 @paulinepark
## 4085 @gmb
## 4086 @piersmorgan
## 4087 @antoniolluiz
## 4088 @elenaforever13
## 4089 @oprah
## 4090 @facebook
## 4091 @twitter
## 4092 @mailamerican
## 4093 @wterrence
## 4094 @austinchanning
## 4095 @vforvictory46
## 4096 @tamronhall
## 4097 @talkradio
## 4098 @rfitzwilliams
## 4099 @juliahb1
## 4100 @rschooley
## 4101 @micheleer3
## 4102 @tylerperry
## 4103 @cbsthismorning
## 4104 @oprah
## 4105 @kensingtonroyal
## 4106 @giveusashout
## 4107 @home
## 4108 @paramountplus
594
## 4109 @cbs
## 4110 @oprah
## 4111 @cbs
## 4112 @gmb
## 4113 @simigarewal
## 4114 @itv
## 4115 @ajplus
## 4116 @independent
## 4117 @piersmorgan
## 4118 @mailonline
## 4119 @lewisgoodall
## 4120 @marierosiesoper
## 4121 @independent
## 4122 @pmlegend
## 4123 @itvnews
## 4124 @piersmorgan
## 4125 @wterrence
## 4126 @sussexprincess
## 4127 @piersmorgan
## 4128 @alexberesfordtv
## 4129 @gayleking
## 4130 @oprah
## 4131 @cbsthismorning
## 4132 @gofakeyourselfm
## 4133 @cbs
## 4134 @dralexgeorge
## 4135 @cbsthismorning
## 4136 @oprah
## 4137 @tmzlive
## 4138 @kensingtonroyal
## 4139 @bubbawallace
## 4140 @peebsnjay
## 4141 @gbtphd
## 4142 @littlehellkitt1
## 4143 @5news
## 4144 @oprah
## 4145 @azulsoul2013
## 4146 @brijh
## 4147 @iamprettypetty
## 4148 @glamor14kt
## 4149 @farrisflagg
## 4150 @adamboultonsky
## 4151 @piersmorgan
## 4152 @sholamos1
## 4153 @katienicholl
## 4154 @sirfrankuk
## 4155 @chrissyteigen
## 4156 @margiepargiepoo
## 4157 @marting252
## 4158 @kateatoyw
## 4159 @oneyoungworld
## 4160 @oprah
## 4161 @cbs
## 4162 @asisatoshoala
595
## 4163 @popcrave
## 4164 @shoniestr810
## 4165 @aleisha71
## 4166 @royalfamily
## 4167 @morningmika
## 4168 @joenbc
## 4169 @elizbethss
## 4170 @cepesmith
## 4171 @scobie
## 4172 @watchdogbigotry
## 4173 @archiemeghaz
## 4174 @cnni
## 4175 @chrisshipitv
## 4176 @janina
## 4177 @piersmorgan
## 4178 @piersmorgan
## 4179 @dohamadani
## 4180 @nbcnews
## 4181 @oprah
## 4182 @soapoperaspyâ\200¦
## 4183 @azulsoul2013
## 4184 @justdoodirty3
## 4185 @iamprettypetty
## 4186 @glamor14kt
## 4187 @farrisflagg
## 4188 @cmclymer
## 4189 @gmb
## 4190 @scobie
## 4191 @scobie
## 4192 @yamiche
## 4193 @oprah
## 4194 @vanityfair
## 4195 @rowdydawg33
## 4196 @oprah
## 4197 @cbs
## 4198 @bbcnews
## 4199 @gmb
## 4200 @piersmorgan
## 4201 @susannareid100
## 4202 @lbcâ\200¦
## 4203 @1sabr1na
## 4204 @harryslaststand
## 4205 @meghanmccain
## 4206 @royalfamily
## 4207 @gayleking
## 4208 @oprah
## 4209 @cbsthismorning
## 4210 @inorganicwaste
## 4211 @piersmorgan
## 4212 @ctvnews
## 4213 @dailymailuk
## 4214 @thingsroyal
## 4215 @baronessbruck
## 4216 @halfadams
596
## 4217 @oprahâ\200¦
## 4218 @piersmorgan
## 4219 @megynkelly
## 4220 @happyfreefun
## 4221 @drjesstaylor
## 4222 @nicolasvadot
## 4223 @lemondefrâ\200¦
## 4224 @mcgregorjohnny
## 4225 @danamarie1233
## 4226 @bethenny
## 4227 @cbsthismorning
## 4228 @republicstaff
## 4229 @susannareid100
## 4230 @gmtv
## 4231 @omnikingdom
## 4232 @royalfamily
## 4233 @cnn
## 4234 @piersmorgan
## 4235 @tylerperry
## 4236 @royalfamily
## 4237 @oprah
## 4238 @janina
## 4239 @royalfamily
## 4240 @astasiawill
## 4241 @mrfrewster
## 4242 @oprah
## 4243 @ryahcurry
## 4244 @asianmacaron
## 4245 @guardthatgalaxy
## 4246 @afrojay96
## 4247 @etcanada
## 4248 @naijadimples
## 4249 @tarynitup
## 4250 @bravobrav0brav0
## 4251 @mcoynyc
## 4252 @andy
## 4253 @youtube
## 4254 @wsbtv
## 4255 @skynews
## 4256 @piersmorgan
## 4257 @itv
## 4258 @gmb
## 4259 @afrosypaella
## 4260 @sholamos1
## 4261 @piersmorgan
## 4262 @oprah
## 4263 @oprahâ\200¦
## 4264 @afrojay96
## 4265 @etcanada
## 4266 @missawori
## 4267 @poshdoshy
## 4268 @susannareid100
## 4269 @itv
## 4270 @piersmorgan
597
## 4271 @piersmorgan
## 4272 @chrissyteigen
## 4273 @camillatominey
## 4274 @nbc
## 4275 @todayshow
## 4276 @gregkellyusa
## 4277 @bbcworld
## 4278 @paullewismoney
## 4279 @piersmorgan
## 4280 @simigarewal
## 4281 @piersmorgan
## 4282 @waytogoreggie
## 4283 @sylviaobell
## 4284 @itsgabrielleu
## 4285 @asratpride
## 4286 @piersmorgan
## 4287 @dailymail
## 4288 @piersmorgan
## 4289 @pamncbennett
## 4290 @grumpyoldbast10
## 4291 @beckett2227
## 4292 @murkymeg
## 4293 @ulom17
## 4294 @drjulieseymour
## 4295 @realcandaceo
## 4296 @scobie
## 4297 @mrsbearse
## 4298 @thr
## 4299 @piersmorgan
## 4300 @gmbis
## 4301 @dailymailuk
## 4302 @lisacla79552465
## 4303 @mollyjongfast
## 4304 @oprah
## 4305 @spotifycares
## 4306 @spotify
## 4307 @spotifyuk
## 4308 @scobie
## 4309 @piersmorgan
## 4310 @stevenishi
## 4311 @uncvrngthetruth
## 4312 @piersmorgan
## 4313 @acceber910
## 4314 @blissfullymern
## 4315 @meenaharris
## 4316 @hakunathefcknot
## 4317 @nytimes
## 4318 @justinwelby
## 4319 @oprah
## 4320 @twitter
## 4321 @chrisrickett
## 4322 @rexchapman
## 4323 @alexberesfordtv
## 4324 @realshellyannfp
598
## 4325 @fitfortheculture
## 4326 @piersmorgan
## 4327 @piersmorgan
## 4328 @bobscartoons
## 4329 @kieronmirch
## 4330 @mrssosbourne
## 4331 @piersmorgan
## 4332 @gmb
## 4333 @lauratrevelyan
## 4334 @gmb
## 4335 @susannareid100
## 4336 @piersmorgan
## 4337 @yashar
## 4338 @thecrownnetflix
## 4339 @cmclymer
## 4340 @simigarewal
## 4341 @royalfamilyâ\200¦
## 4342 @mrshhjones
## 4343 @oprah
## 4344 @piersmorgan
## 4345 @mrjamesob
## 4346 @sussexroyalu
## 4347 @hrrysgreysuit
## 4348 @mizzvirtuous
## 4349 @therecount
## 4350 @mrssosbourne
## 4351 @sherylunderwood
## 4352 @popcrave
## 4353 @jemelehill
## 4354 @oprahâ\200¦
## 4355 @talkradio
## 4356 @yankeewally2
## 4357 @bbcbreakfast
## 4358 @lizzo
## 4359 @jackposobiec
## 4360 @therealroseanne
## 4361 @dailyexpress
## 4362 @oprah
## 4363 @southantrimvoxâ\200¦
## 4364 @dailymirror
## 4365 @gmb
## 4366 @talkradio
## 4367 @talksport
## 4368 @lbc
## 4369 @piersmorgan
## 4370 @drbiden
## 4371 @royalfamily
## 4372 @kensingtonroyal
## 4373 @eljgales2
## 4374 @piersmorgan
## 4375 @sperrypeoplemag
## 4376 @kaivanshroff
## 4377 @piersmorgan
## 4378 @afuahirsch
599
## 4379 @rachelcboyle1
## 4380 @thecrownnetflix
## 4381 @royalfamily
## 4382 @britishvogue
## 4383 @oprah
## 4384 @valentinelowâ\200¦
## 4385 @cbsnews
## 4386 @scobie
## 4387 @whoopigoldberg
## 4388 @meghanmccain
## 4389 @joyvbehar
## 4390 @malalafund
## 4391 @priyankachopra
## 4392 @michelleobama
## 4393 @royalfamily
## 4394 @tylerperry
## 4395 @jenniebond1
## 4396 @rjmyers
## 4397 @bbcnolan
## 4398 @stephennolan
## 4399 @princeharry
## 4400 @oprahs
## 4401 @dawnbutlerbrent
## 4402 @oprah
## 4403 @cbsthismorning
## 4404 @owntv
## 4405 @cbsthismorning
## 4406 @redtabletalk
## 4407 @wendellpierce
## 4408 @nypost
## 4409 @oprah
## 4410 @cbs
## 4411 @chcartoon
## 4412 @piersmorgan
## 4413 @laceybutcher
## 4414 @mahyartousi
## 4415 @jennymccarthy
## 4416 @piersmorgan
## 4417 @alexberesfordtv
## 4418 @10downingstreet
## 4419 @gmb
## 4420 @piersmorgan
## 4421 @thetakeawayâ\200¦
## 4422 @kayleyc0rnelius
## 4423 @theperezhilton
## 4424 @duchessofdismay
## 4425 @royalreporter
## 4426 @chrisshipitv
## 4427 @mrjamesob
## 4428 @lbc
## 4429 @rachaelvenables
## 4430 @beccafouracre
## 4431 @royalfamily
## 4432 @skynews
600
## 4433 @tariqnasheed
## 4434 @gmb
## 4435 @megynkelly
## 4436 @piersmorgan
## 4437 @nypost
## 4438 @royalfamily
## 4439 @10downingstreet
## 4440 @piersmorgan
## 4441 @tuckercarlson
## 4442 @piersmorgans
## 4443 @piersmorgan
## 4444 @itv
## 4445 @shelaghfogarty
## 4446 @oprahâ\200\231s
## 4447 @maymayentrata07
## 4448 @piersmorgan
## 4449 @marydidia
## 4450 @mariashriver
## 4451 @oprah
## 4452 @piersmorgan
## 4453 @oprah
## 4454 @kensingtonroyal
## 4455 @promotiongig
## 4456 @oprah
## 4457 @donlemon
## 4458 @cuomoprimetime
## 4459 @gianariveraa
## 4460 @dailymailuk
## 4461 @mirrorroyal
## 4462 @oprah
## 4463 @errolwebber
## 4464 @forbes
## 4465 @reuters
## 4466 @dailymail
## 4467 @itsgoodtomock
## 4468 @piersmorgan
## 4469 @piersmorgan
## 4470 @gottmik
## 4471 @gmb
## 4472 @jenniebond1
## 4473 @people
## 4474 @tiredmammy21
## 4475 @sholamos1
## 4476 @piersmorgan
## 4477 @gmb
## 4478 @realcandaceo
## 4479 @droz
## 4480 @drphil
## 4481 @sarahfergieontv
## 4482 @themarklesammy
## 4483 @gossipgirl9283
## 4484 @karenhuntershow
## 4485 @blackirishi
## 4486 @camanpour
601
## 4487 @paddyfern
## 4488 @bbcpolitics
## 4489 @bbcnews
## 4490 @oprah
## 4491 @royalfamily
## 4492 @twitter
## 4493 @dailymailuk
## 4494 @itv
## 4495 @piersmorgan
## 4496 @miserablebill82
## 4497 @victoriaarbiter
## 4498 @royaldickie
## 4499 @royalbiographer
## 4500 @rfitzwilliams
## 4501 @nigelfarage
## 4502 @oprah
## 4503 @cbs
## 4504 @piersmorgan
## 4505 @gmb
## 4506 @georgetakei
## 4507 @ofcom
## 4508 @piersmorgan
## 4509 @childofsunday
## 4510 @borisjohnson
## 4511 @piersmorgan
## 4512 @nypost
## 4513 @oprah
## 4514 @tianmimilan
## 4515 @mazially
## 4516 @racroesr
## 4517 @commieactivity
## 4518 @dominicfarrell
## 4519 @patwilliams1944
## 4520 @oprah
## 4521 @oprah
## 4522 @bethenny
## 4523 @oprah
## 4524 @thehill
## 4525 @daftlimmy
## 4526 @thetoadours
## 4527 @washingtonpost
## 4528 @debramessing
## 4529 @newyorkpost
## 4530 @oprah
## 4531 @dcbigjohn
## 4532 @tmz
## 4533 @piersmorgan
## 4534 @piersmorgan
## 4535 @t0nit0ne
## 4536 @roundlike
## 4537 @piersmorgan
## 4538 @eddaahlin
## 4539 @piersmorgan
## 4540 @newsweek
602
## 4541 @piersmorgan
## 4542 @oprah
## 4543 @danwootton
## 4544 @nofilterabhinav
## 4545 @mrssosbourne
## 4546 @piersmorgan
## 4547 @gmb
## 4548 @z100newyork
## 4549 @business
## 4550 @ap
## 4551 @ttfue
## 4552 @theview
## 4553 @kolbokolb
## 4554 @bjarnigautur
## 4555 @pagantrelawney
## 4556 @tsiser45
## 4557 @crystalcipriani
## 4558 @notcapnamerica
## 4559 @volodishchenko
## 4560 @oprah
## 4561 @dailymailuk
## 4562 @royalfamily
## 4563 @scobie
## 4564 @youtubeâ\200¦
## 4565 @debsadelight
## 4566 @bonn1egreer
## 4567 @archrose90
## 4568 @piersmorgan
## 4569 @truefactsstated
## 4570 @oprah
## 4571 @steveparker1971
## 4572 @serenawilliams
## 4573 @joyous1055
## 4574 @katystoll
## 4575 @nydailynews
## 4576 @piersmorgan
## 4577 @steved1914
## 4578 @sunny
## 4579 @sunny
## 4580 @theview
## 4581 @089968raph
## 4582 @chrisrickett
## 4583 @piersmorgansâ\200¦
## 4584 @piersmorgan
## 4585 @gmb
## 4586 @reggieaqui
## 4587 @kensingtonroyal
## 4588 @piersmorgan
## 4589 @gmb
## 4590 @tylerperry
## 4591 @mzgossipgirl
## 4592 @piersmorgan
## 4593 @eyevanc
## 4594 @oprah
603
## 4595 @helen97948260
## 4596 @philteal
## 4597 @nypost
## 4598 @sussexprincess
## 4599 @almoud85
## 4600 @piersmorgan
## 4601 @piersmorgan
## 4602 @normski68
## 4603 @mindcharity
## 4604 @forbes
## 4605 @lovecambridges
## 4606 @youtube
## 4607 @nathank
## 4608 @chronicleherald
## 4609 @gmb
## 4610 @dimondj42
## 4611 @cbsnews
## 4612 @wolfiesmom
## 4613 @iamawalker
## 4614 @mnkerry
## 4615 @patricks2012
## 4616 @delilahc401
## 4617 @kensingtonroyal
## 4618 @afneil
## 4619 @melissaafrancis
## 4620 @megynkelly
## 4621 @elizaorlins
## 4622 @ellierod8
## 4623 @simoneg10625142
## 4624 @etcanada
## 4625 @piersmorgan
## 4626 @buttercreamfro3
## 4627 @ivajovovic
## 4628 @piersmorgan
## 4629 @scobie
## 4630 @deanstottsbs
## 4631 @peterward
## 4632 @brianlehrer
## 4633 @repbonnie
## 4634 @repbonnie
## 4635 @alexberesfordtv
## 4636 @gmb
## 4637 @cbsnews
## 4638 @cnn
## 4639 @piersmorgan
## 4640 @ghostwales
## 4641 @chrisrickett
## 4642 @piersmorgan
## 4643 @youtubeâ\200¦
## 4644 @mailonline
## 4645 @oprah
## 4646 @garyjanetti
## 4647 @dailymailuk
## 4648 @mailonline
604
## 4649 @zoramag
## 4650 @effiedeans
## 4651 @droberts44
## 4652 @piersmorgan
## 4653 @itv
## 4654 @oprah
## 4655 @piersmorgan
## 4656 @royalfamily
## 4657 @honmajimbo
## 4658 @rickythegee
## 4659 @nypost
## 4660 @mariedoe9
## 4661 @tudorchick1501
## 4662 @greykelvin3
## 4663 @toughtruth12
## 4664 @piersmorgan
## 4665 @queensofbravo
## 4666 @murkymeg
## 4667 @thr
## 4668 @bethenny
## 4669 @oprah
## 4670 @cbsnews
## 4671 @mailonline
## 4672 @etcanada
## 4673 @summersparks56
## 4674 @nataliehats
## 4675 @katemackinnon6
## 4676 @hasscas
## 4677 @suecresswell01
## 4678 @badassboz
## 4679 @tuckercarlson
## 4680 @tarekfatah
## 4681 @piersmorgan
## 4682 @cnn
## 4683 @newscomauhq
## 4684 @iamjohnoliver
## 4685 @ecmclaughlin
## 4686 @gmb
## 4687 @piersmorgan
## 4688 @keiththeteeth10
## 4689 @alexberesfordtv
## 4690 @piersmorgan
## 4691 @channel4
## 4692 @bdomenech
## 4693 @rcamposduffy
## 4694 @carleyshimkus
## 4695 @theleoterrell
## 4696 @pagesix
## 4697 @richardgrenell
## 4698 @latimes
## 4699 @stevebattaglio
## 4700 @qspartamaggie
## 4701 @annemarie
## 4702 @tiktokuk
605
## 4703 @washingtonpost
## 4704 @piersmorgan
## 4705 @celiawalden
## 4706 @bethenny
## 4707 @americankat62
## 4708 @mpympy28
## 4709 @scobie
## 4710 @harpersbazaarus
## 4711 @thetimes
## 4712 @valentinelow
## 4713 @kasie
## 4714 @oprah
## 4715 @oprahâ\200¦
## 4716 @khoulauren
## 4717 @priceisright
## 4718 @morningedition
## 4719 @rachelnpr
## 4720 @midwood49
## 4721 @dailymailuk
## 4722 @mailonline
## 4723 @piersmorgan
## 4724 @chrisshipitv
## 4725 @washingtonpost
## 4726 @chrisshipitv
## 4727 @oprah
## 4728 @cbsthismorning
## 4729 @tanyaagt
## 4730 @okmagazine
## 4731 @jkcorden
## 4732 @thismorning
## 4733 @iamsrkstan
## 4734 @tylerperry
## 4735 @guardian
## 4736 @bobbybigwheel
## 4737 @megynkelly
## 4738 @meghanmarklefan
## 4739 @brandongonez
## 4740 @kyleinskeep
## 4741 @netflix
## 4742 @thecrownnetflix
## 4743 @serenawilliams
## 4744 @nswmoon
## 4745 @kensingtonroyal
## 4746 @edwardbowens6
## 4747 @people
## 4748 @youtubeâ\200¦
## 4749 @terihart
## 4750 @piersmorgan
## 4751 @czarinamaude
## 4752 @garybro82547780
## 4753 @skyerenaee1
## 4754 @yvonneb94779919
## 4755 @enews
## 4756 @oprah
606
## 4757 @pamranberg
## 4758 @rec777777
## 4759 @omitbdf
## 4760 @bbcnews
## 4761 @itvnews
## 4762 @ouagagibson
## 4763 @theview
## 4764 @oprah
## 4765 @emmaawebb
## 4766 @dazzlethembaby
## 4767 @freshb
## 4768 @megynkelly
## 4769 @simonpovey4
## 4770 @thetweetofgod
## 4771 @workswithwords
## 4772 @itv
## 4773 @piersmorgan
## 4774 @gmb
## 4775 @remingtonuk
## 4776 @oprah
## 4777 @davorghini
## 4778 @balegde
## 4779 @11thhour
## 4780 @abc
## 4781 @bbcnews
## 4782 @capehartj
## 4783 @cbsthismorning
## 4784 @cbsnews
## 4785 @cbssunday
## 4786 @cnn
## 4787 @etnow
## 4788 @gmanews
## 4789 @insidereâ\200¦
## 4790 @thetalkcbs
## 4791 @joenbc
## 4792 @chrishell7
## 4793 @bethenny
## 4794 @oprah
## 4795 @sunny
## 4796 @joyannreid
## 4797 @piersmorgan
## 4798 @chevvyamy
## 4799 @meowpenn
## 4800 @imnameless1968
## 4801 @piersmorgan
## 4802 @gmb
## 4803 @nytimes
## 4804 @piersmorgan
## 4805 @cdanny17
## 4806 @nytimes
## 4807 @melissafumeros
## 4808 @thespiritedame1
## 4809 @lianacambridge
## 4810 @historyartarch
607
## 4811 @chrishell7
## 4812 @alexberesfordtv
## 4813 @theovalpawffice
## 4814 @whitehouseðÿ\220â\200\215ðÿ¦º
## 4815 @akilahgreen
## 4816 @bethenny
## 4817 @oprah
## 4818 @people
## 4819 @piersmorgan
## 4820 @lewdog73
## 4821 @mrzues1
## 4822 @therealhoarse
## 4823 @tweetiepiehawly
## 4824 @gmb
## 4825 @ladyxsize
## 4826 @aa04315268
## 4827 @changaduchess
## 4828 @nbcsnl
## 4829 @halfadams
## 4830 @reuters
## 4831 @piersmorgan
## 4832 @youtube
## 4833 @oprah
## 4834 @jillzarin
## 4835 @bethenny
## 4836 @unklnova
## 4837 @meghanmccain
## 4838 @theview
## 4839 @alexberesfordtv
## 4840 @piersmorgan
## 4841 @piersmorgan
## 4842 @deborahwaldpics
## 4843 @halfadams
## 4844 @scobie
## 4845 @harpersbazaarus
## 4846 @sholamos1
## 4847 @nytimes
## 4848 @kiyastarr
## 4849 @sturdyalex
## 4850 @theeconomist
## 4851 @gmb
## 4852 @itvstudios
## 4853 @piersmorgan
## 4854 @piersmorgan
## 4855 @mariehill20202
## 4856 @cuomoprimetime
## 4857 @royanikkhah
## 4858 @oprah
## 4859 @suesuezep
## 4860 @tylerperry
## 4861 @thecarolemalone
## 4862 @royalfamily
## 4863 @berniesanders
## 4864 @piersmorgan
608
## 4865 @oprah
## 4866 @â\200¦
## 4867 @meghanmccain
## 4868 @internetuser81
## 4869 @monr0we
## 4870 @omarkelly
## 4871 @iamjohnoliver
## 4872 @t0nit0ne
## 4873 @piersmorgan
## 4874 @kainazamaria
## 4875 @iamcroe
## 4876 @scobie
## 4877 @fox40
## 4878 @piersmorgan
## 4879 @piersmorgan
## 4880 @people
## 4881 @piersmorgan
## 4882 @gmb
## 4883 @bbcbreakfast
## 4884 @piersmorgan
## 4885 @sherylunderwood
## 4886 @welshindynow
## 4887 @gmb
## 4888 @afuathescot
## 4889 @welshindynow
## 4890 @afuathescot
## 4891 @oliaprivx
## 4892 @live2tellx
## 4893 @etcanada
## 4894 @annajonky
## 4895 @camillatominey
## 4896 @oprah
## 4897 @mailonline
## 4898 @franpan
## 4899 @danniisadolly
## 4900 @rachelchinourir
## 4901 @itv
## 4902 @westminsterwag
## 4903 @badwolf87418597
## 4904 @piersmorgan
## 4905 @royalfamily
## 4906 @cernovich
## 4907 @jackposobiec
## 4908 @ntinvestiga
## 4909 @grahamj18821678
## 4910 @halfadams
## 4911 @bbcworld
## 4912 @piersmorgan
## 4913 @piersmorgan
## 4914 @sonofdervishes1
## 4915 @piersmorgan
## 4916 @serenawilliams
## 4917 @anniea49
## 4918 @themeghansussex
609
## 4919 @lamarmakers
## 4920 @newsmax
## 4921 @beyonce
## 4922 @katsing
## 4923 @diversity4me
## 4924 @odolly
## 4925 @navillusoaraic
## 4926 @anonymo52216652
## 4927 @apentertainment
## 4928 @medrizz
## 4929 @realcandaceo
## 4930 @editorsuk
## 4931 @piersmorgan
## 4932 @oprah
## 4933 @oprah
## 4934 @annaroisman
## 4935 @bethenny
## 4936 @oprah
## 4937 @bethenny
## 4938 @omitbdf
## 4939 @bbcnews
## 4940 @itvnews
## 4941 @benshapiro
## 4942 @danekkedtruth
## 4943 @globalnews
## 4944 @latimes
## 4945 @piersmorgan
## 4946 @kensingtonroyal
## 4947 @chrisshipitv
## 4948 @stephanieyeboah
## 4949 @oprah
## 4950 @cnnbrk
## 4951 @cnn
## 4952 @cnni
## 4953 @oprah
## 4954 @utbsmith
## 4955 @twittersupport
## 4956 @bethenny
## 4957 @piersmorgan
## 4958 @ginamcgalliard
## 4959 @buskyta
## 4960 @darkskinjaiii
## 4961 @homestuckhoovy
## 4962 @live2tellx
## 4963 @etcanada
## 4964 @serenawilliams
## 4965 @piersmorgan
## 4966 @jameskavanagh
## 4967 @mihirthe1
## 4968 @sidhant
## 4969 @bjp4india
## 4970 @actbrigitte
## 4971 @nigelfarage
## 4972 @zarahsultana
610
## 4973 @oprah
## 4974 @piersmorgan
## 4975 @gmb
## 4976 @lasgidifm901
## 4977 @cobhamsasuquo
## 4978 @bez
## 4979 @oprah
## 4980 @ttb0901
## 4981 @veritas1701
## 4982 @oprah
## 4983 @piersmorgan
## 4984 @harpersbazaarus
## 4985 @gma
## 4986 @royalfamily
## 4987 @commonwealthsecâ\200¦
## 4988 @cbs
## 4989 @royalfamily
## 4990 @oprah
## 4991 @justbrexitdone
## 4992 @talkradio
## 4993 @iromg
## 4994 @dawnneesom
## 4995 @tvkev
## 4996 @nanasbandm
## 4997 @tcintdot
## 4998 @cherylr64146668
## 4999 @habibtyq
## 5000 @andrejpwalker
## 5001 @oprah
## 5002 @serenawilliams
## 5003 @meghanmdaily
## 5004 @oprah
## 5005 @phillip93831930
## 5006 @becleehansen
## 5007 @lisawilkinson
## 5008 @truthreigns0
## 5009 @scobie
## 5010 @gmb
## 5011 @itv
## 5012 @gendenslow
## 5013 @gmb
## 5014 @piersmorgan
## 5015 @gmb
## 5016 @balegde
## 5017 @oprah
## 5018 @oprah
## 5019 @thecrownnetflix
## 5020 @anniedreaxo
## 5021 @piersmorgan
## 5022 @sussexsquadpod
## 5023 @battinsonbatman
## 5024 @yashar
## 5025 @archiemanners
## 5026 @joshuapieters
611
## 5027 @victoriaarbiter
## 5028 @oprah
## 5029 @halfadams
## 5030 @piersmorgan
## 5031 @itvnews
## 5032 @nypost
## 5033 @piersmorgan
## 5034 @itv
## 5035 @piersmorgan
## 5036 @thesunukrpg
## 5037 @blackwomenviews
## 5038 @oprah
## 5039 @skynews
## 5040 @victoriaarbiter
## 5041 @cepesmith
## 5042 @latimes
## 5043 @latimesent
## 5044 @ayeshaasiddiqi
## 5045 @joshelman
## 5046 @knoxer
## 5047 @saltycracker9
## 5048 @meghanmccain
## 5049 @realcandaceo
## 5050 @shefvaidya
## 5051 @djjazzrealtrap
## 5052 @proboards
## 5053 @realcandaceo
## 5054 @duchessonduty
## 5055 @nickferrarilbc
## 5056 @lbc
## 5057 @abigailspencer
## 5058 @cnnbrk
## 5059 @cbsthismorning
## 5060 @dannyantell
## 5061 @ofwudan
## 5062 @flaredotcom
## 5063 @clarencehouse
## 5064 @clarebalding
## 5065 @wabbey
## 5066 @citynews
## 5067 @soville19
## 5068 @djmillerja
## 5069 @piersmorgan
## 5070 @mrssosbourne
## 5071 @mrssosbourne
## 5072 @bbcworld
## 5073 @pharrymeghan
## 5074 @charlottemoorsy
## 5075 @chrishell7
## 5076 @bethenny
## 5077 @oprah
## 5078 @moniquepressley
## 5079 @mrshough76
## 5080 @alexberesfordtv
612
## 5081 @royalfamily
## 5082 @lovecambridges
## 5083 @serenawilliams
## 5084 @krisjenner
## 5085 @gmb
## 5086 @piersmorgan
## 5087 @susannareid100
## 5088 @2cookies4all
## 5089 @puff83061278
## 5090 @4ourdogs
## 5091 @piersmorgan
## 5092 @beebucket
## 5093 @oprah
## 5094 @piersmorgan
## 5095 @planetjedward
## 5096 @cbsthismorning
## 5097 @wlky
## 5098 @oprah
## 5099 @piersmorgan
## 5100 @oprah
## 5101 @piersmorgan
## 5102 @gmb
## 5103 @smerconish
## 5104 @kateatoyw
## 5105 @mailonline
## 5106 @latimesent
## 5107 @alexberesfordtv
## 5108 @joshuapieters
## 5109 @archiemanners
## 5110 @youtube
## 5111 @gmb
## 5112 @piersmorgan
## 5113 @susannareid100
## 5114 @wterrence
## 5115 @demilynne701
## 5116 @womenexist
## 5117 @margaretatwood
## 5118 @politico
## 5119 @piersmorgan
## 5120 @chrisshipitv
## 5121 @battinsonbatman
## 5122 @faksken
## 5123 @diordowell1
## 5124 @iankullgren
## 5125 @theview
## 5126 @bbcnews
## 5127 @jummynbc
## 5128 @iamgmjohnson
## 5129 @sussexsquadpod
## 5130 @dianeol64825469
## 5131 @telegraph
## 5132 @chrisshipitv
## 5133 @janina
## 5134 @schofe
613
## 5135 @kelliehayden
## 5136 @oprahs
## 5137 @oprah
## 5138 @twitter
## 5139 @rholl92
## 5140 @boblisterpoole
## 5141 @talkradio
## 5142 @juliahb1
## 5143 @piersmorgan
## 5144 @piersmorgan
## 5145 @realcandaceo
## 5146 @chrissyteigen
## 5147 @itv
## 5148 @susannareid100
## 5149 @itvhub
## 5150 @foxnews
## 5151 @damianholbrook
## 5152 @thenikcrawford
## 5153 @piersmorgan
## 5154 @mindcharity
## 5155 @oprah
## 5156 @donlemon
## 5157 @benoldn
## 5158 @piersmorgan
## 5159 @katiepavlich
## 5160 @victoriaarbiterâ\200¦
## 5161 @piersmorgan
## 5162 @maccosmetics
## 5163 @davelackie
## 5164 @jelani9
## 5165 @chunkymark
## 5166 @suitspeacock
## 5167 @oprah
## 5168 @mailonline
## 5169 @arsenal
## 5170 @piersmorgan
## 5171 @oprah
## 5172 @jokerinsidious
## 5173 @oprahâ\200\231s
## 5174 @telegraph
## 5175 @gmb
## 5176 @dailymailuk
## 5177 @thesun
## 5178 @lorraine
## 5179 @bbcnews
## 5180 @itvnews
## 5181 @clarencehouse
## 5182 @royalfamily
## 5183 @buckinghamofukâ\200¦
## 5184 @thecrownnetflix
## 5185 @scobie
## 5186 @givenchy
## 5187 @megynkelly
## 5188 @chrisshipitv
614
## 5189 @piersmorgan
## 5190 @dailymailuk
## 5191 @jerseydeanne
## 5192 @joeltyler
## 5193 @yashar
## 5194 @megynkelly
## 5195 @piersmorgan
## 5196 @gmb
## 5197 @pimpmytweeting
## 5198 @louloula10
## 5199 @tracysproull
## 5200 @piersmorgan
## 5201 @mynamahila
## 5202 @tylerperry
## 5203 @wolf14064576
## 5204 @piersmorgan
## 5205 @piersmorgan
## 5206 @mindcharity
## 5207 @mypaleskinblog
## 5208 @oprah
## 5209 @telegraph
## 5210 @wiblicks
## 5211 @xxcatnippyxx
## 5212 @cbsthismorning
## 5213 @rammcmahon
## 5214 @markschweitzer
## 5215 @piersmorgan
## 5216 @oprah
## 5217 @cbs
## 5218 @projectlincoln
## 5219 @ananavarro
## 5220 @thetoadours
## 5221 @piersmorgan
## 5222 @notyour28981739
## 5223 @dizzidi67
## 5224 @itv
## 5225 @piersmorgan
## 5226 @mrssosbourne
## 5227 @piersmorgan
## 5228 @piersmorgan
## 5229 @megynkelly
## 5230 @oprah
## 5231 @rasincanegirl
## 5232 @amandeepbhogal
## 5233 @trixie2000
## 5234 @meghansupporter
## 5235 @piersmorgan
## 5236 @nbcla
## 5237 @msignorile
## 5238 @msnbc
## 5239 @deadlinewh
## 5240 @forbes
## 5241 @chriscuomo
## 5242 @cnn
615
## 5243 @ikoutalk
## 5244 @anewhope02
## 5245 @charlottesix6
## 5246 @cmclymer
## 5247 @murkymeg
## 5248 @iamlindseyg
## 5249 @telegraph
## 5250 @dahaze10
## 5251 @camillatominey
## 5252 @abigailspencer
## 5253 @janina
## 5254 @alexberesfordtv
## 5255 @gmb
## 5256 @itv
## 5257 @thismorning
## 5258 @piersmorgan
## 5259 @vogueindia
## 5260 @ainsleyearhardt
## 5261 @foxandfriends
## 5262 @oprah
## 5263 @cbsthismorning
## 5264 @gmb
## 5265 @itv
## 5266 @piersmorgan
## 5267 @susannareid100
## 5268 @mindcharity
## 5269 @oprah
## 5270 @alexberesfordtv
## 5271 @trishagoddard
## 5272 @yamiche
## 5273 @gmb
## 5274 @piersmorgan
## 5275 @ritapanahi
## 5276 @ezralevant
## 5277 @theview
## 5278 @kylieer
## 5279 @rjmyers
## 5280 @piersmorgan
## 5281 @itv
## 5282 @englandcricket
## 5283 @dailysoapdishâ\200¦
## 5284 @ebrointheam
## 5285 @alexberesfordtv
## 5286 @meghanmccain
## 5287 @tylerperry
## 5288 @oprah
## 5289 @own
## 5290 @cbs
## 5291 @ttfue
## 5292 @royalfamily
## 5293 @youtubeâ\200¦
## 5294 @chakeenah
## 5295 @pyrmha
## 5296 @timinhonolulu
616
## 5297 @ryahcurry
## 5298 @asianmacaron
## 5299 @guardthatgalaxy
## 5300 @afrojay96
## 5301 @etcanada
## 5302 @irishmirrorour
## 5303 @drjohnduffy
## 5304 @cnn
## 5305 @scobie
## 5306 @janina
## 5307 @thismorning
## 5308 @piersmorgan
## 5309 @cheesedoff3
## 5310 @tylerperry
## 5311 @ladbible
## 5312 @piersmorgan
## 5313 @theladbible
## 5314 @thejeremyvine
## 5315 @chattyman
## 5316 @wossy
## 5317 @russellhowardâ\200¦
## 5318 @oprah
## 5319 @jayneazzo
## 5320 @chrisshipitv
## 5321 @chrisshipitv
## 5322 @gregkellyusa
## 5323 @gmb
## 5324 @oprah
## 5325 @austinchanning
## 5326 @meenaharris
## 5327 @whoopigoldberg
## 5328 @cbs
## 5329 @everydayrobsten
## 5330 @oprah
## 5331 @fageuk
## 5332 @fageusa
## 5333 @genevasthomas
## 5334 @sharonmugisha
## 5335 @mangakakao
## 5336 @mindcharity
## 5337 @benshapiro
## 5338 @piersmorgan
## 5339 @telegraph
## 5340 @skynews
## 5341 @oprah
## 5342 @cbs
## 5343 @jamiebolton
## 5344 @foxnation
## 5345 @tomilahren
## 5346 @oprah
## 5347 @skynews
## 5348 @ofcom
## 5349 @ofcom
## 5350 @piersmorgan
617
## 5351 @rmcunliffe
## 5352 @maneabdallah
## 5353 @rjmyers
## 5354 @gmb
## 5355 @piersmorgan
## 5356 @luvvie
## 5357 @sarahditum
## 5358 @lateagitations
## 5359 @lateagitations
## 5360 @katechastain
## 5361 @oprah
## 5362 @nazirafzal
## 5363 @mysterysolvent
## 5364 @royalreporter
## 5365 @chrisrickett
## 5366 @oprah
## 5367 @mailonlineâ\200¦
## 5368 @oprah
## 5369 @piersmorgans
## 5370 @meenaharris
## 5371 @cbs
## 5372 @oprah
## 5373 @bbcnews
## 5374 @actbrigitte
## 5375 @youtubeâ\200¦
## 5376 @byqueenvic
## 5377 @jamiebolton
## 5378 @dineshdsouza
## 5379 @piersmorgan
## 5380 @tvkhaleesi
## 5381 @piersmorgan
## 5382 @gmb
## 5383 @oprah
## 5384 @piersmorgan
## 5385 @scobie
## 5386 @piersmorgan
## 5387 @tonjastidhum
## 5388 @jesusjugs2
## 5389 @oprah
## 5390 @piersmorgan
## 5391 @ap
## 5392 @cnn
## 5393 @ajeheadtohead
## 5394 @marinahyde
## 5395 @murkymeg
## 5396 @jimmfelton
## 5397 @scottygb
## 5398 @piersmorgan
## 5399 @cnn
## 5400 @thetalkcbs
## 5401 @mrssosbourne
## 5402 @oprah
## 5403 @bonn1egreer
## 5404 @andersoncooper
618
## 5405 @mailonlineâ\200¦
## 5406 @harpersbazaarus
## 5407 @scobie
## 5408 @shehnazkhan
## 5409 @brianstelter
## 5410 @dapomarino
## 5411 @donjazzy
## 5412 @youtubemusic
## 5413 @spotify
## 5414 @musictimegh
## 5415 @musictimeng
## 5416 @coolfmnigeriaâ\200¦
## 5417 @megynkelly
## 5418 @royalfamily
## 5419 @kensingtonroyal
## 5420 @eveningstandard
## 5421 @viacomcbs
## 5422 @cbs
## 5423 @itv
## 5424 @globaltv
## 5425 @ananavarro
## 5426 @bethenny
## 5427 @theestallion
## 5428 @oprah
## 5429 @uklabour
## 5430 @mailonlineâ\200¦
## 5431 @chrisrickett
## 5432 @vsbc
## 5433 @elgransenglar
Building on this example, create a new dataframe of words in the dataset that are hashtags.
tags_mm<-
tidy_mm%>%
filter(str_detect(word,"#"))
We can conduct the same kinds of frequency and “popularity” analyses on the hashtags dataset, which you
can do if you have time after finishing the rest of the assignment.
You can also use str_detect() to filter out generic words to identify underlying themes–for example, piping
the dataset into filter(!str_detect(word,“meghan|oprah”)) will result in a dataset where none of the words
contain meghan or oprah. You can also play around with this if you have time.
But before exploring those. . .
16. Let’s try some basic sentiment analysis.
Past researchers have compiled lexicons with sentiment scores for certain words, which we can use to assess
the sentiment of each word in each tweet, and can then be used to assess the sentiment of each tweet overall.
However, because these lexicons map words to sentiment scores, it’s important to choose a lexicon that
includes vocabulary that would be appropriate for your application. (For further reading, look at chapter 2
of the Test Mining with R book.)
In this case, we will be using the AFINN lexicon, which scores words on a range of -5 to 5, where negative
scores indicate negative sentiment and positive scores indicate positive sentiment.
619
The AFINN lexicon works similarly to stop_words, where one column is called “word” which can be used
to join and match words between the tidy dataframe and the AFINN lexicon. The AFINN lexicon can be
retrieved from the tidytext package using ‘get_sentiments(“afinn”)’
Use inner_join(get_sentiments(“afinn”)) to create a new dataframe with a column for sentiment scores.
(The new column will be called “value”) We will show you this part. Note that “tidy_mm” is our tidy
version of the dataframe.
sentiment_mm<-tidy_mm%>%
inner_join(get_sentiments("afinn"))
## Joining, by = "word"
Similar to the hockey dataset from Assignment 2, we may want to look at tweet-level sentiment data rather
than single word-level sentiment data. Keeping in mind how we created unique IDs for each tweet, how can
we add the sentiment values of one tweet together to produce a dataframe with tweet-level sentiment scores?
sentiment_mm%>%
group_by(id)%>%
summarise(tweet_sentiment = sum(value))
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## # A tibble: 8,274 x 2
## id tweet_sentiment
##
## 1 100 2
## 2 10016 1
## 3 1003 -1
## 4 10036 -2
## 5 10042 6
## 6 10045 -6
## 7 10062 2
## 8 10064 -4
## 9 10065 -1
## 10 10066 4
## # ... with 8,264 more rows
In the same vein as previous examples, the first thing we will want to do is look at the distribution of values
for sentiment. What does it look like?
sentiment_mm%>%
group_by(id)%>%
summarise(tweet_sentiment=sum(value))%>%
ggplot(aes(x=tweet_sentiment))+geom_histogram()
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
## ‘stat_bin()‘ using ‘bins = 30‘. Pick better value with ‘binwidth‘.
620
01000
2000
−20 −10 0 10
tweet_sentiment
co
u
n
t
Suppose we now want to observe the relationship between sentiment of a tweet and the number of times the
tweet has been retweeted in a scatterplot. Building on the expression above, how might we accomplish this?
(A note: given that we know the number of retweets is the same across a unique tweet, you can carry
Num.of.Retweet into the ggplot expression by including it as the second group in the group_by() expression.)
sentiment_mm%>%
group_by(id, Num.of.Retweet)%>%
summarise(tweet_sentiment = sum(value))%>%
filter(Num.of.Retweet < 200) %>%
ggplot(aes(x=tweet_sentiment, y=Num.of.Retweet))+geom_point()
## ‘summarise()‘ regrouping output by ’id’ (override with ‘.groups‘ argument)
621
050
100
150
200
−20 −10 0 10
tweet_sentiment
N
um
.o
f.R
et
we
e
t
As we discussed in class, it can be somewhat misleading in plots that have overlapping datapoints. You
might have points that look like a single datapoint, but in fact are several (or many) datapoints on top of
each other. Adding the “jitter” value to the position argument in geom_point adds a little bit of random
noise to each point, making the plot somewhat more revealing of where the “density” is in the graph:
sentiment_mm%>%
group_by(id, Num.of.Retweet)%>%
summarise(tweet_sentiment = sum(value))%>%
filter(Num.of.Retweet < 200) %>%
ggplot(aes(x=tweet_sentiment, y=Num.of.Retweet))+geom_point(position="jitter")
## ‘summarise()‘ regrouping output by ’id’ (override with ‘.groups‘ argument)
622
050
100
150
200
−20 −10 0 10
tweet_sentiment
N
um
.o
f.R
et
we
e
t
If we want to look at sentiment over time, we can use a handy function called floor_date() from the “lubri-
date” package which, contrary to its name, allows us to group date-time objects by not only date, but also
hour, minute, and second intervals.
The graphs resulting from the following code show the sentiment of tweets over time, but in slightly different
ways.
Carefully assess how the two pieces of code are similar and different. What is the difference between the
two?
How does it influence the graph and your conclusions?
sentiment_mm%>%
group_by(id,datetime)%>%
summarise(sentiment=sum(value))%>%
group_by(hour=floor_date(datetime,"hour"))%>%
summarise(overall_sentiment=sum(sentiment))%>%
ggplot(aes(x=hour,y=overall_sentiment))+geom_line()
## ‘summarise()‘ regrouping output by ’id’ (override with ‘.groups‘ argument)
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
623
−800
−600
−400
−200
0
Mar 06 Mar 08 Mar 10 Mar 12
hour
ov
e
ra
ll_
se
nt
im
en
t
sentiment_mm%>%
group_by(id,datetime)%>%
summarise(sentiment=sum(value))%>%
group_by(hour=floor_date(datetime,"hour"))%>%
summarise(norm_sentiment=sum(sentiment)/n())%>%
ggplot(aes(x=hour,y=norm_sentiment))+geom_line()
## ‘summarise()‘ regrouping output by ’id’ (override with ‘.groups‘ argument)
## ‘summarise()‘ ungrouping output (override with ‘.groups‘ argument)
624
−4
−3
−2
−1
0
1
Mar 06 Mar 08 Mar 10 Mar 12
hour
n
o
rm
_
se
n
tim
en
t
625

欢迎咨询51作业君
51作业君

Email:51zuoyejun

@gmail.com

添加客服微信: abby12468