WeRateDogs Twitter Data Wrangling


Project objectives

  • Perform data wrangling (gathering, assessing and cleaning) on provided thee sources of data.
  • Store, analyze, and visualize the wrangled data.
  • Reporting on 1) data wrangling efforts and 2) data analyses and visualizations (in separate documents).

Additional Project Requirement

  • In the analysis, only original tweets/ratings that have images should be used (no retweets nor replies).

Imports & Options

In [1]:
import pandas as pd
import numpy as np
import requests
import tweepy # conda install -c conda-forge tweepy
import datetime
import os
import json
import matplotlib.pyplot as plt

%matplotlib inline

# Do not truncate data in cells
pd.set_option('display.max_colwidth', -1)

# Do not limit number of displayed columns
pd.set_option('display.max_columns', None)


def print_full(x):
    pd.set_option('display.max_rows', len(x))
    pd.set_option('display.max_columns', None)
    pd.set_option('display.width', 2000)
    pd.set_option('display.float_format', '{:20,.2f}'.format)
    pd.set_option('display.max_colwidth', -1)
    #print(x)
    #pd.reset_option('display.max_rows')
    #pd.reset_option('display.max_columns')
    #pd.reset_option('display.width')
    #pd.reset_option('display.float_format')
    #pd.reset_option('display.max_colwidth')
    
#print_full(30)

Constants & Controls

In [2]:
consumer_key = 'REMOVED'
consumer_secret = 'REMOVED'
access_token = 'REMOVED'
access_secret = 'REMOVED'

# To control sending api requests
SEND_API_REQUEST = True

Step 1: Gathering Data

Gather each of the three pieces of data:

  1. The WeRateDogs Twitter archive (file on hand, manual download of 'twitter-archive-enhanced.csv')
  2. The tweet image predictions ('image-predictions.tsv', what breed of dog or other object, animal, etc. is present in each tweet according to a neural network). This file should be downloaded programmatically using the Requests library and the following URL: https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv.
  3. Store each tweet's entire set of JSON data (with at minimum tweet ID, retweet count, and favorite count) in a file called 'tweet_json.txt' using Twitter API and Python's Tweepy library. Each tweet's JSON data should be written to its own line.

1. Import 'twitter_archive_enhanced.csv' into a dataframe

In [3]:
# Read csv file and import it to a dataframe
df_arch = pd.read_csv('twitter-archive-enhanced.csv')
In [4]:
df_arch.head(2).T
Out[4]:
0 1
tweet_id 892420643555336193 892177421306343426
in_reply_to_status_id NaN NaN
in_reply_to_user_id NaN NaN
timestamp 2017-08-01 16:23:56 +0000 2017-08-01 00:17:27 +0000
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV
retweeted_status_id NaN NaN
retweeted_status_user_id NaN NaN
retweeted_status_timestamp NaN NaN
expanded_urls https://twitter.com/dog_rates/status/892420643555336193/photo/1 https://twitter.com/dog_rates/status/892177421306343426/photo/1
rating_numerator 13 13
rating_denominator 10 10
name Phineas Tilly
doggo None None
floofer None None
pupper None None
puppo None None
In [5]:
df_arch.shape
Out[5]:
(2356, 17)

2. Import 'image-predictions.tsv' into a dataframe

In [6]:
file_name = 'image-predictions.tsv'

# Fetch data if file if doesn't exist
if not os.path.isfile(file_name):
    url = 'https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv'
    response = requests.get(url)

#response
In [7]:
# Save the response to 'image-predictions.tsv' file if doesn't exist
if not os.path.isfile(file_name):
    with open(file_name, mode='wb') as file:
        file.write(response.content)
In [8]:
# Load the 'image-predictions.tsv' file into a dataframe
df_pred = pd.read_csv(file_name, sep='\t')
In [9]:
df_pred.head(2).T
Out[9]:
0 1
tweet_id 666020888022790149 666029285002620928
jpg_url https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg
img_num 1 1
p1 Welsh_springer_spaniel redbone
p1_conf 0.465074 0.506826
p1_dog True True
p2 collie miniature_pinscher
p2_conf 0.156665 0.0741917
p2_dog True True
p3 Shetland_sheepdog Rhodesian_ridgeback
p3_conf 0.0614285 0.07201
p3_dog True True
In [10]:
df_pred.shape
Out[10]:
(2075, 12)

3. Using Twitter API import tweets data into a dataframe

In [11]:
# Connect
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)

# When sending requests to Twitter API
# - use OAuth method
# - automaticlly wait for rate limits to replenish
# - print notification when Tweepy is waiting for rate limits to replenish
api = tweepy.API(auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)

# Testing
#for tweet_id in df_arch.tweet_id:
#    print(tweet_id)
#    tweet_response = api.get_status(tweet_id, tweet_mode='extended')
#    tweet_info = tweet_response._json  
#    break
#tweet_info
In [12]:
# Testing
#tweet_info['id']
#tweet_info['retweet_count']
#tweet_info['favorite_count']
#tweet_info['user']['followers_count']
In [13]:
# Import every tweet JSON data into 'tweet_json.txt' as a separate line
# wait for 15 minutes (automatically) each time the rate limit is hit 
# (for taking tweets data, the limit is 900 tweets per 15 minutes)

file_name = 'tweet_json.txt'

# Create a file, remove previous one if exists
#open(file_name, 'w').close()

# Create a file if it doesn't exist
if not os.path.isfile(file_name):
    open(file_name, 'w').close()
In [14]:
tweet_errors = {}
current_tweet_number = 0
tweet_data = []

if SEND_API_REQUEST:
    for tweet_id in df_arch.tweet_id:
        try:
            # Increment current_tweet_number
            current_tweet_number += 1

            # Start stamp
            print('-'*10)
            print('{} started at {}. Tweet_id -> {}'.format(current_tweet_number, datetime.datetime.now().time(), tweet_id))

            # Get request response
            tweet_response = api.get_status(tweet_id, tweet_mode='extended')
            tweet_info = tweet_response._json

            # Append to 'tweet_json.txt' file
            tweet_data.append(tweet_info)
            with open(file_name, 'w') as file:
                json.dump(tweet_data, file)

            # End stamp
            print('{} completed at {}'.format(current_tweet_number, datetime.datetime.now().time()))

            # Testing
            #if current_tweet_number > 50:
            #      break

        except Exception as e:
            # Record exceptions
            print(' -> {} EXCEPTION at {}'.format(current_tweet_number, datetime.datetime.now().time()))
            tweet_errors[str(tweet_id)] = str(e)
----------
1 started at 22:26:40.124963. Tweet_id -> 892420643555336193
1 completed at 22:26:40.463390
----------
2 started at 22:26:40.463493. Tweet_id -> 892177421306343426
2 completed at 22:26:40.838923
----------
3 started at 22:26:40.839716. Tweet_id -> 891815181378084864
3 completed at 22:26:41.197800
----------
4 started at 22:26:41.197941. Tweet_id -> 891689557279858688
4 completed at 22:26:41.661654
----------
5 started at 22:26:41.661802. Tweet_id -> 891327558926688256
5 completed at 22:26:42.074667
----------
6 started at 22:26:42.074845. Tweet_id -> 891087950875897856
6 completed at 22:26:42.487261
----------
7 started at 22:26:42.488079. Tweet_id -> 890971913173991426
7 completed at 22:26:42.811571
----------
8 started at 22:26:42.811683. Tweet_id -> 890729181411237888
8 completed at 22:26:43.132118
----------
9 started at 22:26:43.132258. Tweet_id -> 890609185150312448
9 completed at 22:26:43.464878
----------
10 started at 22:26:43.465017. Tweet_id -> 890240255349198849
10 completed at 22:26:43.838438
----------
11 started at 22:26:43.838632. Tweet_id -> 890006608113172480
11 completed at 22:26:44.239199
----------
12 started at 22:26:44.239359. Tweet_id -> 889880896479866881
12 completed at 22:26:44.602727
----------
13 started at 22:26:44.602878. Tweet_id -> 889665388333682689
13 completed at 22:26:45.144798
----------
14 started at 22:26:45.144909. Tweet_id -> 889638837579907072
14 completed at 22:26:45.699686
----------
15 started at 22:26:45.699849. Tweet_id -> 889531135344209921
15 completed at 22:26:46.086957
----------
16 started at 22:26:46.087148. Tweet_id -> 889278841981685760
16 completed at 22:26:46.443564
----------
17 started at 22:26:46.443699. Tweet_id -> 888917238123831296
17 completed at 22:26:46.790027
----------
18 started at 22:26:46.790193. Tweet_id -> 888804989199671297
18 completed at 22:26:47.126465
----------
19 started at 22:26:47.127720. Tweet_id -> 888554962724278272
19 completed at 22:26:47.532916
----------
20 started at 22:26:47.533708. Tweet_id -> 888202515573088257
 -> 20 EXCEPTION at 22:26:48.000093
----------
21 started at 22:26:48.000226. Tweet_id -> 888078434458587136
21 completed at 22:26:48.312348
----------
22 started at 22:26:48.312513. Tweet_id -> 887705289381826560
22 completed at 22:26:48.783541
----------
23 started at 22:26:48.783744. Tweet_id -> 887517139158093824
23 completed at 22:26:49.145557
----------
24 started at 22:26:49.145723. Tweet_id -> 887473957103951883
24 completed at 22:26:49.502768
----------
25 started at 22:26:49.502974. Tweet_id -> 887343217045368832
25 completed at 22:26:49.899617
----------
26 started at 22:26:49.899821. Tweet_id -> 887101392804085760
26 completed at 22:26:50.258021
----------
27 started at 22:26:50.258213. Tweet_id -> 886983233522544640
27 completed at 22:26:50.712620
----------
28 started at 22:26:50.712754. Tweet_id -> 886736880519319552
28 completed at 22:26:51.131551
----------
29 started at 22:26:51.131713. Tweet_id -> 886680336477933568
29 completed at 22:26:51.449181
----------
30 started at 22:26:51.449359. Tweet_id -> 886366144734445568
30 completed at 22:26:51.809132
----------
31 started at 22:26:51.809278. Tweet_id -> 886267009285017600
31 completed at 22:26:52.216583
----------
32 started at 22:26:52.216709. Tweet_id -> 886258384151887873
32 completed at 22:26:52.538911
----------
33 started at 22:26:52.539115. Tweet_id -> 886054160059072513
33 completed at 22:26:52.988913
----------
34 started at 22:26:52.989037. Tweet_id -> 885984800019947520
34 completed at 22:26:53.335558
----------
35 started at 22:26:53.335684. Tweet_id -> 885528943205470208
35 completed at 22:26:53.677671
----------
36 started at 22:26:53.677845. Tweet_id -> 885518971528720385
36 completed at 22:26:54.165637
----------
37 started at 22:26:54.165820. Tweet_id -> 885311592912609280
37 completed at 22:26:54.594679
----------
38 started at 22:26:54.594813. Tweet_id -> 885167619883638784
38 completed at 22:26:55.047263
----------
39 started at 22:26:55.047421. Tweet_id -> 884925521741709313
39 completed at 22:26:55.496591
----------
40 started at 22:26:55.496718. Tweet_id -> 884876753390489601
40 completed at 22:26:55.818713
----------
41 started at 22:26:55.818830. Tweet_id -> 884562892145688576
41 completed at 22:26:56.148530
----------
42 started at 22:26:56.148680. Tweet_id -> 884441805382717440
42 completed at 22:26:56.627371
----------
43 started at 22:26:56.627894. Tweet_id -> 884247878851493888
43 completed at 22:26:57.132874
----------
44 started at 22:26:57.133013. Tweet_id -> 884162670584377345
44 completed at 22:26:57.469524
----------
45 started at 22:26:57.469672. Tweet_id -> 883838122936631299
45 completed at 22:26:57.785622
----------
46 started at 22:26:57.785768. Tweet_id -> 883482846933004288
46 completed at 22:26:58.137993
----------
47 started at 22:26:58.138154. Tweet_id -> 883360690899218434
47 completed at 22:26:58.580977
----------
48 started at 22:26:58.581442. Tweet_id -> 883117836046086144
48 completed at 22:26:58.986012
----------
49 started at 22:26:58.987202. Tweet_id -> 882992080364220416
49 completed at 22:26:59.496524
----------
50 started at 22:26:59.496694. Tweet_id -> 882762694511734784
50 completed at 22:26:59.845103
----------
51 started at 22:26:59.845264. Tweet_id -> 882627270321602560
51 completed at 22:27:00.377033
----------
52 started at 22:27:00.377233. Tweet_id -> 882268110199369728
52 completed at 22:27:00.831544
----------
53 started at 22:27:00.831809. Tweet_id -> 882045870035918850
53 completed at 22:27:01.647006
----------
54 started at 22:27:01.647510. Tweet_id -> 881906580714921986
54 completed at 22:27:02.013700
----------
55 started at 22:27:02.013812. Tweet_id -> 881666595344535552
55 completed at 22:27:02.344326
----------
56 started at 22:27:02.344602. Tweet_id -> 881633300179243008
56 completed at 22:27:02.776333
----------
57 started at 22:27:02.776507. Tweet_id -> 881536004380872706
57 completed at 22:27:03.134632
----------
58 started at 22:27:03.134807. Tweet_id -> 881268444196462592
58 completed at 22:27:03.602337
----------
59 started at 22:27:03.602465. Tweet_id -> 880935762899988482
59 completed at 22:27:04.314310
----------
60 started at 22:27:04.314485. Tweet_id -> 880872448815771648
60 completed at 22:27:04.724363
----------
61 started at 22:27:04.724501. Tweet_id -> 880465832366813184
61 completed at 22:27:05.067536
----------
62 started at 22:27:05.067655. Tweet_id -> 880221127280381952
62 completed at 22:27:05.546155
----------
63 started at 22:27:05.546321. Tweet_id -> 880095782870896641
63 completed at 22:27:05.953832
----------
64 started at 22:27:05.954025. Tweet_id -> 879862464715927552
64 completed at 22:27:06.297124
----------
65 started at 22:27:06.297303. Tweet_id -> 879674319642796034
65 completed at 22:27:06.643267
----------
66 started at 22:27:06.643380. Tweet_id -> 879492040517615616
66 completed at 22:27:07.078600
----------
67 started at 22:27:07.078841. Tweet_id -> 879415818425184262
67 completed at 22:27:07.406511
----------
68 started at 22:27:07.407705. Tweet_id -> 879376492567855104
68 completed at 22:27:07.854922
----------
69 started at 22:27:07.855073. Tweet_id -> 879130579576475649
69 completed at 22:27:08.318723
----------
70 started at 22:27:08.318886. Tweet_id -> 879050749262655488
70 completed at 22:27:08.834285
----------
71 started at 22:27:08.834520. Tweet_id -> 879008229531029506
71 completed at 22:27:09.180582
----------
72 started at 22:27:09.180700. Tweet_id -> 878776093423087618
72 completed at 22:27:09.653459
----------
73 started at 22:27:09.653601. Tweet_id -> 878604707211726852
73 completed at 22:27:10.469481
----------
74 started at 22:27:10.469899. Tweet_id -> 878404777348136964
74 completed at 22:27:10.975739
----------
75 started at 22:27:10.975891. Tweet_id -> 878316110768087041
75 completed at 22:27:11.651845
----------
76 started at 22:27:11.652005. Tweet_id -> 878281511006478336
76 completed at 22:27:12.049181
----------
77 started at 22:27:12.049342. Tweet_id -> 878057613040115712
77 completed at 22:27:12.829298
----------
78 started at 22:27:12.829441. Tweet_id -> 877736472329191424
78 completed at 22:27:13.451553
----------
79 started at 22:27:13.452748. Tweet_id -> 877611172832227328
79 completed at 22:27:13.948768
----------
80 started at 22:27:13.948929. Tweet_id -> 877556246731214848
80 completed at 22:27:14.269576
----------
81 started at 22:27:14.270278. Tweet_id -> 877316821321428993
81 completed at 22:27:14.765260
----------
82 started at 22:27:14.766434. Tweet_id -> 877201837425926144
82 completed at 22:27:15.311765
----------
83 started at 22:27:15.311915. Tweet_id -> 876838120628539392
83 completed at 22:27:15.656637
----------
84 started at 22:27:15.656775. Tweet_id -> 876537666061221889
84 completed at 22:27:16.099357
----------
85 started at 22:27:16.099528. Tweet_id -> 876484053909872640
85 completed at 22:27:16.452945
----------
86 started at 22:27:16.454203. Tweet_id -> 876120275196170240
86 completed at 22:27:16.800123
----------
87 started at 22:27:16.801333. Tweet_id -> 875747767867523072
87 completed at 22:27:17.141126
----------
88 started at 22:27:17.142312. Tweet_id -> 875144289856114688
88 completed at 22:27:17.497823
----------
89 started at 22:27:17.498236. Tweet_id -> 875097192612077568
89 completed at 22:27:18.253221
----------
90 started at 22:27:18.253323. Tweet_id -> 875021211251597312
90 completed at 22:27:18.603484
----------
91 started at 22:27:18.603607. Tweet_id -> 874680097055178752
91 completed at 22:27:18.978800
----------
92 started at 22:27:18.979010. Tweet_id -> 874434818259525634
92 completed at 22:27:19.433092
----------
93 started at 22:27:19.433364. Tweet_id -> 874296783580663808
93 completed at 22:27:19.841309
----------
94 started at 22:27:19.841499. Tweet_id -> 874057562936811520
94 completed at 22:27:20.313901
----------
95 started at 22:27:20.314064. Tweet_id -> 874012996292530176
95 completed at 22:27:20.822257
----------
96 started at 22:27:20.822383. Tweet_id -> 873697596434513921
 -> 96 EXCEPTION at 22:27:21.137061
----------
97 started at 22:27:21.137243. Tweet_id -> 873580283840344065
97 completed at 22:27:21.591492
----------
98 started at 22:27:21.591648. Tweet_id -> 873337748698140672
98 completed at 22:27:22.043058
----------
99 started at 22:27:22.043179. Tweet_id -> 873213775632977920
99 completed at 22:27:22.456526
----------
100 started at 22:27:22.456631. Tweet_id -> 872967104147763200
100 completed at 22:27:22.822524
----------
101 started at 22:27:22.822686. Tweet_id -> 872820683541237760
101 completed at 22:27:23.239396
----------
102 started at 22:27:23.239709. Tweet_id -> 872668790621863937
 -> 102 EXCEPTION at 22:27:23.705458
----------
103 started at 22:27:23.705666. Tweet_id -> 872620804844003328
103 completed at 22:27:24.083823
----------
104 started at 22:27:24.083925. Tweet_id -> 872486979161796608
104 completed at 22:27:24.620517
----------
105 started at 22:27:24.621744. Tweet_id -> 872261713294495745
105 completed at 22:27:24.975478
----------
106 started at 22:27:24.975590. Tweet_id -> 872122724285648897
106 completed at 22:27:25.342231
----------
107 started at 22:27:25.343365. Tweet_id -> 871879754684805121
107 completed at 22:27:25.911532
----------
108 started at 22:27:25.911685. Tweet_id -> 871762521631449091
108 completed at 22:27:26.436898
----------
109 started at 22:27:26.437035. Tweet_id -> 871515927908634625
109 completed at 22:27:26.863619
----------
110 started at 22:27:26.864852. Tweet_id -> 871166179821445120
110 completed at 22:27:27.283782
----------
111 started at 22:27:27.283956. Tweet_id -> 871102520638267392
111 completed at 22:27:27.663276
----------
112 started at 22:27:27.663424. Tweet_id -> 871032628920680449
112 completed at 22:27:28.211123
----------
113 started at 22:27:28.211254. Tweet_id -> 870804317367881728
113 completed at 22:27:28.705782
----------
114 started at 22:27:28.706981. Tweet_id -> 870726314365509632
114 completed at 22:27:29.135324
----------
115 started at 22:27:29.135484. Tweet_id -> 870656317836468226
115 completed at 22:27:29.614201
----------
116 started at 22:27:29.614319. Tweet_id -> 870374049280663552
116 completed at 22:27:30.048267
----------
117 started at 22:27:30.048385. Tweet_id -> 870308999962521604
117 completed at 22:27:30.578992
----------
118 started at 22:27:30.579129. Tweet_id -> 870063196459192321
118 completed at 22:27:31.066607
----------
119 started at 22:27:31.066730. Tweet_id -> 869988702071779329
 -> 119 EXCEPTION at 22:27:31.375810
----------
120 started at 22:27:31.376012. Tweet_id -> 869772420881756160
120 completed at 22:27:31.891477
----------
121 started at 22:27:31.891648. Tweet_id -> 869702957897576449
121 completed at 22:27:32.296548
----------
122 started at 22:27:32.296731. Tweet_id -> 869596645499047938
122 completed at 22:27:32.700402
----------
123 started at 22:27:32.700572. Tweet_id -> 869227993411051520
123 completed at 22:27:33.117234
----------
124 started at 22:27:33.118439. Tweet_id -> 868880397819494401
124 completed at 22:27:33.730986
----------
125 started at 22:27:33.731198. Tweet_id -> 868639477480148993
125 completed at 22:27:34.243414
----------
126 started at 22:27:34.243577. Tweet_id -> 868622495443632128
126 completed at 22:27:34.761572
----------
127 started at 22:27:34.761680. Tweet_id -> 868552278524837888
127 completed at 22:27:35.131234
----------
128 started at 22:27:35.131399. Tweet_id -> 867900495410671616
128 completed at 22:27:35.583685
----------
129 started at 22:27:35.583800. Tweet_id -> 867774946302451713
129 completed at 22:27:35.961427
----------
130 started at 22:27:35.961589. Tweet_id -> 867421006826221569
130 completed at 22:27:36.346233
----------
131 started at 22:27:36.346495. Tweet_id -> 867072653475098625
131 completed at 22:27:36.711789
----------
132 started at 22:27:36.711943. Tweet_id -> 867051520902168576
132 completed at 22:27:37.420284
----------
133 started at 22:27:37.420423. Tweet_id -> 866816280283807744
 -> 133 EXCEPTION at 22:27:37.694295
----------
134 started at 22:27:37.694443. Tweet_id -> 866720684873056260
134 completed at 22:27:38.157735
----------
135 started at 22:27:38.157863. Tweet_id -> 866686824827068416
135 completed at 22:27:38.678656
----------
136 started at 22:27:38.678807. Tweet_id -> 866450705531457537
136 completed at 22:27:39.037126
----------
137 started at 22:27:39.037390. Tweet_id -> 866334964761202691
137 completed at 22:27:39.491952
----------
138 started at 22:27:39.492087. Tweet_id -> 866094527597207552
138 completed at 22:27:40.013775
----------
139 started at 22:27:40.014074. Tweet_id -> 865718153858494464
139 completed at 22:27:40.492908
----------
140 started at 22:27:40.493037. Tweet_id -> 865359393868664832
140 completed at 22:27:40.870984
----------
141 started at 22:27:40.871116. Tweet_id -> 865006731092295680
141 completed at 22:27:41.222999
----------
142 started at 22:27:41.223248. Tweet_id -> 864873206498414592
142 completed at 22:27:41.836214
----------
143 started at 22:27:41.836389. Tweet_id -> 864279568663928832
143 completed at 22:27:42.450159
----------
144 started at 22:27:42.450358. Tweet_id -> 864197398364647424
144 completed at 22:27:43.102300
----------
145 started at 22:27:43.102474. Tweet_id -> 863907417377173506
145 completed at 22:27:43.502326
----------
146 started at 22:27:43.502485. Tweet_id -> 863553081350529029
146 completed at 22:27:44.035220
----------
147 started at 22:27:44.035450. Tweet_id -> 863471782782697472
147 completed at 22:27:44.456648
----------
148 started at 22:27:44.456753. Tweet_id -> 863432100342583297
148 completed at 22:27:44.845144
----------
149 started at 22:27:44.845251. Tweet_id -> 863427515083354112
149 completed at 22:27:45.330414
----------
150 started at 22:27:45.330846. Tweet_id -> 863079547188785154
150 completed at 22:27:45.721797
----------
151 started at 22:27:45.722410. Tweet_id -> 863062471531167744
151 completed at 22:27:46.107055
----------
152 started at 22:27:46.107224. Tweet_id -> 862831371563274240
152 completed at 22:27:46.488185
----------
153 started at 22:27:46.488662. Tweet_id -> 862722525377298433
153 completed at 22:27:46.954070
----------
154 started at 22:27:46.954263. Tweet_id -> 862457590147678208
154 completed at 22:27:47.332746
----------
155 started at 22:27:47.332962. Tweet_id -> 862096992088072192
155 completed at 22:27:47.727532
----------
156 started at 22:27:47.727726. Tweet_id -> 861769973181624320
 -> 156 EXCEPTION at 22:27:48.176082
----------
157 started at 22:27:48.176215. Tweet_id -> 861383897657036800
157 completed at 22:27:48.672917
----------
158 started at 22:27:48.673043. Tweet_id -> 861288531465048066
158 completed at 22:27:49.210658
----------
159 started at 22:27:49.210790. Tweet_id -> 861005113778896900
159 completed at 22:27:50.079295
----------
160 started at 22:27:50.079455. Tweet_id -> 860981674716409858
160 completed at 22:27:50.560445
----------
161 started at 22:27:50.561037. Tweet_id -> 860924035999428608
161 completed at 22:27:51.066013
----------
162 started at 22:27:51.066153. Tweet_id -> 860563773140209665
162 completed at 22:27:51.467814
----------
163 started at 22:27:51.467982. Tweet_id -> 860524505164394496
163 completed at 22:27:51.985977
----------
164 started at 22:27:51.986423. Tweet_id -> 860276583193509888
164 completed at 22:27:52.503743
----------
165 started at 22:27:52.503960. Tweet_id -> 860184849394610176
165 completed at 22:27:52.950189
----------
166 started at 22:27:52.950526. Tweet_id -> 860177593139703809
166 completed at 22:27:53.527939
----------
167 started at 22:27:53.528151. Tweet_id -> 859924526012018688
167 completed at 22:27:54.033393
----------
168 started at 22:27:54.033562. Tweet_id -> 859851578198683649
168 completed at 22:27:54.548255
----------
169 started at 22:27:54.548769. Tweet_id -> 859607811541651456
169 completed at 22:27:54.933516
----------
170 started at 22:27:54.933931. Tweet_id -> 859196978902773760
170 completed at 22:27:55.315437
----------
171 started at 22:27:55.315921. Tweet_id -> 859074603037188101
171 completed at 22:27:55.881483
----------
172 started at 22:27:55.881780. Tweet_id -> 858860390427611136
172 completed at 22:27:56.486847
----------
173 started at 22:27:56.487007. Tweet_id -> 858843525470990336
173 completed at 22:27:57.014286
----------
174 started at 22:27:57.015055. Tweet_id -> 858471635011153920
174 completed at 22:27:57.543247
----------
175 started at 22:27:57.543466. Tweet_id -> 858107933456039936
175 completed at 22:27:58.035224
----------
176 started at 22:27:58.035787. Tweet_id -> 857989990357356544
176 completed at 22:27:58.551535
----------
177 started at 22:27:58.551669. Tweet_id -> 857746408056729600
177 completed at 22:27:59.055768
----------
178 started at 22:27:59.056246. Tweet_id -> 857393404942143489
178 completed at 22:27:59.453205
----------
179 started at 22:27:59.453415. Tweet_id -> 857263160327368704
179 completed at 22:27:59.965935
----------
180 started at 22:27:59.966340. Tweet_id -> 857214891891077121
180 completed at 22:28:00.359640
----------
181 started at 22:28:00.359828. Tweet_id -> 857062103051644929
181 completed at 22:28:00.798770
----------
182 started at 22:28:00.799031. Tweet_id -> 857029823797047296
182 completed at 22:28:01.299873
----------
183 started at 22:28:01.300030. Tweet_id -> 856602993587888130
183 completed at 22:28:01.917457
----------
184 started at 22:28:01.917596. Tweet_id -> 856543823941562368
184 completed at 22:28:02.449691
----------
185 started at 22:28:02.449843. Tweet_id -> 856526610513747968
185 completed at 22:28:02.976624
----------
186 started at 22:28:02.976883. Tweet_id -> 856330835276025856
186 completed at 22:28:03.377110
----------
187 started at 22:28:03.377261. Tweet_id -> 856288084350160898
187 completed at 22:28:03.877308
----------
188 started at 22:28:03.877508. Tweet_id -> 856282028240666624
188 completed at 22:28:04.369934
----------
189 started at 22:28:04.370065. Tweet_id -> 855862651834028034
189 completed at 22:28:04.914659
----------
190 started at 22:28:04.914828. Tweet_id -> 855860136149123072
190 completed at 22:28:05.435763
----------
191 started at 22:28:05.436275. Tweet_id -> 855857698524602368
191 completed at 22:28:06.011351
----------
192 started at 22:28:06.011842. Tweet_id -> 855851453814013952
192 completed at 22:28:06.530682
----------
193 started at 22:28:06.530926. Tweet_id -> 855818117272018944
193 completed at 22:28:07.040253
----------
194 started at 22:28:07.040515. Tweet_id -> 855459453768019968
194 completed at 22:28:07.412553
----------
195 started at 22:28:07.412940. Tweet_id -> 855245323840757760
195 completed at 22:28:08.008964
----------
196 started at 22:28:08.009169. Tweet_id -> 855138241867124737
196 completed at 22:28:08.520108
----------
197 started at 22:28:08.520339. Tweet_id -> 854732716440526848
197 completed at 22:28:08.933810
----------
198 started at 22:28:08.934209. Tweet_id -> 854482394044301312
198 completed at 22:28:09.495477
----------
199 started at 22:28:09.495625. Tweet_id -> 854365224396361728
199 completed at 22:28:09.929644
----------
200 started at 22:28:09.930160. Tweet_id -> 854120357044912130
200 completed at 22:28:10.478888
----------
201 started at 22:28:10.479288. Tweet_id -> 854010172552949760
201 completed at 22:28:10.893112
----------
202 started at 22:28:10.893321. Tweet_id -> 853760880890318849
202 completed at 22:28:11.401805
----------
203 started at 22:28:11.401940. Tweet_id -> 853639147608842240
203 completed at 22:28:11.914620
----------
204 started at 22:28:11.914777. Tweet_id -> 853299958564483072
204 completed at 22:28:12.476072
----------
205 started at 22:28:12.476280. Tweet_id -> 852936405516943360
205 completed at 22:28:12.900708
----------
206 started at 22:28:12.902240. Tweet_id -> 852912242202992640
206 completed at 22:28:13.382392
----------
207 started at 22:28:13.382527. Tweet_id -> 852672615818899456
207 completed at 22:28:13.905935
----------
208 started at 22:28:13.906089. Tweet_id -> 852553447878664193
208 completed at 22:28:14.475989
----------
209 started at 22:28:14.476220. Tweet_id -> 852311364735569921
209 completed at 22:28:14.921607
----------
210 started at 22:28:14.922149. Tweet_id -> 852226086759018497
210 completed at 22:28:15.380094
----------
211 started at 22:28:15.380272. Tweet_id -> 852189679701164033
211 completed at 22:28:15.955055
----------
212 started at 22:28:15.955770. Tweet_id -> 851953902622658560
212 completed at 22:28:16.413665
----------
213 started at 22:28:16.413825. Tweet_id -> 851861385021730816
213 completed at 22:28:16.916552
----------
214 started at 22:28:16.917392. Tweet_id -> 851591660324737024
214 completed at 22:28:17.328201
----------
215 started at 22:28:17.328346. Tweet_id -> 851464819735769094
215 completed at 22:28:17.776176
----------
216 started at 22:28:17.776468. Tweet_id -> 851224888060895234
216 completed at 22:28:18.300854
----------
217 started at 22:28:18.301015. Tweet_id -> 850753642995093505
217 completed at 22:28:18.804702
----------
218 started at 22:28:18.804847. Tweet_id -> 850380195714523136
218 completed at 22:28:19.232530
----------
219 started at 22:28:19.233053. Tweet_id -> 850333567704068097
219 completed at 22:28:19.646048
----------
220 started at 22:28:19.646569. Tweet_id -> 850145622816686080
220 completed at 22:28:20.192693
----------
221 started at 22:28:20.193094. Tweet_id -> 850019790995546112
221 completed at 22:28:20.628734
----------
222 started at 22:28:20.629055. Tweet_id -> 849776966551130114
222 completed at 22:28:21.124700
----------
223 started at 22:28:21.124839. Tweet_id -> 849668094696017920
223 completed at 22:28:21.693819
----------
224 started at 22:28:21.694265. Tweet_id -> 849412302885593088
224 completed at 22:28:22.346147
----------
225 started at 22:28:22.346588. Tweet_id -> 849336543269576704
225 completed at 22:28:22.823199
----------
226 started at 22:28:22.823442. Tweet_id -> 849051919805034497
226 completed at 22:28:23.315265
----------
227 started at 22:28:23.315400. Tweet_id -> 848690551926992896
227 completed at 22:28:23.727293
----------
228 started at 22:28:23.727549. Tweet_id -> 848324959059550208
228 completed at 22:28:24.256129
----------
229 started at 22:28:24.256295. Tweet_id -> 848213670039564288
229 completed at 22:28:24.780466
----------
230 started at 22:28:24.780646. Tweet_id -> 848212111729840128
230 completed at 22:28:25.195241
----------
231 started at 22:28:25.195771. Tweet_id -> 847978865427394560
231 completed at 22:28:25.690242
----------
232 started at 22:28:25.690404. Tweet_id -> 847971574464610304
232 completed at 22:28:26.120870
----------
233 started at 22:28:26.121315. Tweet_id -> 847962785489326080
233 completed at 22:28:26.627275
----------
234 started at 22:28:26.627470. Tweet_id -> 847842811428974592
234 completed at 22:28:27.053767
----------
235 started at 22:28:27.054159. Tweet_id -> 847617282490613760
235 completed at 22:28:27.535623
----------
236 started at 22:28:27.535835. Tweet_id -> 847606175596138505
236 completed at 22:28:27.979887
----------
237 started at 22:28:27.980242. Tweet_id -> 847251039262605312
237 completed at 22:28:28.434747
----------
238 started at 22:28:28.434888. Tweet_id -> 847157206088847362
238 completed at 22:28:28.864534
----------
239 started at 22:28:28.864698. Tweet_id -> 847116187444137987
239 completed at 22:28:29.292471
----------
240 started at 22:28:29.292603. Tweet_id -> 846874817362120707
240 completed at 22:28:29.798631
----------
241 started at 22:28:29.799349. Tweet_id -> 846514051647705089
241 completed at 22:28:30.306769
----------
242 started at 22:28:30.306920. Tweet_id -> 846505985330044928
242 completed at 22:28:30.897112
----------
243 started at 22:28:30.897296. Tweet_id -> 846153765933735936
243 completed at 22:28:31.315709
----------
244 started at 22:28:31.315848. Tweet_id -> 846139713627017216
244 completed at 22:28:31.940824
----------
245 started at 22:28:31.941032. Tweet_id -> 846042936437604353
245 completed at 22:28:32.482579
----------
246 started at 22:28:32.482721. Tweet_id -> 845812042753855489
246 completed at 22:28:32.984504
----------
247 started at 22:28:32.985098. Tweet_id -> 845677943972139009
247 completed at 22:28:33.489720
----------
248 started at 22:28:33.489853. Tweet_id -> 845459076796616705
 -> 248 EXCEPTION at 22:28:33.803944
----------
249 started at 22:28:33.804175. Tweet_id -> 845397057150107648
249 completed at 22:28:34.300696
----------
250 started at 22:28:34.301278. Tweet_id -> 845306882940190720
250 completed at 22:28:34.782649
----------
251 started at 22:28:34.782773. Tweet_id -> 845098359547420673
251 completed at 22:28:35.364380
----------
252 started at 22:28:35.364544. Tweet_id -> 844979544864018432
252 completed at 22:28:35.855206
----------
253 started at 22:28:35.855590. Tweet_id -> 844973813909606400
253 completed at 22:28:36.393594
----------
254 started at 22:28:36.393745. Tweet_id -> 844704788403113984
254 completed at 22:28:36.829068
----------
255 started at 22:28:36.829509. Tweet_id -> 844580511645339650
255 completed at 22:28:37.257391
----------
256 started at 22:28:37.257562. Tweet_id -> 844223788422217728
256 completed at 22:28:37.747329
----------
257 started at 22:28:37.747507. Tweet_id -> 843981021012017153
257 completed at 22:28:38.350141
----------
258 started at 22:28:38.350262. Tweet_id -> 843856843873095681
258 completed at 22:28:38.909714
----------
259 started at 22:28:38.909924. Tweet_id -> 843604394117681152
259 completed at 22:28:39.472085
----------
260 started at 22:28:39.472426. Tweet_id -> 843235543001513987
260 completed at 22:28:40.024714
----------
261 started at 22:28:40.024938. Tweet_id -> 842892208864923648
 -> 261 EXCEPTION at 22:28:40.323869
----------
262 started at 22:28:40.324300. Tweet_id -> 842846295480000512
262 completed at 22:28:40.869127
----------
263 started at 22:28:40.869368. Tweet_id -> 842765311967449089
263 completed at 22:28:41.456453
----------
264 started at 22:28:41.456588. Tweet_id -> 842535590457499648
264 completed at 22:28:41.990386
----------
265 started at 22:28:41.990496. Tweet_id -> 842163532590374912
265 completed at 22:28:42.551140
----------
266 started at 22:28:42.551362. Tweet_id -> 842115215311396866
266 completed at 22:28:43.077307
----------
267 started at 22:28:43.077946. Tweet_id -> 841833993020538882
267 completed at 22:28:43.583450
----------
268 started at 22:28:43.583633. Tweet_id -> 841680585030541313
268 completed at 22:28:44.079102
----------
269 started at 22:28:44.079212. Tweet_id -> 841439858740625411
269 completed at 22:28:44.524803
----------
270 started at 22:28:44.524980. Tweet_id -> 841320156043304961
270 completed at 22:28:45.049662
----------
271 started at 22:28:45.049823. Tweet_id -> 841314665196081154
271 completed at 22:28:45.565224
----------
272 started at 22:28:45.565394. Tweet_id -> 841077006473256960
272 completed at 22:28:46.040087
----------
273 started at 22:28:46.040225. Tweet_id -> 840761248237133825
273 completed at 22:28:46.542507
----------
274 started at 22:28:46.542692. Tweet_id -> 840728873075638272
274 completed at 22:28:47.070509
----------
275 started at 22:28:47.070795. Tweet_id -> 840698636975636481
275 completed at 22:28:47.528751
----------
276 started at 22:28:47.528912. Tweet_id -> 840696689258311684
276 completed at 22:28:48.058881
----------
277 started at 22:28:48.059351. Tweet_id -> 840632337062862849
277 completed at 22:28:48.574581
----------
278 started at 22:28:48.575144. Tweet_id -> 840370681858686976
278 completed at 22:28:49.054838
----------
279 started at 22:28:49.055036. Tweet_id -> 840268004936019968
279 completed at 22:28:49.556610
----------
280 started at 22:28:49.557029. Tweet_id -> 839990271299457024
280 completed at 22:28:50.083760
----------
281 started at 22:28:50.084188. Tweet_id -> 839549326359670784
281 completed at 22:28:50.582915
----------
282 started at 22:28:50.583137. Tweet_id -> 839290600511926273
282 completed at 22:28:51.068105
----------
283 started at 22:28:51.068213. Tweet_id -> 839239871831150596
283 completed at 22:28:51.490140
----------
284 started at 22:28:51.490271. Tweet_id -> 838952994649550848
284 completed at 22:28:52.021988
----------
285 started at 22:28:52.022216. Tweet_id -> 838921590096166913
285 completed at 22:28:52.453669
----------
286 started at 22:28:52.453810. Tweet_id -> 838916489579200512
286 completed at 22:28:52.996621
----------
287 started at 22:28:52.996785. Tweet_id -> 838831947270979586
287 completed at 22:28:53.478608
----------
288 started at 22:28:53.478783. Tweet_id -> 838561493054533637
288 completed at 22:28:54.043982
----------
289 started at 22:28:54.044097. Tweet_id -> 838476387338051585
289 completed at 22:28:54.586900
----------
290 started at 22:28:54.587035. Tweet_id -> 838201503651401729
290 completed at 22:28:55.067533
----------
291 started at 22:28:55.067753. Tweet_id -> 838150277551247360
291 completed at 22:28:55.670007
----------
292 started at 22:28:55.670513. Tweet_id -> 838085839343206401
292 completed at 22:28:56.442487
----------
293 started at 22:28:56.442640. Tweet_id -> 838083903487373313
293 completed at 22:28:56.952749
----------
294 started at 22:28:56.953497. Tweet_id -> 837820167694528512
294 completed at 22:28:57.751445
----------
295 started at 22:28:57.751816. Tweet_id -> 837482249356513284
295 completed at 22:28:58.293565
----------
296 started at 22:28:58.293938. Tweet_id -> 837471256429613056
296 completed at 22:28:58.773153
----------
297 started at 22:28:58.773319. Tweet_id -> 837366284874571778
297 completed at 22:28:59.277499
----------
298 started at 22:28:59.278274. Tweet_id -> 837110210464448512
298 completed at 22:28:59.718064
----------
299 started at 22:28:59.718586. Tweet_id -> 837012587749474308
 -> 299 EXCEPTION at 22:29:00.035908
----------
300 started at 22:29:00.036208. Tweet_id -> 836989968035819520
300 completed at 22:29:00.583097
----------
301 started at 22:29:00.583334. Tweet_id -> 836753516572119041
301 completed at 22:29:01.081301
----------
302 started at 22:29:01.081445. Tweet_id -> 836677758902222849
302 completed at 22:29:01.551049
----------
303 started at 22:29:01.551252. Tweet_id -> 836648853927522308
303 completed at 22:29:02.104529
----------
304 started at 22:29:02.104684. Tweet_id -> 836397794269200385
304 completed at 22:29:02.671454
----------
305 started at 22:29:02.671677. Tweet_id -> 836380477523124226
305 completed at 22:29:03.202871
----------
306 started at 22:29:03.203021. Tweet_id -> 836260088725786625
306 completed at 22:29:03.912666
----------
307 started at 22:29:03.912856. Tweet_id -> 836001077879255040
307 completed at 22:29:04.363518
----------
308 started at 22:29:04.363697. Tweet_id -> 835685285446955009
308 completed at 22:29:04.898100
----------
309 started at 22:29:04.898286. Tweet_id -> 835574547218894849
309 completed at 22:29:05.484749
----------
310 started at 22:29:05.485532. Tweet_id -> 835536468978302976
310 completed at 22:29:06.002025
----------
311 started at 22:29:06.002445. Tweet_id -> 835309094223372289
311 completed at 22:29:06.524054
----------
312 started at 22:29:06.524187. Tweet_id -> 835297930240217089
312 completed at 22:29:06.998405
----------
313 started at 22:29:06.999205. Tweet_id -> 835264098648616962
313 completed at 22:29:07.413561
----------
314 started at 22:29:07.414104. Tweet_id -> 835246439529840640
314 completed at 22:29:07.850006
----------
315 started at 22:29:07.850206. Tweet_id -> 835172783151792128
315 completed at 22:29:08.403162
----------
316 started at 22:29:08.403304. Tweet_id -> 835152434251116546
316 completed at 22:29:08.991710
----------
317 started at 22:29:08.991890. Tweet_id -> 834931633769889797
317 completed at 22:29:09.469751
----------
318 started at 22:29:09.469915. Tweet_id -> 834786237630337024
318 completed at 22:29:10.021998
----------
319 started at 22:29:10.022254. Tweet_id -> 834574053763584002
319 completed at 22:29:10.584917
----------
320 started at 22:29:10.585262. Tweet_id -> 834477809192075265
320 completed at 22:29:11.206823
----------
321 started at 22:29:11.206989. Tweet_id -> 834458053273591808
321 completed at 22:29:11.640746
----------
322 started at 22:29:11.640935. Tweet_id -> 834209720923721728
322 completed at 22:29:12.314675
----------
323 started at 22:29:12.314855. Tweet_id -> 834167344700198914
323 completed at 22:29:12.824557
----------
324 started at 22:29:12.824727. Tweet_id -> 834089966724603904
324 completed at 22:29:13.304546
----------
325 started at 22:29:13.304758. Tweet_id -> 834086379323871233
325 completed at 22:29:13.775019
----------
326 started at 22:29:13.775124. Tweet_id -> 833863086058651648
326 completed at 22:29:14.208654
----------
327 started at 22:29:14.208858. Tweet_id -> 833826103416520705
327 completed at 22:29:14.806821
----------
328 started at 22:29:14.807049. Tweet_id -> 833732339549220864
328 completed at 22:29:15.445513
----------
329 started at 22:29:15.445917. Tweet_id -> 833722901757046785
329 completed at 22:29:16.044276
----------
330 started at 22:29:16.044487. Tweet_id -> 833479644947025920
330 completed at 22:29:16.628352
----------
331 started at 22:29:16.628498. Tweet_id -> 833124694597443584
331 completed at 22:29:17.102419
----------
332 started at 22:29:17.102789. Tweet_id -> 832998151111966721
332 completed at 22:29:17.547321
----------
333 started at 22:29:17.547459. Tweet_id -> 832769181346996225
333 completed at 22:29:18.051171
----------
334 started at 22:29:18.051337. Tweet_id -> 832757312314028032
334 completed at 22:29:18.556785
----------
335 started at 22:29:18.556963. Tweet_id -> 832682457690300417
335 completed at 22:29:19.075003
----------
336 started at 22:29:19.075413. Tweet_id -> 832645525019123713
336 completed at 22:29:19.553666
----------
337 started at 22:29:19.553803. Tweet_id -> 832636094638288896
337 completed at 22:29:19.979796
----------
338 started at 22:29:19.980176. Tweet_id -> 832397543355072512
338 completed at 22:29:20.437538
----------
339 started at 22:29:20.438514. Tweet_id -> 832369877331693569
339 completed at 22:29:21.018988
----------
340 started at 22:29:21.019449. Tweet_id -> 832273440279240704
340 completed at 22:29:21.535268
----------
341 started at 22:29:21.535424. Tweet_id -> 832215909146226688
341 completed at 22:29:22.052143
----------
342 started at 22:29:22.052318. Tweet_id -> 832215726631055365
342 completed at 22:29:22.672322
----------
343 started at 22:29:22.672500. Tweet_id -> 832088576586297345
343 completed at 22:29:23.126369
----------
344 started at 22:29:23.126619. Tweet_id -> 832040443403784192
344 completed at 22:29:23.756489
----------
345 started at 22:29:23.756982. Tweet_id -> 832032802820481025
345 completed at 22:29:24.242068
----------
346 started at 22:29:24.242558. Tweet_id -> 831939777352105988
346 completed at 22:29:24.908194
----------
347 started at 22:29:24.908435. Tweet_id -> 831926988323639298
347 completed at 22:29:25.389626
----------
348 started at 22:29:25.389972. Tweet_id -> 831911600680497154
348 completed at 22:29:25.973042
----------
349 started at 22:29:25.973825. Tweet_id -> 831670449226514432
349 completed at 22:29:26.516383
----------
350 started at 22:29:26.516513. Tweet_id -> 831650051525054464
350 completed at 22:29:27.131887
----------
351 started at 22:29:27.132041. Tweet_id -> 831552930092285952
351 completed at 22:29:27.718566
----------
352 started at 22:29:27.718760. Tweet_id -> 831322785565769729
352 completed at 22:29:28.346293
----------
353 started at 22:29:28.346744. Tweet_id -> 831315979191906304
353 completed at 22:29:29.048783
----------
354 started at 22:29:29.049094. Tweet_id -> 831309418084069378
354 completed at 22:29:29.517434
----------
355 started at 22:29:29.517570. Tweet_id -> 831262627380748289
355 completed at 22:29:30.133074
----------
356 started at 22:29:30.133248. Tweet_id -> 830956169170665475
356 completed at 22:29:30.825437
----------
357 started at 22:29:30.826072. Tweet_id -> 830583320585068544
357 completed at 22:29:31.311487
----------
358 started at 22:29:31.311655. Tweet_id -> 830173239259324417
358 completed at 22:29:31.820137
----------
359 started at 22:29:31.820907. Tweet_id -> 830097400375152640
359 completed at 22:29:32.285229
----------
360 started at 22:29:32.285376. Tweet_id -> 829878982036299777
360 completed at 22:29:32.792151
----------
361 started at 22:29:32.792610. Tweet_id -> 829861396166877184
361 completed at 22:29:33.434269
----------
362 started at 22:29:33.434772. Tweet_id -> 829501995190984704
362 completed at 22:29:33.963238
----------
363 started at 22:29:33.963348. Tweet_id -> 829449946868879360
363 completed at 22:29:34.554043
----------
364 started at 22:29:34.554246. Tweet_id -> 829374341691346946
364 completed at 22:29:35.180091
----------
365 started at 22:29:35.180467. Tweet_id -> 829141528400556032
365 completed at 22:29:35.674415
----------
366 started at 22:29:35.674639. Tweet_id -> 829011960981237760
366 completed at 22:29:36.162837
----------
367 started at 22:29:36.162997. Tweet_id -> 828801551087042563
367 completed at 22:29:36.653246
----------
368 started at 22:29:36.653414. Tweet_id -> 828770345708580865
368 completed at 22:29:37.224816
----------
369 started at 22:29:37.225602. Tweet_id -> 828708714936930305
369 completed at 22:29:37.780974
----------
370 started at 22:29:37.781173. Tweet_id -> 828650029636317184
370 completed at 22:29:38.464179
----------
371 started at 22:29:38.464622. Tweet_id -> 828409743546925057
371 completed at 22:29:38.977220
----------
372 started at 22:29:38.977591. Tweet_id -> 828408677031882754
372 completed at 22:29:39.573400
----------
373 started at 22:29:39.573617. Tweet_id -> 828381636999917570
373 completed at 22:29:40.076462
----------
374 started at 22:29:40.077039. Tweet_id -> 828376505180889089
374 completed at 22:29:40.671768
----------
375 started at 22:29:40.671989. Tweet_id -> 828372645993398273
375 completed at 22:29:41.343558
----------
376 started at 22:29:41.343781. Tweet_id -> 828361771580813312
376 completed at 22:29:41.902340
----------
377 started at 22:29:41.902559. Tweet_id -> 828046555563323392
377 completed at 22:29:42.399642
----------
378 started at 22:29:42.399803. Tweet_id -> 828011680017821696
378 completed at 22:29:43.185740
----------
379 started at 22:29:43.186065. Tweet_id -> 827933404142436356
379 completed at 22:29:43.764796
----------
380 started at 22:29:43.764966. Tweet_id -> 827653905312006145
380 completed at 22:29:44.300815
----------
381 started at 22:29:44.300979. Tweet_id -> 827600520311402496
381 completed at 22:29:44.804434
----------
382 started at 22:29:44.804586. Tweet_id -> 827324948884643840
382 completed at 22:29:45.412700
----------
383 started at 22:29:45.412949. Tweet_id -> 827228250799742977
 -> 383 EXCEPTION at 22:29:45.722367
----------
384 started at 22:29:45.722511. Tweet_id -> 827199976799354881
384 completed at 22:29:46.231229
----------
385 started at 22:29:46.231571. Tweet_id -> 826958653328592898
385 completed at 22:29:46.828156
----------
386 started at 22:29:46.828816. Tweet_id -> 826848821049180160
386 completed at 22:29:47.451508
----------
387 started at 22:29:47.451879. Tweet_id -> 826615380357632002
387 completed at 22:29:47.971646
----------
388 started at 22:29:47.972005. Tweet_id -> 826598799820865537
388 completed at 22:29:48.450290
----------
389 started at 22:29:48.450417. Tweet_id -> 826598365270007810
389 completed at 22:29:49.381139
----------
390 started at 22:29:49.381309. Tweet_id -> 826476773533745153
390 completed at 22:29:50.157300
----------
391 started at 22:29:50.158447. Tweet_id -> 826240494070030336
391 completed at 22:29:50.732545
----------
392 started at 22:29:50.732706. Tweet_id -> 826204788643753985
392 completed at 22:29:51.406680
----------
393 started at 22:29:51.410223. Tweet_id -> 826115272272650244
393 completed at 22:29:52.021570
----------
394 started at 22:29:52.022001. Tweet_id -> 825876512159186944
394 completed at 22:29:52.742071
----------
395 started at 22:29:52.742379. Tweet_id -> 825829644528148480
395 completed at 22:29:53.424007
----------
396 started at 22:29:53.424542. Tweet_id -> 825535076884762624
396 completed at 22:29:53.909976
----------
397 started at 22:29:53.910186. Tweet_id -> 825147591692263424
397 completed at 22:29:54.546497
----------
398 started at 22:29:54.547080. Tweet_id -> 825120256414846976
398 completed at 22:29:55.201407
----------
399 started at 22:29:55.201978. Tweet_id -> 825026590719483904
399 completed at 22:29:55.872210
----------
400 started at 22:29:55.872687. Tweet_id -> 824796380199809024
400 completed at 22:29:56.565247
----------
401 started at 22:29:56.565928. Tweet_id -> 824775126675836928
401 completed at 22:29:57.445916
----------
402 started at 22:29:57.446971. Tweet_id -> 824663926340194305
402 completed at 22:29:58.180714
----------
403 started at 22:29:58.180891. Tweet_id -> 824325613288833024
403 completed at 22:29:58.655815
----------
404 started at 22:29:58.655948. Tweet_id -> 824297048279236611
404 completed at 22:29:59.216296
----------
405 started at 22:29:59.216520. Tweet_id -> 824025158776213504
405 completed at 22:30:00.092148
----------
406 started at 22:30:00.092941. Tweet_id -> 823939628516474880
406 completed at 22:30:00.866143
----------
407 started at 22:30:00.866324. Tweet_id -> 823719002937630720
407 completed at 22:30:01.505414
----------
408 started at 22:30:01.505594. Tweet_id -> 823699002998870016
408 completed at 22:30:02.416543
----------
409 started at 22:30:02.417211. Tweet_id -> 823581115634085888
409 completed at 22:30:02.985496
----------
410 started at 22:30:02.986138. Tweet_id -> 823333489516937216
410 completed at 22:30:03.425272
----------
411 started at 22:30:03.425431. Tweet_id -> 823322678127919110
411 completed at 22:30:03.905391
----------
412 started at 22:30:03.905581. Tweet_id -> 823269594223824897
412 completed at 22:30:04.403041
----------
413 started at 22:30:04.403176. Tweet_id -> 822975315408461824
413 completed at 22:30:04.905631
----------
414 started at 22:30:04.905895. Tweet_id -> 822872901745569793
414 completed at 22:30:05.384604
----------
415 started at 22:30:05.384880. Tweet_id -> 822859134160621569
415 completed at 22:30:05.919356
----------
416 started at 22:30:05.919964. Tweet_id -> 822647212903690241
416 completed at 22:30:06.523314
----------
417 started at 22:30:06.523450. Tweet_id -> 822610361945911296
417 completed at 22:30:07.021429
----------
418 started at 22:30:07.022275. Tweet_id -> 822489057087389700
418 completed at 22:30:07.494681
----------
419 started at 22:30:07.494820. Tweet_id -> 822462944365645825
419 completed at 22:30:08.040879
----------
420 started at 22:30:08.041444. Tweet_id -> 822244816520155136
420 completed at 22:30:08.515385
----------
421 started at 22:30:08.515527. Tweet_id -> 822163064745328640
421 completed at 22:30:09.172961
----------
422 started at 22:30:09.173298. Tweet_id -> 821886076407029760
422 completed at 22:30:09.798396
----------
423 started at 22:30:09.798632. Tweet_id -> 821813639212650496
423 completed at 22:30:10.426324
----------
424 started at 22:30:10.426967. Tweet_id -> 821765923262631936
424 completed at 22:30:11.354739
----------
425 started at 22:30:11.355086. Tweet_id -> 821522889702862852
425 completed at 22:30:11.856129
----------
426 started at 22:30:11.856690. Tweet_id -> 821421320206483457
426 completed at 22:30:12.401446
----------
427 started at 22:30:12.401635. Tweet_id -> 821407182352777218
427 completed at 22:30:12.996191
----------
428 started at 22:30:12.996448. Tweet_id -> 821153421864615936
428 completed at 22:30:13.585163
----------
429 started at 22:30:13.585295. Tweet_id -> 821149554670182400
429 completed at 22:30:14.238644
----------
430 started at 22:30:14.238839. Tweet_id -> 821107785811234820
430 completed at 22:30:14.702226
----------
431 started at 22:30:14.703014. Tweet_id -> 821044531881721856
431 completed at 22:30:15.251352
----------
432 started at 22:30:15.252110. Tweet_id -> 820837357901512704
432 completed at 22:30:15.868732
----------
433 started at 22:30:15.868883. Tweet_id -> 820749716845686786
433 completed at 22:30:16.461060
----------
434 started at 22:30:16.461451. Tweet_id -> 820690176645140481
434 completed at 22:30:17.066019
----------
435 started at 22:30:17.066140. Tweet_id -> 820494788566847489
435 completed at 22:30:17.598325
----------
436 started at 22:30:17.598465. Tweet_id -> 820446719150292993
436 completed at 22:30:18.195792
----------
437 started at 22:30:18.196011. Tweet_id -> 820314633777061888
437 completed at 22:30:18.826113
----------
438 started at 22:30:18.826325. Tweet_id -> 820078625395449857
438 completed at 22:30:19.481314
----------
439 started at 22:30:19.481452. Tweet_id -> 820013781606658049
439 completed at 22:30:20.116881
----------
440 started at 22:30:20.117422. Tweet_id -> 819952236453363712
440 completed at 22:30:20.599847
----------
441 started at 22:30:20.599972. Tweet_id -> 819924195358416896
441 completed at 22:30:21.165172
----------
442 started at 22:30:21.165364. Tweet_id -> 819711362133872643
442 completed at 22:30:21.659999
----------
443 started at 22:30:21.660145. Tweet_id -> 819588359383371776
443 completed at 22:30:22.238187
----------
444 started at 22:30:22.238320. Tweet_id -> 819347104292290561
444 completed at 22:30:22.764088
----------
445 started at 22:30:22.764300. Tweet_id -> 819238181065359361
445 completed at 22:30:23.257091
----------
446 started at 22:30:23.257289. Tweet_id -> 819227688460238848
446 completed at 22:30:23.769048
----------
447 started at 22:30:23.769572. Tweet_id -> 819015337530290176
447 completed at 22:30:24.412234
----------
448 started at 22:30:24.412456. Tweet_id -> 819015331746349057
448 completed at 22:30:24.991000
----------
449 started at 22:30:24.991757. Tweet_id -> 819006400881917954
449 completed at 22:30:25.575296
----------
450 started at 22:30:25.575932. Tweet_id -> 819004803107983360
450 completed at 22:30:26.191101
----------
451 started at 22:30:26.191287. Tweet_id -> 818646164899774465
451 completed at 22:30:26.802430
----------
452 started at 22:30:26.802629. Tweet_id -> 818627210458333184
452 completed at 22:30:27.334136
----------
453 started at 22:30:27.334587. Tweet_id -> 818614493328580609
453 completed at 22:30:27.993425
----------
454 started at 22:30:27.993829. Tweet_id -> 818588835076603904
454 completed at 22:30:28.493393
----------
455 started at 22:30:28.493626. Tweet_id -> 818536468981415936
455 completed at 22:30:28.980682
----------
456 started at 22:30:28.981179. Tweet_id -> 818307523543449600
456 completed at 22:30:29.571706
----------
457 started at 22:30:29.571877. Tweet_id -> 818259473185828864
457 completed at 22:30:30.190173
----------
458 started at 22:30:30.190356. Tweet_id -> 818145370475810820
458 completed at 22:30:30.779116
----------
459 started at 22:30:30.779677. Tweet_id -> 817908911860748288
459 completed at 22:30:31.425606
----------
460 started at 22:30:31.425806. Tweet_id -> 817827839487737858
460 completed at 22:30:32.042193
----------
461 started at 22:30:32.042945. Tweet_id -> 817777686764523521
461 completed at 22:30:32.538373
----------
462 started at 22:30:32.538532. Tweet_id -> 817536400337801217
462 completed at 22:30:33.166443
----------
463 started at 22:30:33.166707. Tweet_id -> 817502432452313088
463 completed at 22:30:33.837772
----------
464 started at 22:30:33.837958. Tweet_id -> 817423860136083457
464 completed at 22:30:34.452431
----------
465 started at 22:30:34.452990. Tweet_id -> 817415592588222464
465 completed at 22:30:35.008921
----------
466 started at 22:30:35.009079. Tweet_id -> 817181837579653120
466 completed at 22:30:35.568080
----------
467 started at 22:30:35.568255. Tweet_id -> 817171292965273600
467 completed at 22:30:36.152670
----------
468 started at 22:30:36.153131. Tweet_id -> 817120970343411712
468 completed at 22:30:36.680478
----------
469 started at 22:30:36.680898. Tweet_id -> 817056546584727552
469 completed at 22:30:37.261250
----------
470 started at 22:30:37.261856. Tweet_id -> 816829038950027264
470 completed at 22:30:37.917969
----------
471 started at 22:30:37.918414. Tweet_id -> 816816676327063552
471 completed at 22:30:38.508329
----------
472 started at 22:30:38.508840. Tweet_id -> 816697700272001025
472 completed at 22:30:39.114455
----------
473 started at 22:30:39.114775. Tweet_id -> 816450570814898180
473 completed at 22:30:39.819267
----------
474 started at 22:30:39.819648. Tweet_id -> 816336735214911488
474 completed at 22:30:40.339310
----------
475 started at 22:30:40.339904. Tweet_id -> 816091915477250048
475 completed at 22:30:40.971775
----------
476 started at 22:30:40.972209. Tweet_id -> 816062466425819140
476 completed at 22:30:41.676010
----------
477 started at 22:30:41.676200. Tweet_id -> 816014286006976512
477 completed at 22:30:42.173762
----------
478 started at 22:30:42.174432. Tweet_id -> 815990720817401858
478 completed at 22:30:42.696248
----------
479 started at 22:30:42.696389. Tweet_id -> 815966073409433600
479 completed at 22:30:43.192883
----------
480 started at 22:30:43.193057. Tweet_id -> 815745968457060357
480 completed at 22:30:43.836605
----------
481 started at 22:30:43.836790. Tweet_id -> 815736392542261248
481 completed at 22:30:44.435254
----------
482 started at 22:30:44.435453. Tweet_id -> 815639385530101762
482 completed at 22:30:44.927945
----------
483 started at 22:30:44.928143. Tweet_id -> 815390420867969024
483 completed at 22:30:45.435687
----------
484 started at 22:30:45.435884. Tweet_id -> 814986499976527872
484 completed at 22:30:46.172843
----------
485 started at 22:30:46.173361. Tweet_id -> 814638523311648768
485 completed at 22:30:46.654853
----------
486 started at 22:30:46.654988. Tweet_id -> 814578408554463233
486 completed at 22:30:47.167679
----------
487 started at 22:30:47.168130. Tweet_id -> 814530161257443328
487 completed at 22:30:47.731397
----------
488 started at 22:30:47.731546. Tweet_id -> 814153002265309185
488 completed at 22:30:48.447603
----------
489 started at 22:30:48.447831. Tweet_id -> 813944609378369540
489 completed at 22:30:49.068569
----------
490 started at 22:30:49.068731. Tweet_id -> 813910438903693312
490 completed at 22:30:49.601874
----------
491 started at 22:30:49.602319. Tweet_id -> 813812741911748608
491 completed at 22:30:50.168732
----------
492 started at 22:30:50.169383. Tweet_id -> 813800681631023104
492 completed at 22:30:50.658864
----------
493 started at 22:30:50.659034. Tweet_id -> 813217897535406080
493 completed at 22:30:51.184310
----------
494 started at 22:30:51.184480. Tweet_id -> 813202720496779264
494 completed at 22:30:51.735118
----------
495 started at 22:30:51.735262. Tweet_id -> 813187593374461952
495 completed at 22:30:52.357585
----------
496 started at 22:30:52.357764. Tweet_id -> 813172488309972993
496 completed at 22:30:52.890550
----------
497 started at 22:30:52.890749. Tweet_id -> 813157409116065792
497 completed at 22:30:53.552404
----------
498 started at 22:30:53.552932. Tweet_id -> 813142292504645637
498 completed at 22:30:54.193552
----------
499 started at 22:30:54.193754. Tweet_id -> 813130366689148928
499 completed at 22:30:54.722819
----------
500 started at 22:30:54.722984. Tweet_id -> 813127251579564032
500 completed at 22:30:55.337739
----------
501 started at 22:30:55.338480. Tweet_id -> 813112105746448384
501 completed at 22:30:56.430501
----------
502 started at 22:30:56.430825. Tweet_id -> 813096984823349248
502 completed at 22:30:57.061668
----------
503 started at 22:30:57.062211. Tweet_id -> 813081950185472002
503 completed at 22:30:57.601447
----------
504 started at 22:30:57.602049. Tweet_id -> 813066809284972545
504 completed at 22:30:58.265878
----------
505 started at 22:30:58.265993. Tweet_id -> 813051746834595840
505 completed at 22:30:58.791135
----------
506 started at 22:30:58.791348. Tweet_id -> 812781120811126785
506 completed at 22:30:59.355424
----------
507 started at 22:30:59.355920. Tweet_id -> 812747805718642688
507 completed at 22:30:59.853370
----------
508 started at 22:30:59.853507. Tweet_id -> 812709060537683968
508 completed at 22:31:00.499843
----------
509 started at 22:31:00.500086. Tweet_id -> 812503143955202048
509 completed at 22:31:01.136395
----------
510 started at 22:31:01.137046. Tweet_id -> 812466873996607488
510 completed at 22:31:01.955984
----------
511 started at 22:31:01.956782. Tweet_id -> 812372279581671427
511 completed at 22:31:02.665642
----------
512 started at 22:31:02.668243. Tweet_id -> 811985624773361665
512 completed at 22:31:03.229989
----------
513 started at 22:31:03.230130. Tweet_id -> 811744202451197953
513 completed at 22:31:03.905534
----------
514 started at 22:31:03.905716. Tweet_id -> 811647686436880384
514 completed at 22:31:04.514897
----------
515 started at 22:31:04.515404. Tweet_id -> 811627233043480576
515 completed at 22:31:05.097178
----------
516 started at 22:31:05.098068. Tweet_id -> 811386762094317568
516 completed at 22:31:05.817275
----------
517 started at 22:31:05.817584. Tweet_id -> 810984652412424192
517 completed at 22:31:06.567365
----------
518 started at 22:31:06.567592. Tweet_id -> 810896069567610880
518 completed at 22:31:07.247062
----------
519 started at 22:31:07.249319. Tweet_id -> 810657578271330305
519 completed at 22:31:08.000125
----------
520 started at 22:31:08.000293. Tweet_id -> 810284430598270976
520 completed at 22:31:08.740206
----------
521 started at 22:31:08.740372. Tweet_id -> 810254108431155201
521 completed at 22:31:09.336579
----------
522 started at 22:31:09.336792. Tweet_id -> 809920764300447744
522 completed at 22:31:09.932976
----------
523 started at 22:31:09.933276. Tweet_id -> 809808892968534016
523 completed at 22:31:10.559263
----------
524 started at 22:31:10.559422. Tweet_id -> 809448704142938112
524 completed at 22:31:11.242318
----------
525 started at 22:31:11.242519. Tweet_id -> 809220051211603969
525 completed at 22:31:11.782791
----------
526 started at 22:31:11.782937. Tweet_id -> 809084759137812480
526 completed at 22:31:12.409901
----------
527 started at 22:31:12.410226. Tweet_id -> 808838249661788160
527 completed at 22:31:13.020986
----------
528 started at 22:31:13.021151. Tweet_id -> 808733504066486276
528 completed at 22:31:13.561240
----------
529 started at 22:31:13.561705. Tweet_id -> 808501579447930884
529 completed at 22:31:14.155485
----------
530 started at 22:31:14.155718. Tweet_id -> 808344865868283904
530 completed at 22:31:14.866598
----------
531 started at 22:31:14.866782. Tweet_id -> 808134635716833280
531 completed at 22:31:15.431689
----------
532 started at 22:31:15.432083. Tweet_id -> 808106460588765185
532 completed at 22:31:16.045483
----------
533 started at 22:31:16.045646. Tweet_id -> 808001312164028416
533 completed at 22:31:16.809464
----------
534 started at 22:31:16.809609. Tweet_id -> 807621403335917568
534 completed at 22:31:17.309202
----------
535 started at 22:31:17.309351. Tweet_id -> 807106840509214720
535 completed at 22:31:17.825108
----------
536 started at 22:31:17.825282. Tweet_id -> 807059379405148160
536 completed at 22:31:18.508980
----------
537 started at 22:31:18.509256. Tweet_id -> 807010152071229440
537 completed at 22:31:19.083203
----------
538 started at 22:31:19.083547. Tweet_id -> 806629075125202948
538 completed at 22:31:19.652116
----------
539 started at 22:31:19.652286. Tweet_id -> 806620845233815552
539 completed at 22:31:20.162418
----------
540 started at 22:31:20.162652. Tweet_id -> 806576416489959424
540 completed at 22:31:20.911870
----------
541 started at 22:31:20.912381. Tweet_id -> 806542213899489280
541 completed at 22:31:21.525322
----------
542 started at 22:31:21.525485. Tweet_id -> 806242860592926720
542 completed at 22:31:22.418829
----------
543 started at 22:31:22.419588. Tweet_id -> 806219024703037440
543 completed at 22:31:23.280942
----------
544 started at 22:31:23.281696. Tweet_id -> 805958939288408065
544 completed at 22:31:23.970897
----------
545 started at 22:31:23.971082. Tweet_id -> 805932879469572096
545 completed at 22:31:24.713450
----------
546 started at 22:31:24.713878. Tweet_id -> 805826884734976000
546 completed at 22:31:25.272618
----------
547 started at 22:31:25.273118. Tweet_id -> 805823200554876929
547 completed at 22:31:25.855244
----------
548 started at 22:31:25.855913. Tweet_id -> 805520635690676224
548 completed at 22:31:26.442871
----------
549 started at 22:31:26.443074. Tweet_id -> 805487436403003392
549 completed at 22:31:27.057044
----------
550 started at 22:31:27.057276. Tweet_id -> 805207613751304193
550 completed at 22:31:27.623963
----------
551 started at 22:31:27.624203. Tweet_id -> 804738756058218496
551 completed at 22:31:28.292069
----------
552 started at 22:31:28.292246. Tweet_id -> 804475857670639616
552 completed at 22:31:29.020554
----------
553 started at 22:31:29.020973. Tweet_id -> 804413760345620481
553 completed at 22:31:29.591024
----------
554 started at 22:31:29.591770. Tweet_id -> 804026241225523202
554 completed at 22:31:30.182280
----------
555 started at 22:31:30.182689. Tweet_id -> 803773340896923648
555 completed at 22:31:30.782504
----------
556 started at 22:31:30.782643. Tweet_id -> 803692223237865472
556 completed at 22:31:31.367033
----------
557 started at 22:31:31.367199. Tweet_id -> 803638050916102144
557 completed at 22:31:31.989866
----------
558 started at 22:31:31.990233. Tweet_id -> 803380650405482500
558 completed at 22:31:32.581284
----------
559 started at 22:31:32.581543. Tweet_id -> 803321560782307329
559 completed at 22:31:33.224301
----------
560 started at 22:31:33.224526. Tweet_id -> 803276597545603072
560 completed at 22:31:33.823899
----------
561 started at 22:31:33.824036. Tweet_id -> 802952499103731712
561 completed at 22:31:34.653117
----------
562 started at 22:31:34.653317. Tweet_id -> 802624713319034886
562 completed at 22:31:36.342122
----------
563 started at 22:31:36.342373. Tweet_id -> 802600418706604034
563 completed at 22:31:36.917066
----------
564 started at 22:31:36.917401. Tweet_id -> 802572683846291456
564 completed at 22:31:37.495538
----------
565 started at 22:31:37.495963. Tweet_id -> 802323869084381190
565 completed at 22:31:38.123202
----------
566 started at 22:31:38.123777. Tweet_id -> 802265048156610565
566 completed at 22:31:38.741715
----------
567 started at 22:31:38.741887. Tweet_id -> 802247111496568832
 -> 567 EXCEPTION at 22:31:39.007955
----------
568 started at 22:31:39.008093. Tweet_id -> 802239329049477120
568 completed at 22:31:39.580047
----------
569 started at 22:31:39.580318. Tweet_id -> 802185808107208704
569 completed at 22:31:40.173127
----------
570 started at 22:31:40.173427. Tweet_id -> 801958328846974976
570 completed at 22:31:40.791010
----------
571 started at 22:31:40.791168. Tweet_id -> 801854953262350336
571 completed at 22:31:41.397683
----------
572 started at 22:31:41.397883. Tweet_id -> 801538201127157760
572 completed at 22:31:42.015176
----------
573 started at 22:31:42.015363. Tweet_id -> 801285448605831168
573 completed at 22:31:42.573671
----------
574 started at 22:31:42.573843. Tweet_id -> 801167903437357056
574 completed at 22:31:43.148817
----------
575 started at 22:31:43.149213. Tweet_id -> 801127390143516673
575 completed at 22:31:43.715799
----------
576 started at 22:31:43.715934. Tweet_id -> 801115127852503040
576 completed at 22:31:44.260074
----------
577 started at 22:31:44.260525. Tweet_id -> 800859414831898624
577 completed at 22:31:44.903013
----------
578 started at 22:31:44.903173. Tweet_id -> 800855607700029440
578 completed at 22:31:45.506120
----------
579 started at 22:31:45.506363. Tweet_id -> 800751577355128832
579 completed at 22:31:46.214069
----------
580 started at 22:31:46.214466. Tweet_id -> 800513324630806528
580 completed at 22:31:46.778011
----------
581 started at 22:31:46.778157. Tweet_id -> 800459316964663297
581 completed at 22:31:47.396124
----------
582 started at 22:31:47.396558. Tweet_id -> 800443802682937345
582 completed at 22:31:47.959510
----------
583 started at 22:31:47.960051. Tweet_id -> 800388270626521089
583 completed at 22:31:48.491395
----------
584 started at 22:31:48.491533. Tweet_id -> 800188575492947969
584 completed at 22:31:49.093299
----------
585 started at 22:31:49.093423. Tweet_id -> 800141422401830912
585 completed at 22:31:49.714069
----------
586 started at 22:31:49.714230. Tweet_id -> 800018252395122689
586 completed at 22:31:50.285598
----------
587 started at 22:31:50.285815. Tweet_id -> 799774291445383169
587 completed at 22:31:50.857734
----------
588 started at 22:31:50.857898. Tweet_id -> 799757965289017345
588 completed at 22:31:51.542837
----------
589 started at 22:31:51.543036. Tweet_id -> 799422933579902976
589 completed at 22:31:52.102159
----------
590 started at 22:31:52.102659. Tweet_id -> 799308762079035393
590 completed at 22:31:52.787176
----------
591 started at 22:31:52.787304. Tweet_id -> 799297110730567681
591 completed at 22:31:53.402806
----------
592 started at 22:31:53.403011. Tweet_id -> 799063482566066176
592 completed at 22:31:54.026200
----------
593 started at 22:31:54.026542. Tweet_id -> 798933969379225600
593 completed at 22:31:54.569051
----------
594 started at 22:31:54.569225. Tweet_id -> 798925684722855936
594 completed at 22:31:55.113032
----------
595 started at 22:31:55.113205. Tweet_id -> 798705661114773508
595 completed at 22:31:55.858544
----------
596 started at 22:31:55.858696. Tweet_id -> 798701998996647937
596 completed at 22:31:56.499867
----------
597 started at 22:31:56.500365. Tweet_id -> 798697898615730177
597 completed at 22:31:57.110346
----------
598 started at 22:31:57.110522. Tweet_id -> 798694562394996736
598 completed at 22:31:57.800591
----------
599 started at 22:31:57.800721. Tweet_id -> 798686750113755136
599 completed at 22:31:58.449767
----------
600 started at 22:31:58.450365. Tweet_id -> 798682547630837760
600 completed at 22:31:59.046466
----------
601 started at 22:31:59.046732. Tweet_id -> 798673117451325440
601 completed at 22:31:59.749854
----------
602 started at 22:31:59.749988. Tweet_id -> 798665375516884993
602 completed at 22:32:00.364290
----------
603 started at 22:32:00.364979. Tweet_id -> 798644042770751489
603 completed at 22:32:00.974385
----------
604 started at 22:32:00.974556. Tweet_id -> 798628517273620480
604 completed at 22:32:01.687182
----------
605 started at 22:32:01.687409. Tweet_id -> 798585098161549313
605 completed at 22:32:02.304874
----------
606 started at 22:32:02.305737. Tweet_id -> 798576900688019456
606 completed at 22:32:02.923237
----------
607 started at 22:32:02.923432. Tweet_id -> 798340744599797760
607 completed at 22:32:03.590414
----------
608 started at 22:32:03.590605. Tweet_id -> 798209839306514432
608 completed at 22:32:04.254535
----------
609 started at 22:32:04.255072. Tweet_id -> 797971864723324932
609 completed at 22:32:05.163620
----------
610 started at 22:32:05.163973. Tweet_id -> 797545162159308800
610 completed at 22:32:05.730866
----------
611 started at 22:32:05.731052. Tweet_id -> 797236660651966464
611 completed at 22:32:06.418118
----------
612 started at 22:32:06.418408. Tweet_id -> 797165961484890113
612 completed at 22:32:06.986865
----------
613 started at 22:32:06.987047. Tweet_id -> 796904159865868288
613 completed at 22:32:07.631811
----------
614 started at 22:32:07.631932. Tweet_id -> 796865951799083009
614 completed at 22:32:08.246517
----------
615 started at 22:32:08.246748. Tweet_id -> 796759840936919040
615 completed at 22:32:08.881098
----------
616 started at 22:32:08.881237. Tweet_id -> 796563435802726400
616 completed at 22:32:09.585737
----------
617 started at 22:32:09.585954. Tweet_id -> 796484825502875648
617 completed at 22:32:10.196988
----------
618 started at 22:32:10.197109. Tweet_id -> 796387464403357696
618 completed at 22:32:10.792750
----------
619 started at 22:32:10.793375. Tweet_id -> 796177847564038144
619 completed at 22:32:11.420895
----------
620 started at 22:32:11.421242. Tweet_id -> 796149749086875649
620 completed at 22:32:12.041432
----------
621 started at 22:32:12.041978. Tweet_id -> 796125600683540480
621 completed at 22:32:12.764052
----------
622 started at 22:32:12.764195. Tweet_id -> 796116448414461957
622 completed at 22:32:13.469915
----------
623 started at 22:32:13.470145. Tweet_id -> 796080075804475393
623 completed at 22:32:14.022945
----------
624 started at 22:32:14.023213. Tweet_id -> 796031486298386433
624 completed at 22:32:14.622663
----------
625 started at 22:32:14.622892. Tweet_id -> 795464331001561088
625 completed at 22:32:15.321038
----------
626 started at 22:32:15.321468. Tweet_id -> 795400264262053889
626 completed at 22:32:16.035149
----------
627 started at 22:32:16.035314. Tweet_id -> 795076730285391872
627 completed at 22:32:16.693800
----------
628 started at 22:32:16.694469. Tweet_id -> 794983741416415232
628 completed at 22:32:17.345556
----------
629 started at 22:32:17.346288. Tweet_id -> 794926597468000259
629 completed at 22:32:18.088401
----------
630 started at 22:32:18.088724. Tweet_id -> 794355576146903043
630 completed at 22:32:18.716305
----------
631 started at 22:32:18.716479. Tweet_id -> 794332329137291264
631 completed at 22:32:19.297438
----------
632 started at 22:32:19.297906. Tweet_id -> 794205286408003585
632 completed at 22:32:19.885541
----------
633 started at 22:32:19.885726. Tweet_id -> 793962221541933056
633 completed at 22:32:20.441835
----------
634 started at 22:32:20.441981. Tweet_id -> 793845145112371200
634 completed at 22:32:21.073679
----------
635 started at 22:32:21.074106. Tweet_id -> 793614319594401792
635 completed at 22:32:21.631733
----------
636 started at 22:32:21.631874. Tweet_id -> 793601777308463104
636 completed at 22:32:22.204871
----------
637 started at 22:32:22.205341. Tweet_id -> 793500921481273345
637 completed at 22:32:22.911151
----------
638 started at 22:32:22.911315. Tweet_id -> 793286476301799424
638 completed at 22:32:23.495034
----------
639 started at 22:32:23.495199. Tweet_id -> 793271401113350145
639 completed at 22:32:24.155496
----------
640 started at 22:32:24.155716. Tweet_id -> 793256262322548741
640 completed at 22:32:24.738158
----------
641 started at 22:32:24.738386. Tweet_id -> 793241302385262592
641 completed at 22:32:25.387050
----------
642 started at 22:32:25.387206. Tweet_id -> 793226087023144960
642 completed at 22:32:26.073091
----------
643 started at 22:32:26.073232. Tweet_id -> 793210959003287553
643 completed at 22:32:27.004775
----------
644 started at 22:32:27.005684. Tweet_id -> 793195938047070209
644 completed at 22:32:27.591590
----------
645 started at 22:32:27.591775. Tweet_id -> 793180763617361921
645 completed at 22:32:28.398374
----------
646 started at 22:32:28.398773. Tweet_id -> 793165685325201412
646 completed at 22:32:29.055956
----------
647 started at 22:32:29.056483. Tweet_id -> 793150605191548928
647 completed at 22:32:29.709738
----------
648 started at 22:32:29.710098. Tweet_id -> 793135492858580992
648 completed at 22:32:30.302469
----------
649 started at 22:32:30.302888. Tweet_id -> 793120401413079041
649 completed at 22:32:30.898948
----------
650 started at 22:32:30.899087. Tweet_id -> 792913359805018113
650 completed at 22:32:31.458951
----------
651 started at 22:32:31.459117. Tweet_id -> 792883833364439040
651 completed at 22:32:32.128558
----------
652 started at 22:32:32.128758. Tweet_id -> 792773781206999040
652 completed at 22:32:32.721767
----------
653 started at 22:32:32.721994. Tweet_id -> 792394556390137856
653 completed at 22:32:33.341595
----------
654 started at 22:32:33.342323. Tweet_id -> 792050063153438720
654 completed at 22:32:33.901409
----------
655 started at 22:32:33.901619. Tweet_id -> 791821351946420224
655 completed at 22:32:34.556966
----------
656 started at 22:32:34.557711. Tweet_id -> 791784077045166082
656 completed at 22:32:35.195119
----------
657 started at 22:32:35.195297. Tweet_id -> 791780927877898241
657 completed at 22:32:35.847300
----------
658 started at 22:32:35.847452. Tweet_id -> 791774931465953280
658 completed at 22:32:36.401816
----------
659 started at 22:32:36.402072. Tweet_id -> 791672322847637504
659 completed at 22:32:36.982992
----------
660 started at 22:32:36.983434. Tweet_id -> 791406955684368384
660 completed at 22:32:37.646865
----------
661 started at 22:32:37.647275. Tweet_id -> 791312159183634433
661 completed at 22:32:38.217295
----------
662 started at 22:32:38.217523. Tweet_id -> 791026214425268224
662 completed at 22:32:38.912554
----------
663 started at 22:32:38.912689. Tweet_id -> 790987426131050500
663 completed at 22:32:39.509698
----------
664 started at 22:32:39.509882. Tweet_id -> 790946055508652032
664 completed at 22:32:40.098465
----------
665 started at 22:32:40.098626. Tweet_id -> 790723298204217344
665 completed at 22:32:40.703545
----------
666 started at 22:32:40.704212. Tweet_id -> 790698755171364864
666 completed at 22:32:41.365126
----------
667 started at 22:32:41.365288. Tweet_id -> 790581949425475584
667 completed at 22:32:41.988389
----------
668 started at 22:32:41.988588. Tweet_id -> 790337589677002753
668 completed at 22:32:42.608170
----------
669 started at 22:32:42.608361. Tweet_id -> 790277117346975746
669 completed at 22:32:43.297498
----------
670 started at 22:32:43.297618. Tweet_id -> 790227638568808452
670 completed at 22:32:43.942292
----------
671 started at 22:32:43.942431. Tweet_id -> 789986466051088384
671 completed at 22:32:44.525791
----------
672 started at 22:32:44.525965. Tweet_id -> 789960241177853952
672 completed at 22:32:45.267307
----------
673 started at 22:32:45.267571. Tweet_id -> 789903600034189313
673 completed at 22:32:45.916766
----------
674 started at 22:32:45.916937. Tweet_id -> 789628658055020548
674 completed at 22:32:46.570209
----------
675 started at 22:32:46.570364. Tweet_id -> 789599242079838210
675 completed at 22:32:47.219062
----------
676 started at 22:32:47.219186. Tweet_id -> 789530877013393408
676 completed at 22:32:47.849417
----------
677 started at 22:32:47.849594. Tweet_id -> 789314372632018944
677 completed at 22:32:48.559496
----------
678 started at 22:32:48.559622. Tweet_id -> 789280767834746880
678 completed at 22:32:49.219125
----------
679 started at 22:32:49.219622. Tweet_id -> 789268448748703744
679 completed at 22:32:49.873429
----------
680 started at 22:32:49.873593. Tweet_id -> 789137962068021249
680 completed at 22:32:50.518463
----------
681 started at 22:32:50.519565. Tweet_id -> 788908386943430656
681 completed at 22:32:51.102256
----------
682 started at 22:32:51.102378. Tweet_id -> 788765914992902144
682 completed at 22:32:51.742566
----------
683 started at 22:32:51.743193. Tweet_id -> 788552643979468800
683 completed at 22:32:52.387675
----------
684 started at 22:32:52.388077. Tweet_id -> 788412144018661376
684 completed at 22:32:53.078101
----------
685 started at 22:32:53.078327. Tweet_id -> 788178268662984705
685 completed at 22:32:53.711302
----------
686 started at 22:32:53.711687. Tweet_id -> 788150585577050112
686 completed at 22:32:54.424799
----------
687 started at 22:32:54.425228. Tweet_id -> 788070120937619456
687 completed at 22:32:55.195230
----------
688 started at 22:32:55.195447. Tweet_id -> 788039637453406209
688 completed at 22:32:55.779908
----------
689 started at 22:32:55.780363. Tweet_id -> 787810552592695296
689 completed at 22:32:56.375401
----------
690 started at 22:32:56.375548. Tweet_id -> 787717603741622272
690 completed at 22:32:57.099418
----------
691 started at 22:32:57.099665. Tweet_id -> 787397959788929025
691 completed at 22:32:57.743922
----------
692 started at 22:32:57.744186. Tweet_id -> 787322443945877504
692 completed at 22:32:58.502669
----------
693 started at 22:32:58.503126. Tweet_id -> 787111942498508800
693 completed at 22:32:59.147849
----------
694 started at 22:32:59.148000. Tweet_id -> 786963064373534720
694 completed at 22:32:59.758220
----------
695 started at 22:32:59.758400. Tweet_id -> 786729988674449408
695 completed at 22:33:00.579422
----------
696 started at 22:33:00.579625. Tweet_id -> 786709082849828864
696 completed at 22:33:01.196422
----------
697 started at 22:33:01.197109. Tweet_id -> 786664955043049472
697 completed at 22:33:01.966505
----------
698 started at 22:33:01.966670. Tweet_id -> 786595970293370880
698 completed at 22:33:02.985382
----------
699 started at 22:33:02.985550. Tweet_id -> 786363235746385920
699 completed at 22:33:03.572324
----------
700 started at 22:33:03.572572. Tweet_id -> 786286427768250368
700 completed at 22:33:04.397580
----------
701 started at 22:33:04.397799. Tweet_id -> 786233965241827333
701 completed at 22:33:05.071915
----------
702 started at 22:33:05.072332. Tweet_id -> 786051337297522688
702 completed at 22:33:05.701780
----------
703 started at 22:33:05.702198. Tweet_id -> 786036967502913536
703 completed at 22:33:06.675235
----------
704 started at 22:33:06.675391. Tweet_id -> 785927819176054784
704 completed at 22:33:07.339884
----------
705 started at 22:33:07.340050. Tweet_id -> 785872687017132033
705 completed at 22:33:08.062437
----------
706 started at 22:33:08.063106. Tweet_id -> 785639753186217984
706 completed at 22:33:09.071762
----------
707 started at 22:33:09.071987. Tweet_id -> 785533386513321988
707 completed at 22:33:09.829057
----------
708 started at 22:33:09.829259. Tweet_id -> 785515384317313025
708 completed at 22:33:10.613051
----------
709 started at 22:33:10.613232. Tweet_id -> 785264754247995392
709 completed at 22:33:11.214068
----------
710 started at 22:33:11.214269. Tweet_id -> 785170936622350336
710 completed at 22:33:12.730296
----------
711 started at 22:33:12.730485. Tweet_id -> 784826020293709826
711 completed at 22:33:13.444616
----------
712 started at 22:33:13.444775. Tweet_id -> 784517518371221505
712 completed at 22:33:14.130580
----------
713 started at 22:33:14.130726. Tweet_id -> 784431430411685888
713 completed at 22:33:14.867719
----------
714 started at 22:33:14.867934. Tweet_id -> 784183165795655680
714 completed at 22:33:15.541961
----------
715 started at 22:33:15.542174. Tweet_id -> 784057939640352768
715 completed at 22:33:16.205324
----------
716 started at 22:33:16.205957. Tweet_id -> 783839966405230592
716 completed at 22:33:16.994653
----------
717 started at 22:33:16.994790. Tweet_id -> 783821107061198850
717 completed at 22:33:17.649324
----------
718 started at 22:33:17.649498. Tweet_id -> 783695101801398276
718 completed at 22:33:18.261625
----------
719 started at 22:33:18.261872. Tweet_id -> 783466772167098368
719 completed at 22:33:18.912070
----------
720 started at 22:33:18.912219. Tweet_id -> 783391753726550016
720 completed at 22:33:19.533626
----------
721 started at 22:33:19.533815. Tweet_id -> 783347506784731136
721 completed at 22:33:20.291999
----------
722 started at 22:33:20.292384. Tweet_id -> 783334639985389568
722 completed at 22:33:20.937482
----------
723 started at 22:33:20.937670. Tweet_id -> 783085703974514689
723 completed at 22:33:21.739110
----------
724 started at 22:33:21.739298. Tweet_id -> 782969140009107456
724 completed at 22:33:22.569695
----------
725 started at 22:33:22.570296. Tweet_id -> 782747134529531904
725 completed at 22:33:23.270489
----------
726 started at 22:33:23.270726. Tweet_id -> 782722598790725632
726 completed at 22:33:23.898494
----------
727 started at 22:33:23.898667. Tweet_id -> 782598640137187329
727 completed at 22:33:24.479172
----------
728 started at 22:33:24.479754. Tweet_id -> 782305867769217024
728 completed at 22:33:25.333708
----------
729 started at 22:33:25.333831. Tweet_id -> 782021823840026624
729 completed at 22:33:25.959546
----------
730 started at 22:33:25.959728. Tweet_id -> 781955203444699136
730 completed at 22:33:26.669691
----------
731 started at 22:33:26.669901. Tweet_id -> 781661882474196992
731 completed at 22:33:27.375620
----------
732 started at 22:33:27.375852. Tweet_id -> 781655249211752448
732 completed at 22:33:28.050553
----------
733 started at 22:33:28.050820. Tweet_id -> 781524693396357120
733 completed at 22:33:28.731395
----------
734 started at 22:33:28.731963. Tweet_id -> 781308096455073793
734 completed at 22:33:29.515334
----------
735 started at 22:33:29.515509. Tweet_id -> 781251288990355457
735 completed at 22:33:30.282064
----------
736 started at 22:33:30.282561. Tweet_id -> 781163403222056960
736 completed at 22:33:31.133579
----------
737 started at 22:33:31.133776. Tweet_id -> 780931614150983680
737 completed at 22:33:32.035910
----------
738 started at 22:33:32.036637. Tweet_id -> 780858289093574656
738 completed at 22:33:32.820129
----------
739 started at 22:33:32.820313. Tweet_id -> 780800785462489090
739 completed at 22:33:33.542353
----------
740 started at 22:33:33.542522. Tweet_id -> 780601303617732608
740 completed at 22:33:34.286473
----------
741 started at 22:33:34.286714. Tweet_id -> 780543529827336192
741 completed at 22:33:35.378369
----------
742 started at 22:33:35.378940. Tweet_id -> 780496263422808064
742 completed at 22:33:36.089482
----------
743 started at 22:33:36.089699. Tweet_id -> 780476555013349377
743 completed at 22:33:36.698561
----------
744 started at 22:33:36.698732. Tweet_id -> 780459368902959104
744 completed at 22:33:37.416700
----------
745 started at 22:33:37.417291. Tweet_id -> 780192070812196864
745 completed at 22:33:38.158124
----------
746 started at 22:33:38.158253. Tweet_id -> 780092040432480260
746 completed at 22:33:38.766532
----------
747 started at 22:33:38.766700. Tweet_id -> 780074436359819264
747 completed at 22:33:39.469920
----------
748 started at 22:33:39.470103. Tweet_id -> 779834332596887552
748 completed at 22:33:40.120390
----------
749 started at 22:33:40.120555. Tweet_id -> 779377524342161408
749 completed at 22:33:40.883855
----------
750 started at 22:33:40.884034. Tweet_id -> 779124354206535695
750 completed at 22:33:41.492742
----------
751 started at 22:33:41.492936. Tweet_id -> 779123168116150273
751 completed at 22:33:42.125739
----------
752 started at 22:33:42.125933. Tweet_id -> 779056095788752897
752 completed at 22:33:42.727159
----------
753 started at 22:33:42.727727. Tweet_id -> 778990705243029504
753 completed at 22:33:43.381882
----------
754 started at 22:33:43.382104. Tweet_id -> 778774459159379968
754 completed at 22:33:44.103103
----------
755 started at 22:33:44.103236. Tweet_id -> 778764940568104960
755 completed at 22:33:44.794226
----------
756 started at 22:33:44.794480. Tweet_id -> 778748913645780993
756 completed at 22:33:45.521972
----------
757 started at 22:33:45.522174. Tweet_id -> 778650543019483137
757 completed at 22:33:46.156701
----------
758 started at 22:33:46.156821. Tweet_id -> 778624900596654080
758 completed at 22:33:46.878463
----------
759 started at 22:33:46.878853. Tweet_id -> 778408200802557953
759 completed at 22:33:47.525654
----------
760 started at 22:33:47.526073. Tweet_id -> 778396591732486144
760 completed at 22:33:48.252785
----------
761 started at 22:33:48.253322. Tweet_id -> 778383385161035776
761 completed at 22:33:48.982920
----------
762 started at 22:33:48.983354. Tweet_id -> 778286810187399168
762 completed at 22:33:49.634016
----------
763 started at 22:33:49.634600. Tweet_id -> 778039087836069888
763 completed at 22:33:50.243581
----------
764 started at 22:33:50.243752. Tweet_id -> 778027034220126208
764 completed at 22:33:50.888608
----------
765 started at 22:33:50.888795. Tweet_id -> 777953400541634568
765 completed at 22:33:51.653209
----------
766 started at 22:33:51.653394. Tweet_id -> 777885040357281792
766 completed at 22:33:52.293679
----------
767 started at 22:33:52.294214. Tweet_id -> 777684233540206592
767 completed at 22:33:52.932451
----------
768 started at 22:33:52.932606. Tweet_id -> 777641927919427584
768 completed at 22:33:53.557542
----------
769 started at 22:33:53.557717. Tweet_id -> 777621514455814149
769 completed at 22:33:54.179893
----------
770 started at 22:33:54.180497. Tweet_id -> 777189768882946048
770 completed at 22:33:54.962868
----------
771 started at 22:33:54.963066. Tweet_id -> 776819012571455488
771 completed at 22:33:55.697980
----------
772 started at 22:33:55.698207. Tweet_id -> 776813020089548800
772 completed at 22:33:56.314032
----------
773 started at 22:33:56.314559. Tweet_id -> 776477788987613185
773 completed at 22:33:57.102148
----------
774 started at 22:33:57.102284. Tweet_id -> 776249906839351296
774 completed at 22:33:57.751392
----------
775 started at 22:33:57.751556. Tweet_id -> 776218204058357768
775 completed at 22:33:58.426378
----------
776 started at 22:33:58.426529. Tweet_id -> 776201521193218049
776 completed at 22:33:59.067583
----------
777 started at 22:33:59.067726. Tweet_id -> 776113305656188928
777 completed at 22:33:59.767945
----------
778 started at 22:33:59.768167. Tweet_id -> 776088319444877312
778 completed at 22:34:00.491936
----------
779 started at 22:34:00.492134. Tweet_id -> 775898661951791106
779 completed at 22:34:01.249840
----------
780 started at 22:34:01.249963. Tweet_id -> 775842724423557120
780 completed at 22:34:02.110889
----------
781 started at 22:34:02.111050. Tweet_id -> 775733305207554048
781 completed at 22:34:02.825050
----------
782 started at 22:34:02.825291. Tweet_id -> 775729183532220416
782 completed at 22:34:03.443609
----------
783 started at 22:34:03.443772. Tweet_id -> 775364825476165632
783 completed at 22:34:04.124165
----------
784 started at 22:34:04.124720. Tweet_id -> 775350846108426240
784 completed at 22:34:04.739604
----------
785 started at 22:34:04.739789. Tweet_id -> 775096608509886464
 -> 785 EXCEPTION at 22:34:05.024412
----------
786 started at 22:34:05.024570. Tweet_id -> 775085132600442880
786 completed at 22:34:05.654297
----------
787 started at 22:34:05.654513. Tweet_id -> 774757898236878852
787 completed at 22:34:06.290161
----------
788 started at 22:34:06.290548. Tweet_id -> 774639387460112384
788 completed at 22:34:06.910601
----------
789 started at 22:34:06.910727. Tweet_id -> 774314403806253056
789 completed at 22:34:07.538146
----------
790 started at 22:34:07.538369. Tweet_id -> 773985732834758656
790 completed at 22:34:08.255988
----------
791 started at 22:34:08.256319. Tweet_id -> 773922284943896577
791 completed at 22:34:09.022770
----------
792 started at 22:34:09.023003. Tweet_id -> 773704687002451968
792 completed at 22:34:09.737654
----------
793 started at 22:34:09.737827. Tweet_id -> 773670353721753600
793 completed at 22:34:10.528117
----------
794 started at 22:34:10.528335. Tweet_id -> 773547596996571136
794 completed at 22:34:11.285213
----------
795 started at 22:34:11.285401. Tweet_id -> 773336787167145985
795 completed at 22:34:12.236901
----------
796 started at 22:34:12.237089. Tweet_id -> 773308824254029826
796 completed at 22:34:13.000310
----------
797 started at 22:34:13.000492. Tweet_id -> 773247561583001600
797 completed at 22:34:13.674260
----------
798 started at 22:34:13.674800. Tweet_id -> 773191612633579521
798 completed at 22:34:14.555376
----------
799 started at 22:34:14.556114. Tweet_id -> 772877495989305348
799 completed at 22:34:15.302132
----------
800 started at 22:34:15.302998. Tweet_id -> 772826264096874500
800 completed at 22:34:16.042030
----------
801 started at 22:34:16.042225. Tweet_id -> 772615324260794368
801 completed at 22:34:16.783632
----------
802 started at 22:34:16.784237. Tweet_id -> 772581559778025472
802 completed at 22:34:17.842050
----------
803 started at 22:34:17.842939. Tweet_id -> 772193107915964416
803 completed at 22:34:18.551967
----------
804 started at 22:34:18.552175. Tweet_id -> 772152991789019136
804 completed at 22:34:19.214196
----------
805 started at 22:34:19.214409. Tweet_id -> 772117678702071809
805 completed at 22:34:19.928941
----------
806 started at 22:34:19.929139. Tweet_id -> 772114945936949249
806 completed at 22:34:20.527522
----------
807 started at 22:34:20.528294. Tweet_id -> 772102971039580160
807 completed at 22:34:21.137633
----------
808 started at 22:34:21.138166. Tweet_id -> 771908950375665664
808 completed at 22:34:21.890475
----------
809 started at 22:34:21.890650. Tweet_id -> 771770456517009408
809 completed at 22:34:22.508015
----------
810 started at 22:34:22.508568. Tweet_id -> 771500966810099713
810 completed at 22:34:23.120169
----------
811 started at 22:34:23.120352. Tweet_id -> 771380798096281600
811 completed at 22:34:23.833355
----------
812 started at 22:34:23.833728. Tweet_id -> 771171053431250945
812 completed at 22:34:24.464627
----------
813 started at 22:34:24.464824. Tweet_id -> 771136648247640064
813 completed at 22:34:25.174820
----------
814 started at 22:34:25.174951. Tweet_id -> 771102124360998913
814 completed at 22:34:25.806823
----------
815 started at 22:34:25.807023. Tweet_id -> 771014301343748096
815 completed at 22:34:26.677476
----------
816 started at 22:34:26.678761. Tweet_id -> 771004394259247104
816 completed at 22:34:27.449374
----------
817 started at 22:34:27.449571. Tweet_id -> 770787852854652928
817 completed at 22:34:28.261222
----------
818 started at 22:34:28.261412. Tweet_id -> 770772759874076672
818 completed at 22:34:28.976826
----------
819 started at 22:34:28.977271. Tweet_id -> 770743923962707968
 -> 819 EXCEPTION at 22:34:29.268044
----------
820 started at 22:34:29.268218. Tweet_id -> 770655142660169732
820 completed at 22:34:29.908268
----------
821 started at 22:34:29.908760. Tweet_id -> 770414278348247044
821 completed at 22:34:30.641729
----------
822 started at 22:34:30.641909. Tweet_id -> 770293558247038976
822 completed at 22:34:31.461836
----------
823 started at 22:34:31.462057. Tweet_id -> 770093767776997377
823 completed at 22:34:32.139516
----------
824 started at 22:34:32.139703. Tweet_id -> 770069151037685760
824 completed at 22:34:32.759406
----------
825 started at 22:34:32.759545. Tweet_id -> 769940425801170949
825 completed at 22:34:33.436980
----------
826 started at 22:34:33.437149. Tweet_id -> 769695466921623552
826 completed at 22:34:34.053490
----------
827 started at 22:34:34.053665. Tweet_id -> 769335591808995329
827 completed at 22:34:34.838561
----------
828 started at 22:34:34.838795. Tweet_id -> 769212283578875904
828 completed at 22:34:35.538025
----------
829 started at 22:34:35.538151. Tweet_id -> 768970937022709760
829 completed at 22:34:36.191798
----------
830 started at 22:34:36.191977. Tweet_id -> 768909767477751808
830 completed at 22:34:36.820001
----------
831 started at 22:34:36.820181. Tweet_id -> 768855141948723200
831 completed at 22:34:37.499502
----------
832 started at 22:34:37.500049. Tweet_id -> 768609597686943744
832 completed at 22:34:38.236305
----------
833 started at 22:34:38.236443. Tweet_id -> 768596291618299904
833 completed at 22:34:38.943535
----------
834 started at 22:34:38.943713. Tweet_id -> 768554158521745409
834 completed at 22:34:39.580399
----------
835 started at 22:34:39.580588. Tweet_id -> 768473857036525572
835 completed at 22:34:40.327443
----------
836 started at 22:34:40.327759. Tweet_id -> 768193404517830656
836 completed at 22:34:41.023781
----------
837 started at 22:34:41.024264. Tweet_id -> 767884188863397888
837 completed at 22:34:41.766571
----------
838 started at 22:34:41.766793. Tweet_id -> 767754930266464257
838 completed at 22:34:42.468089
----------
839 started at 22:34:42.468209. Tweet_id -> 767500508068192258
839 completed at 22:34:43.299304
----------
840 started at 22:34:43.299469. Tweet_id -> 767191397493538821
840 completed at 22:34:43.921580
----------
841 started at 22:34:43.921797. Tweet_id -> 767122157629476866
841 completed at 22:34:44.656484
----------
842 started at 22:34:44.656672. Tweet_id -> 766864461642756096
842 completed at 22:34:45.378914
----------
843 started at 22:34:45.379059. Tweet_id -> 766793450729734144
843 completed at 22:34:45.991050
----------
844 started at 22:34:45.991503. Tweet_id -> 766714921925144576
844 completed at 22:34:46.763948
----------
845 started at 22:34:46.764637. Tweet_id -> 766693177336135680
845 completed at 22:34:47.644263
----------
846 started at 22:34:47.644507. Tweet_id -> 766423258543644672
846 completed at 22:34:48.424943
----------
847 started at 22:34:48.425067. Tweet_id -> 766313316352462849
847 completed at 22:34:49.120246
----------
848 started at 22:34:49.120431. Tweet_id -> 766078092750233600
848 completed at 22:34:49.846152
----------
849 started at 22:34:49.846742. Tweet_id -> 766069199026450432
849 completed at 22:34:50.587154
----------
850 started at 22:34:50.587466. Tweet_id -> 766008592277377025
850 completed at 22:34:51.255570
----------
851 started at 22:34:51.255681. Tweet_id -> 765719909049503744
851 completed at 22:34:51.910717
----------
852 started at 22:34:51.910945. Tweet_id -> 765669560888528897
852 completed at 22:34:52.619888
----------
853 started at 22:34:52.620278. Tweet_id -> 765395769549590528
853 completed at 22:34:53.341502
----------
854 started at 22:34:53.341789. Tweet_id -> 765371061932261376
854 completed at 22:34:54.064264
----------
855 started at 22:34:54.064392. Tweet_id -> 765222098633691136
855 completed at 22:34:54.803748
----------
856 started at 22:34:54.804434. Tweet_id -> 764857477905154048
856 completed at 22:34:55.501214
----------
857 started at 22:34:55.501446. Tweet_id -> 764259802650378240
857 completed at 22:34:56.126629
----------
858 started at 22:34:56.126866. Tweet_id -> 763956972077010945
858 completed at 22:34:57.072794
----------
859 started at 22:34:57.073000. Tweet_id -> 763837565564780549
859 completed at 22:34:57.738905
----------
860 started at 22:34:57.739803. Tweet_id -> 763183847194451968
860 completed at 22:34:58.426129
----------
861 started at 22:34:58.426329. Tweet_id -> 763167063695355904
861 completed at 22:34:59.048967
----------
862 started at 22:34:59.049241. Tweet_id -> 763103485927849985
862 completed at 22:34:59.795336
----------
863 started at 22:34:59.795479. Tweet_id -> 762699858130116608
863 completed at 22:35:00.417444
----------
864 started at 22:35:00.417638. Tweet_id -> 762471784394268675
864 completed at 22:35:01.098971
----------
865 started at 22:35:01.099147. Tweet_id -> 762464539388485633
865 completed at 22:35:01.927206
----------
866 started at 22:35:01.927688. Tweet_id -> 762316489655476224
866 completed at 22:35:02.607300
----------
867 started at 22:35:02.607430. Tweet_id -> 762035686371364864
867 completed at 22:35:03.429551
----------
868 started at 22:35:03.429758. Tweet_id -> 761976711479193600
868 completed at 22:35:04.064992
----------
869 started at 22:35:04.065486. Tweet_id -> 761750502866649088
869 completed at 22:35:04.929820
----------
870 started at 22:35:04.930389. Tweet_id -> 761745352076779520
870 completed at 22:35:05.582887
----------
871 started at 22:35:05.583431. Tweet_id -> 761672994376806400
871 completed at 22:35:06.391087
----------
872 started at 22:35:06.391239. Tweet_id -> 761599872357261312
872 completed at 22:35:07.174880
----------
873 started at 22:35:07.175306. Tweet_id -> 761371037149827077
873 completed at 22:35:07.935367
----------
874 started at 22:35:07.935515. Tweet_id -> 761334018830917632
874 completed at 22:35:08.640284
----------
875 started at 22:35:08.640432. Tweet_id -> 761292947749015552
875 completed at 22:35:09.487207
----------
876 started at 22:35:09.487952. Tweet_id -> 761227390836215808
876 completed at 22:35:10.256649
----------
877 started at 22:35:10.256873. Tweet_id -> 761004547850530816
877 completed at 22:35:11.158934
----------
878 started at 22:35:11.159120. Tweet_id -> 760893934457552897
878 completed at 22:35:11.951714
----------
879 started at 22:35:11.952308. Tweet_id -> 760656994973933572
879 completed at 22:35:12.834829
----------
880 started at 22:35:12.835019. Tweet_id -> 760641137271070720
880 completed at 22:35:13.586352
----------
881 started at 22:35:13.586815. Tweet_id -> 760539183865880579
881 completed at 22:35:14.477871
----------
882 started at 22:35:14.478088. Tweet_id -> 760521673607086080
882 completed at 22:35:15.471677
----------
883 started at 22:35:15.471931. Tweet_id -> 760290219849637889
883 completed at 22:35:16.131573
----------
884 started at 22:35:16.132200. Tweet_id -> 760252756032651264
884 completed at 22:35:16.973248
----------
885 started at 22:35:16.973448. Tweet_id -> 760190180481531904
885 completed at 22:35:17.632516
----------
886 started at 22:35:17.632864. Tweet_id -> 760153949710192640
886 completed at 22:35:18.435308
----------
887 started at 22:35:18.436097. Tweet_id -> 759943073749200896
887 completed at 22:35:19.098494
----------
888 started at 22:35:19.099360. Tweet_id -> 759923798737051648
888 completed at 22:35:19.868283
----------
889 started at 22:35:19.868793. Tweet_id -> 759846353224826880
889 completed at 22:35:20.594659
----------
890 started at 22:35:20.594813. Tweet_id -> 759793422261743616
890 completed at 22:35:21.312586
----------
891 started at 22:35:21.313035. Tweet_id -> 759566828574212096
891 completed at 22:35:22.046132
----------
892 started at 22:35:22.046318. Tweet_id -> 759557299618865152
892 completed at 22:35:22.678123
----------
893 started at 22:35:22.678316. Tweet_id -> 759447681597108224
893 completed at 22:35:23.362819
----------
894 started at 22:35:23.363370. Tweet_id -> 759446261539934208
894 completed at 22:35:24.098779
----------
895 started at 22:35:24.098926. Tweet_id -> 759197388317847553
895 completed at 22:35:24.775468
----------
896 started at 22:35:24.775763. Tweet_id -> 759159934323924993
896 completed at 22:35:25.462481
----------
897 started at 22:35:25.462668. Tweet_id -> 759099523532779520
897 completed at 22:35:26.342763
----------
898 started at 22:35:26.342935. Tweet_id -> 759047813560868866
898 completed at 22:35:27.010496
----------
899 started at 22:35:27.010687. Tweet_id -> 758854675097526272
899 completed at 22:35:27.793526
----------
900 started at 22:35:27.794467. Tweet_id -> 758828659922702336
900 completed at 22:35:28.583228
----------
901 started at 22:35:28.583755. Tweet_id -> 758740312047005698
Rate limit reached. Sleeping for: 372
901 completed at 22:41:46.526270
----------
902 started at 22:41:46.526534. Tweet_id -> 758474966123810816
902 completed at 22:41:47.373590
----------
903 started at 22:41:47.373782. Tweet_id -> 758467244762497024
903 completed at 22:41:48.081858
----------
904 started at 22:41:48.082348. Tweet_id -> 758405701903519748
904 completed at 22:41:48.883457
----------
905 started at 22:41:48.883663. Tweet_id -> 758355060040593408
905 completed at 22:41:49.723437
----------
906 started at 22:41:49.723696. Tweet_id -> 758099635764359168
906 completed at 22:41:50.470626
----------
907 started at 22:41:50.471315. Tweet_id -> 758041019896193024
907 completed at 22:41:51.105586
----------
908 started at 22:41:51.106060. Tweet_id -> 757741869644341248
908 completed at 22:41:51.776294
----------
909 started at 22:41:51.776556. Tweet_id -> 757729163776290825
909 completed at 22:41:52.522903
----------
910 started at 22:41:52.523083. Tweet_id -> 757725642876129280
910 completed at 22:41:53.188763
----------
911 started at 22:41:53.188882. Tweet_id -> 757611664640446465
911 completed at 22:41:53.829441
----------
912 started at 22:41:53.829733. Tweet_id -> 757597904299253760
912 completed at 22:41:54.700944
----------
913 started at 22:41:54.701154. Tweet_id -> 757596066325864448
913 completed at 22:41:55.338579
----------
914 started at 22:41:55.339345. Tweet_id -> 757400162377592832
914 completed at 22:41:56.176050
----------
915 started at 22:41:56.176222. Tweet_id -> 757393109802180609
915 completed at 22:41:56.823197
----------
916 started at 22:41:56.823574. Tweet_id -> 757354760399941633
916 completed at 22:41:57.483959
----------
917 started at 22:41:57.484480. Tweet_id -> 756998049151549440
917 completed at 22:41:58.191713
----------
918 started at 22:41:58.191846. Tweet_id -> 756939218950160384
918 completed at 22:41:58.830406
----------
919 started at 22:41:58.830968. Tweet_id -> 756651752796094464
919 completed at 22:41:59.619082
----------
920 started at 22:41:59.619562. Tweet_id -> 756526248105566208
920 completed at 22:42:00.432663
----------
921 started at 22:42:00.432934. Tweet_id -> 756303284449767430
921 completed at 22:42:01.182487
----------
922 started at 22:42:01.183008. Tweet_id -> 756288534030475264
922 completed at 22:42:01.872174
----------
923 started at 22:42:01.872334. Tweet_id -> 756275833623502848
923 completed at 22:42:02.802696
----------
924 started at 22:42:02.802838. Tweet_id -> 755955933503782912
924 completed at 22:42:03.484454
----------
925 started at 22:42:03.485152. Tweet_id -> 755206590534418437
925 completed at 22:42:04.245143
----------
926 started at 22:42:04.245321. Tweet_id -> 755110668769038337
926 completed at 22:42:04.918409
----------
927 started at 22:42:04.918661. Tweet_id -> 754874841593970688
927 completed at 22:42:05.645841
----------
928 started at 22:42:05.646075. Tweet_id -> 754856583969079297
928 completed at 22:42:06.414756
----------
929 started at 22:42:06.414915. Tweet_id -> 754747087846248448
929 completed at 22:42:07.206953
----------
930 started at 22:42:07.207521. Tweet_id -> 754482103782404096
930 completed at 22:42:08.042470
----------
931 started at 22:42:08.042702. Tweet_id -> 754449512966619136
931 completed at 22:42:08.767906
----------
932 started at 22:42:08.768143. Tweet_id -> 754120377874386944
932 completed at 22:42:09.477221
----------
933 started at 22:42:09.477385. Tweet_id -> 754011816964026368
 -> 933 EXCEPTION at 22:42:09.793047
----------
934 started at 22:42:09.793258. Tweet_id -> 753655901052166144
934 completed at 22:42:10.587286
----------
935 started at 22:42:10.587522. Tweet_id -> 753420520834629632
935 completed at 22:42:12.633151
----------
936 started at 22:42:12.633804. Tweet_id -> 753398408988139520
936 completed at 22:42:13.341343
----------
937 started at 22:42:13.341500. Tweet_id -> 753375668877008896
937 completed at 22:42:14.108841
----------
938 started at 22:42:14.109291. Tweet_id -> 753298634498793472
938 completed at 22:42:14.759340
----------
939 started at 22:42:14.759460. Tweet_id -> 753294487569522689
939 completed at 22:42:15.813376
----------
940 started at 22:42:15.813935. Tweet_id -> 753039830821511168
940 completed at 22:42:16.493448
----------
941 started at 22:42:16.493654. Tweet_id -> 753026973505581056
941 completed at 22:42:17.291587
----------
942 started at 22:42:17.291858. Tweet_id -> 752932432744185856
942 completed at 22:42:17.963505
----------
943 started at 22:42:17.963996. Tweet_id -> 752917284578922496
943 completed at 22:42:18.623802
----------
944 started at 22:42:18.624005. Tweet_id -> 752701944171524096
944 completed at 22:42:19.271472
----------
945 started at 22:42:19.271774. Tweet_id -> 752682090207055872
945 completed at 22:42:19.935689
----------
946 started at 22:42:19.936611. Tweet_id -> 752660715232722944
946 completed at 22:42:20.721490
----------
947 started at 22:42:20.721729. Tweet_id -> 752568224206688256
947 completed at 22:42:21.370279
----------
948 started at 22:42:21.370659. Tweet_id -> 752519690950500352
948 completed at 22:42:22.156994
----------
949 started at 22:42:22.157393. Tweet_id -> 752334515931054080
949 completed at 22:42:22.806640
----------
950 started at 22:42:22.807093. Tweet_id -> 752309394570878976
950 completed at 22:42:23.594662
----------
951 started at 22:42:23.594857. Tweet_id -> 752173152931807232
951 completed at 22:42:24.437966
----------
952 started at 22:42:24.438785. Tweet_id -> 751950017322246144
952 completed at 22:42:25.111809
----------
953 started at 22:42:25.112029. Tweet_id -> 751937170840121344
953 completed at 22:42:25.876527
----------
954 started at 22:42:25.876753. Tweet_id -> 751830394383790080
954 completed at 22:42:26.547424
----------
955 started at 22:42:26.547642. Tweet_id -> 751793661361422336
955 completed at 22:42:27.278433
----------
956 started at 22:42:27.278582. Tweet_id -> 751598357617971201
956 completed at 22:42:28.101140
----------
957 started at 22:42:28.101486. Tweet_id -> 751583847268179968
957 completed at 22:42:28.810804
----------
958 started at 22:42:28.811675. Tweet_id -> 751538714308972544
958 completed at 22:42:29.682429
----------
959 started at 22:42:29.682657. Tweet_id -> 751456908746354688
959 completed at 22:42:30.460194
----------
960 started at 22:42:30.460392. Tweet_id -> 751251247299190784
960 completed at 22:42:31.280492
----------
961 started at 22:42:31.280671. Tweet_id -> 751205363882532864
961 completed at 22:42:31.993898
----------
962 started at 22:42:31.994091. Tweet_id -> 751132876104687617
962 completed at 22:42:32.668344
----------
963 started at 22:42:32.668786. Tweet_id -> 750868782890057730
963 completed at 22:42:33.335880
----------
964 started at 22:42:33.336006. Tweet_id -> 750719632563142656
964 completed at 22:42:33.993642
----------
965 started at 22:42:33.993903. Tweet_id -> 750506206503038976
965 completed at 22:42:34.730256
----------
966 started at 22:42:34.730783. Tweet_id -> 750429297815552001
966 completed at 22:42:35.414606
----------
967 started at 22:42:35.414851. Tweet_id -> 750383411068534784
967 completed at 22:42:36.189162
----------
968 started at 22:42:36.189318. Tweet_id -> 750381685133418496
968 completed at 22:42:36.876514
----------
969 started at 22:42:36.877125. Tweet_id -> 750147208377409536
969 completed at 22:42:37.560935
----------
970 started at 22:42:37.561189. Tweet_id -> 750132105863102464
970 completed at 22:42:38.347208
----------
971 started at 22:42:38.347351. Tweet_id -> 750117059602808832
971 completed at 22:42:39.011315
----------
972 started at 22:42:39.011492. Tweet_id -> 750101899009982464
972 completed at 22:42:39.666014
----------
973 started at 22:42:39.666220. Tweet_id -> 750086836815486976
973 completed at 22:42:40.428194
----------
974 started at 22:42:40.428365. Tweet_id -> 750071704093859840
974 completed at 22:42:41.214082
----------
975 started at 22:42:41.214278. Tweet_id -> 750056684286914561
975 completed at 22:42:42.048847
----------
976 started at 22:42:42.049008. Tweet_id -> 750041628174217216
976 completed at 22:42:42.839153
----------
977 started at 22:42:42.839386. Tweet_id -> 750026558547456000
977 completed at 22:42:43.525161
----------
978 started at 22:42:43.525331. Tweet_id -> 750011400160841729
978 completed at 22:42:44.189220
----------
979 started at 22:42:44.189384. Tweet_id -> 749996283729883136
979 completed at 22:42:44.948066
----------
980 started at 22:42:44.948226. Tweet_id -> 749981277374128128
980 completed at 22:42:45.713974
----------
981 started at 22:42:45.714145. Tweet_id -> 749774190421639168
981 completed at 22:42:46.548443
----------
982 started at 22:42:46.548998. Tweet_id -> 749417653287129088
982 completed at 22:42:47.416260
----------
983 started at 22:42:47.416433. Tweet_id -> 749403093750648834
983 completed at 22:42:48.251933
----------
984 started at 22:42:48.252334. Tweet_id -> 749395845976588288
984 completed at 22:42:48.990880
----------
985 started at 22:42:48.991387. Tweet_id -> 749317047558017024
985 completed at 22:42:49.821322
----------
986 started at 22:42:49.821494. Tweet_id -> 749075273010798592
986 completed at 22:42:50.509001
----------
987 started at 22:42:50.509349. Tweet_id -> 749064354620928000
987 completed at 22:42:51.185910
----------
988 started at 22:42:51.186130. Tweet_id -> 749036806121881602
988 completed at 22:42:51.894801
----------
989 started at 22:42:51.894975. Tweet_id -> 748977405889503236
989 completed at 22:42:52.685583
----------
990 started at 22:42:52.685940. Tweet_id -> 748932637671223296
990 completed at 22:42:53.385951
----------
991 started at 22:42:53.386155. Tweet_id -> 748705597323898880
991 completed at 22:42:54.098972
----------
992 started at 22:42:54.099469. Tweet_id -> 748699167502000129
992 completed at 22:42:54.834310
----------
993 started at 22:42:54.834540. Tweet_id -> 748692773788876800
993 completed at 22:42:55.657885
----------
994 started at 22:42:55.658020. Tweet_id -> 748575535303884801
994 completed at 22:42:56.483553
----------
995 started at 22:42:56.483772. Tweet_id -> 748568946752774144
995 completed at 22:42:57.402220
----------
996 started at 22:42:57.402386. Tweet_id -> 748346686624440324
996 completed at 22:42:58.151802
----------
997 started at 22:42:58.152022. Tweet_id -> 748337862848962560
997 completed at 22:42:58.827918
----------
998 started at 22:42:58.828407. Tweet_id -> 748324050481647620
998 completed at 22:42:59.625150
----------
999 started at 22:42:59.625302. Tweet_id -> 748307329658011649
999 completed at 22:43:00.326957
----------
1000 started at 22:43:00.327387. Tweet_id -> 748220828303695873
1000 completed at 22:43:01.037682
----------
1001 started at 22:43:01.037826. Tweet_id -> 747963614829678593
1001 completed at 22:43:01.914638
----------
1002 started at 22:43:01.915269. Tweet_id -> 747933425676525569
1002 completed at 22:43:02.662591
----------
1003 started at 22:43:02.663195. Tweet_id -> 747885874273214464
1003 completed at 22:43:03.397308
----------
1004 started at 22:43:03.397926. Tweet_id -> 747844099428986880
1004 completed at 22:43:04.176494
----------
1005 started at 22:43:04.176883. Tweet_id -> 747816857231626240
1005 completed at 22:43:04.872537
----------
1006 started at 22:43:04.872993. Tweet_id -> 747651430853525504
1006 completed at 22:43:05.561704
----------
1007 started at 22:43:05.561886. Tweet_id -> 747648653817413632
1007 completed at 22:43:06.339909
----------
1008 started at 22:43:06.340138. Tweet_id -> 747600769478692864
1008 completed at 22:43:07.153585
----------
1009 started at 22:43:07.153743. Tweet_id -> 747594051852075008
1009 completed at 22:43:08.149710
----------
1010 started at 22:43:08.150075. Tweet_id -> 747512671126323200
1010 completed at 22:43:08.965973
----------
1011 started at 22:43:08.966217. Tweet_id -> 747461612269887489
1011 completed at 22:43:09.851335
----------
1012 started at 22:43:09.851518. Tweet_id -> 747439450712596480
1012 completed at 22:43:10.518598
----------
1013 started at 22:43:10.518786. Tweet_id -> 747242308580548608
1013 completed at 22:43:11.333185
----------
1014 started at 22:43:11.333384. Tweet_id -> 747219827526344708
1014 completed at 22:43:12.172288
----------
1015 started at 22:43:12.172434. Tweet_id -> 747204161125646336
1015 completed at 22:43:12.957655
----------
1016 started at 22:43:12.957853. Tweet_id -> 747103485104099331
1016 completed at 22:43:13.791734
----------
1017 started at 22:43:13.791896. Tweet_id -> 746906459439529985
1017 completed at 22:43:14.571972
----------
1018 started at 22:43:14.572134. Tweet_id -> 746872823977771008
1018 completed at 22:43:15.303465
----------
1019 started at 22:43:15.304451. Tweet_id -> 746818907684614144
1019 completed at 22:43:15.989616
----------
1020 started at 22:43:15.989764. Tweet_id -> 746790600704425984
1020 completed at 22:43:16.762324
----------
1021 started at 22:43:16.762986. Tweet_id -> 746757706116112384
1021 completed at 22:43:17.596775
----------
1022 started at 22:43:17.597119. Tweet_id -> 746726898085036033
1022 completed at 22:43:18.402847
----------
1023 started at 22:43:18.402999. Tweet_id -> 746542875601690625
1023 completed at 22:43:19.110956
----------
1024 started at 22:43:19.111154. Tweet_id -> 746521445350707200
1024 completed at 22:43:19.837296
----------
1025 started at 22:43:19.837486. Tweet_id -> 746507379341139972
1025 completed at 22:43:20.532640
----------
1026 started at 22:43:20.532803. Tweet_id -> 746369468511756288
1026 completed at 22:43:21.373866
----------
1027 started at 22:43:21.374017. Tweet_id -> 746131877086527488
1027 completed at 22:43:22.176007
----------
1028 started at 22:43:22.176798. Tweet_id -> 746056683365994496
1028 completed at 22:43:22.907488
----------
1029 started at 22:43:22.907647. Tweet_id -> 745789745784041472
1029 completed at 22:43:23.600726
----------
1030 started at 22:43:23.601328. Tweet_id -> 745712589599014916
1030 completed at 22:43:24.302197
----------
1031 started at 22:43:24.302363. Tweet_id -> 745433870967832576
1031 completed at 22:43:25.057131
----------
1032 started at 22:43:25.057374. Tweet_id -> 745422732645535745
1032 completed at 22:43:25.771121
----------
1033 started at 22:43:25.771274. Tweet_id -> 745314880350101504
1033 completed at 22:43:26.596202
----------
1034 started at 22:43:26.596416. Tweet_id -> 745074613265149952
1034 completed at 22:43:27.361097
----------
1035 started at 22:43:27.361232. Tweet_id -> 745057283344719872
1035 completed at 22:43:28.182910
----------
1036 started at 22:43:28.183110. Tweet_id -> 744995568523612160
1036 completed at 22:43:28.892085
----------
1037 started at 22:43:28.892251. Tweet_id -> 744971049620602880
1037 completed at 22:43:29.796074
----------
1038 started at 22:43:29.796362. Tweet_id -> 744709971296780288
1038 completed at 22:43:30.781917
----------
1039 started at 22:43:30.782113. Tweet_id -> 744334592493166593
1039 completed at 22:43:31.484376
----------
1040 started at 22:43:31.484881. Tweet_id -> 744234799360020481
1040 completed at 22:43:32.379510
----------
1041 started at 22:43:32.379706. Tweet_id -> 744223424764059648
1041 completed at 22:43:33.427210
----------
1042 started at 22:43:33.428201. Tweet_id -> 743980027717509120
1042 completed at 22:43:34.232952
----------
1043 started at 22:43:34.233318. Tweet_id -> 743895849529389061
1043 completed at 22:43:35.062650
----------
1044 started at 22:43:35.062830. Tweet_id -> 743835915802583040
1044 completed at 22:43:35.844724
----------
1045 started at 22:43:35.845129. Tweet_id -> 743609206067040256
1045 completed at 22:43:36.750460
----------
1046 started at 22:43:36.750629. Tweet_id -> 743595368194129920
1046 completed at 22:43:37.485677
----------
1047 started at 22:43:37.485830. Tweet_id -> 743545585370791937
1047 completed at 22:43:38.357779
----------
1048 started at 22:43:38.357969. Tweet_id -> 743510151680958465
1048 completed at 22:43:39.256452
----------
1049 started at 22:43:39.256674. Tweet_id -> 743253157753532416
1049 completed at 22:43:40.091204
----------
1050 started at 22:43:40.091383. Tweet_id -> 743222593470234624
1050 completed at 22:43:40.928612
----------
1051 started at 22:43:40.928771. Tweet_id -> 743210557239623680
1051 completed at 22:43:41.827231
----------
1052 started at 22:43:41.827433. Tweet_id -> 742534281772302336
1052 completed at 22:43:42.582301
----------
1053 started at 22:43:42.582478. Tweet_id -> 742528092657332225
1053 completed at 22:43:43.291933
----------
1054 started at 22:43:43.292129. Tweet_id -> 742465774154047488
1054 completed at 22:43:44.248791
----------
1055 started at 22:43:44.248985. Tweet_id -> 742423170473463808
1055 completed at 22:43:45.043012
----------
1056 started at 22:43:45.043178. Tweet_id -> 742385895052087300
1056 completed at 22:43:45.807638
----------
1057 started at 22:43:45.808372. Tweet_id -> 742161199639494656
1057 completed at 22:43:46.528729
----------
1058 started at 22:43:46.528895. Tweet_id -> 742150209887731712
1058 completed at 22:43:47.347207
----------
1059 started at 22:43:47.347441. Tweet_id -> 741793263812808706
1059 completed at 22:43:48.079685
----------
1060 started at 22:43:48.079894. Tweet_id -> 741743634094141440
1060 completed at 22:43:48.830944
----------
1061 started at 22:43:48.831110. Tweet_id -> 741438259667034112
1061 completed at 22:43:49.783918
----------
1062 started at 22:43:49.784099. Tweet_id -> 741303864243200000
1062 completed at 22:43:50.489970
----------
1063 started at 22:43:50.490197. Tweet_id -> 741099773336379392
1063 completed at 22:43:51.216298
----------
1064 started at 22:43:51.216506. Tweet_id -> 741067306818797568
1064 completed at 22:43:51.943667
----------
1065 started at 22:43:51.943841. Tweet_id -> 740995100998766593
1065 completed at 22:43:53.053286
----------
1066 started at 22:43:53.053985. Tweet_id -> 740711788199743490
1066 completed at 22:43:53.832877
----------
1067 started at 22:43:53.833023. Tweet_id -> 740699697422163968
1067 completed at 22:43:54.543378
----------
1068 started at 22:43:54.543603. Tweet_id -> 740676976021798912
1068 completed at 22:43:55.381752
----------
1069 started at 22:43:55.381932. Tweet_id -> 740373189193256964
1069 completed at 22:43:56.317647
----------
1070 started at 22:43:56.318146. Tweet_id -> 740365076218183684
1070 completed at 22:43:57.039717
----------
1071 started at 22:43:57.040396. Tweet_id -> 740359016048689152
1071 completed at 22:43:57.822658
----------
1072 started at 22:43:57.823245. Tweet_id -> 740214038584557568
1072 completed at 22:43:58.578323
----------
1073 started at 22:43:58.578887. Tweet_id -> 739979191639244800
1073 completed at 22:43:59.322438
----------
1074 started at 22:43:59.322603. Tweet_id -> 739932936087216128
1074 completed at 22:44:00.030803
----------
1075 started at 22:44:00.030983. Tweet_id -> 739844404073074688
1075 completed at 22:44:00.850591
----------
1076 started at 22:44:00.850764. Tweet_id -> 739623569819336705
1076 completed at 22:44:01.846869
----------
1077 started at 22:44:01.847082. Tweet_id -> 739606147276148736
1077 completed at 22:44:02.560565
----------
1078 started at 22:44:02.560743. Tweet_id -> 739544079319588864
1078 completed at 22:44:03.416004
----------
1079 started at 22:44:03.416164. Tweet_id -> 739485634323156992
1079 completed at 22:44:04.294103
----------
1080 started at 22:44:04.294316. Tweet_id -> 739238157791694849
1080 completed at 22:44:05.271169
----------
1081 started at 22:44:05.272280. Tweet_id -> 738891149612572673
1081 completed at 22:44:06.175064
----------
1082 started at 22:44:06.175264. Tweet_id -> 738885046782832640
1082 completed at 22:44:06.946800
----------
1083 started at 22:44:06.946935. Tweet_id -> 738883359779196928
1083 completed at 22:44:07.786006
----------
1084 started at 22:44:07.786183. Tweet_id -> 738537504001953792
1084 completed at 22:44:08.603426
----------
1085 started at 22:44:08.603637. Tweet_id -> 738402415918125056
1085 completed at 22:44:09.366579
----------
1086 started at 22:44:09.366815. Tweet_id -> 738184450748633089
1086 completed at 22:44:10.127616
----------
1087 started at 22:44:10.127777. Tweet_id -> 738166403467907072
1087 completed at 22:44:10.863344
----------
1088 started at 22:44:10.863533. Tweet_id -> 738156290900254721
1088 completed at 22:44:11.672832
----------
1089 started at 22:44:11.673031. Tweet_id -> 737826014890496000
1089 completed at 22:44:12.525674
----------
1090 started at 22:44:12.525908. Tweet_id -> 737800304142471168
1090 completed at 22:44:13.368174
----------
1091 started at 22:44:13.368782. Tweet_id -> 737678689543020544
1091 completed at 22:44:14.466404
----------
1092 started at 22:44:14.466540. Tweet_id -> 737445876994609152
1092 completed at 22:44:15.470701
----------
1093 started at 22:44:15.470833. Tweet_id -> 737322739594330112
1093 completed at 22:44:16.465953
----------
1094 started at 22:44:16.466109. Tweet_id -> 737310737551491075
1094 completed at 22:44:17.580962
----------
1095 started at 22:44:17.581115. Tweet_id -> 736736130620620800
1095 completed at 22:44:18.613880
----------
1096 started at 22:44:18.614083. Tweet_id -> 736392552031657984
1096 completed at 22:44:19.588013
----------
1097 started at 22:44:19.588176. Tweet_id -> 736365877722001409
1097 completed at 22:44:20.506488
----------
1098 started at 22:44:20.506642. Tweet_id -> 736225175608430592
1098 completed at 22:44:21.702629
----------
1099 started at 22:44:21.703676. Tweet_id -> 736010884653420544
1099 completed at 22:44:22.421311
----------
1100 started at 22:44:22.421455. Tweet_id -> 735991953473572864
1100 completed at 22:44:23.216808
----------
1101 started at 22:44:23.216972. Tweet_id -> 735648611367784448
1101 completed at 22:44:24.097319
----------
1102 started at 22:44:24.097481. Tweet_id -> 735635087207878657
1102 completed at 22:44:24.916222
----------
1103 started at 22:44:24.916525. Tweet_id -> 735274964362878976
1103 completed at 22:44:25.722691
----------
1104 started at 22:44:25.722854. Tweet_id -> 735256018284875776
1104 completed at 22:44:26.889382
----------
1105 started at 22:44:26.889953. Tweet_id -> 735137028879360001
1105 completed at 22:44:27.694162
----------
1106 started at 22:44:27.694328. Tweet_id -> 734912297295085568
1106 completed at 22:44:28.628223
----------
1107 started at 22:44:28.628371. Tweet_id -> 734787690684657664
1107 completed at 22:44:29.520518
----------
1108 started at 22:44:29.520678. Tweet_id -> 734776360183431168
1108 completed at 22:44:30.324232
----------
1109 started at 22:44:30.324943. Tweet_id -> 734559631394082816
1109 completed at 22:44:31.084594
----------
1110 started at 22:44:31.084734. Tweet_id -> 733828123016450049
1110 completed at 22:44:32.006208
----------
1111 started at 22:44:32.006376. Tweet_id -> 733822306246479872
1111 completed at 22:44:32.860717
----------
1112 started at 22:44:32.860909. Tweet_id -> 733482008106668032
1112 completed at 22:44:33.666146
----------
1113 started at 22:44:33.666818. Tweet_id -> 733460102733135873
1113 completed at 22:44:34.376157
----------
1114 started at 22:44:34.376321. Tweet_id -> 733109485275860992
1114 completed at 22:44:35.515676
----------
1115 started at 22:44:35.515820. Tweet_id -> 732732193018155009
1115 completed at 22:44:36.285743
----------
1116 started at 22:44:36.285922. Tweet_id -> 732726085725589504
1116 completed at 22:44:37.150801
----------
1117 started at 22:44:37.151511. Tweet_id -> 732585889486888962
1117 completed at 22:44:37.887604
----------
1118 started at 22:44:37.888145. Tweet_id -> 732375214819057664
1118 completed at 22:44:38.725948
----------
1119 started at 22:44:38.726107. Tweet_id -> 732005617171337216
1119 completed at 22:44:39.468178
----------
1120 started at 22:44:39.468334. Tweet_id -> 731285275100512256
1120 completed at 22:44:40.222740
----------
1121 started at 22:44:40.222880. Tweet_id -> 731156023742988288
1121 completed at 22:44:41.122771
----------
1122 started at 22:44:41.122915. Tweet_id -> 730924654643314689
1122 completed at 22:44:41.863900
----------
1123 started at 22:44:41.864050. Tweet_id -> 730573383004487680
1123 completed at 22:44:42.723421
----------
1124 started at 22:44:42.723754. Tweet_id -> 730427201120833536
1124 completed at 22:44:43.644643
----------
1125 started at 22:44:43.645317. Tweet_id -> 730211855403241472
1125 completed at 22:44:44.677885
----------
1126 started at 22:44:44.678638. Tweet_id -> 730196704625098752
1126 completed at 22:44:45.619119
----------
1127 started at 22:44:45.619489. Tweet_id -> 729854734790754305
1127 completed at 22:44:46.393839
----------
1128 started at 22:44:46.394362. Tweet_id -> 729838605770891264
1128 completed at 22:44:47.232622
----------
1129 started at 22:44:47.233071. Tweet_id -> 729823566028484608
1129 completed at 22:44:48.655436
----------
1130 started at 22:44:48.655594. Tweet_id -> 729463711119904772
1130 completed at 22:44:49.848631
----------
1131 started at 22:44:49.848798. Tweet_id -> 729113531270991872
1131 completed at 22:44:50.662299
----------
1132 started at 22:44:50.662531. Tweet_id -> 728986383096946689
1132 completed at 22:44:51.532014
----------
1133 started at 22:44:51.532203. Tweet_id -> 728760639972315136
1133 completed at 22:44:52.253913
----------
1134 started at 22:44:52.255060. Tweet_id -> 728751179681943552
1134 completed at 22:44:52.989218
----------
1135 started at 22:44:52.989405. Tweet_id -> 728653952833728512
1135 completed at 22:44:53.727973
----------
1136 started at 22:44:53.728131. Tweet_id -> 728409960103686147
1136 completed at 22:44:54.459324
----------
1137 started at 22:44:54.459503. Tweet_id -> 728387165835677696
1137 completed at 22:44:55.263276
----------
1138 started at 22:44:55.264337. Tweet_id -> 728046963732717569
1138 completed at 22:44:56.127030
----------
1139 started at 22:44:56.127399. Tweet_id -> 728035342121635841
1139 completed at 22:44:56.857781
----------
1140 started at 22:44:56.858092. Tweet_id -> 728015554473250816
1140 completed at 22:44:57.779627
----------
1141 started at 22:44:57.779788. Tweet_id -> 727685679342333952
1141 completed at 22:44:58.546363
----------
1142 started at 22:44:58.546518. Tweet_id -> 727644517743104000
1142 completed at 22:44:59.274612
----------
1143 started at 22:44:59.274775. Tweet_id -> 727524757080539137
1143 completed at 22:45:00.023108
----------
1144 started at 22:45:00.023306. Tweet_id -> 727314416056803329
1144 completed at 22:45:00.914808
----------
1145 started at 22:45:00.915018. Tweet_id -> 727286334147182592
1145 completed at 22:45:01.699017
----------
1146 started at 22:45:01.699411. Tweet_id -> 727175381690781696
1146 completed at 22:45:02.444403
----------
1147 started at 22:45:02.444530. Tweet_id -> 727155742655025152
1147 completed at 22:45:03.239245
----------
1148 started at 22:45:03.239405. Tweet_id -> 726935089318363137
1148 completed at 22:45:03.976906
----------
1149 started at 22:45:03.977062. Tweet_id -> 726887082820554753
1149 completed at 22:45:04.842687
----------
1150 started at 22:45:04.842940. Tweet_id -> 726828223124897792
1150 completed at 22:45:05.716662
----------
1151 started at 22:45:05.716898. Tweet_id -> 726224900189511680
1151 completed at 22:45:06.437691
----------
1152 started at 22:45:06.437984. Tweet_id -> 725842289046749185
1152 completed at 22:45:07.168504
----------
1153 started at 22:45:07.168890. Tweet_id -> 725786712245440512
1153 completed at 22:45:08.020309
----------
1154 started at 22:45:08.021236. Tweet_id -> 725729321944506368
1154 completed at 22:45:08.788161
----------
1155 started at 22:45:08.789000. Tweet_id -> 725458796924002305
1155 completed at 22:45:09.668910
----------
1156 started at 22:45:09.669091. Tweet_id -> 724983749226668032
1156 completed at 22:45:10.474218
----------
1157 started at 22:45:10.474364. Tweet_id -> 724771698126512129
1157 completed at 22:45:11.311759
----------
1158 started at 22:45:11.312096. Tweet_id -> 724405726123311104
1158 completed at 22:45:12.052435
----------
1159 started at 22:45:12.052667. Tweet_id -> 724049859469295616
1159 completed at 22:45:12.928622
----------
1160 started at 22:45:12.929069. Tweet_id -> 724046343203856385
1160 completed at 22:45:13.678851
----------
1161 started at 22:45:13.679009. Tweet_id -> 724004602748780546
1161 completed at 22:45:14.496745
----------
1162 started at 22:45:14.496920. Tweet_id -> 723912936180330496
1162 completed at 22:45:15.356224
----------
1163 started at 22:45:15.357431. Tweet_id -> 723688335806480385
1163 completed at 22:45:16.279656
----------
1164 started at 22:45:16.280380. Tweet_id -> 723673163800948736
1164 completed at 22:45:17.630431
----------
1165 started at 22:45:17.630594. Tweet_id -> 723179728551723008
1165 completed at 22:45:18.519186
----------
1166 started at 22:45:18.519333. Tweet_id -> 722974582966214656
1166 completed at 22:45:19.381615
----------
1167 started at 22:45:19.383353. Tweet_id -> 722613351520608256
1167 completed at 22:45:20.115016
----------
1168 started at 22:45:20.115202. Tweet_id -> 721503162398597120
1168 completed at 22:45:20.930413
----------
1169 started at 22:45:20.930607. Tweet_id -> 721001180231503872
1169 completed at 22:45:21.700044
----------
1170 started at 22:45:21.700233. Tweet_id -> 720785406564900865
1170 completed at 22:45:22.596493
----------
1171 started at 22:45:22.596666. Tweet_id -> 720775346191278080
1171 completed at 22:45:23.581880
----------
1172 started at 22:45:23.582293. Tweet_id -> 720415127506415616
1172 completed at 22:45:24.445740
----------
1173 started at 22:45:24.445970. Tweet_id -> 720389942216527872
1173 completed at 22:45:25.426027
----------
1174 started at 22:45:25.426412. Tweet_id -> 720340705894408192
1174 completed at 22:45:26.266033
----------
1175 started at 22:45:26.266375. Tweet_id -> 720059472081784833
1175 completed at 22:45:27.379643
----------
1176 started at 22:45:27.381048. Tweet_id -> 720043174954147842
1176 completed at 22:45:28.406405
----------
1177 started at 22:45:28.406604. Tweet_id -> 719991154352222208
1177 completed at 22:45:29.155676
----------
1178 started at 22:45:29.156230. Tweet_id -> 719704490224398336
1178 completed at 22:45:30.029364
----------
1179 started at 22:45:30.029808. Tweet_id -> 719551379208073216
1179 completed at 22:45:30.871694
----------
1180 started at 22:45:30.872090. Tweet_id -> 719367763014393856
1180 completed at 22:45:31.804195
----------
1181 started at 22:45:31.804345. Tweet_id -> 719339463458033665
1181 completed at 22:45:32.590326
----------
1182 started at 22:45:32.590836. Tweet_id -> 719332531645071360
1182 completed at 22:45:33.389111
----------
1183 started at 22:45:33.389629. Tweet_id -> 718971898235854848
1183 completed at 22:45:34.466008
----------
1184 started at 22:45:34.466190. Tweet_id -> 718939241951195136
1184 completed at 22:45:35.385347
----------
1185 started at 22:45:35.385518. Tweet_id -> 718631497683582976
1185 completed at 22:45:36.285761
----------
1186 started at 22:45:36.286168. Tweet_id -> 718613305783398402
1186 completed at 22:45:37.117371
----------
1187 started at 22:45:37.117520. Tweet_id -> 718540630683709445
1187 completed at 22:45:37.902820
----------
1188 started at 22:45:37.903023. Tweet_id -> 718460005985447936
1188 completed at 22:45:38.645349
----------
1189 started at 22:45:38.645542. Tweet_id -> 718454725339934721
1189 completed at 22:45:39.570530
----------
1190 started at 22:45:39.570664. Tweet_id -> 718246886998687744
1190 completed at 22:45:40.422443
----------
1191 started at 22:45:40.422652. Tweet_id -> 718234618122661888
1191 completed at 22:45:41.299669
----------
1192 started at 22:45:41.299808. Tweet_id -> 717841801130979328
1192 completed at 22:45:42.112848
----------
1193 started at 22:45:42.112997. Tweet_id -> 717790033953034240
1193 completed at 22:45:42.889053
----------
1194 started at 22:45:42.889229. Tweet_id -> 717537687239008257
1194 completed at 22:45:43.630699
----------
1195 started at 22:45:43.631188. Tweet_id -> 717428917016076293
1195 completed at 22:45:44.373666
----------
1196 started at 22:45:44.373811. Tweet_id -> 717421804990701568
1196 completed at 22:45:45.131704
----------
1197 started at 22:45:45.131978. Tweet_id -> 717047459982213120
1197 completed at 22:45:45.901739
----------
1198 started at 22:45:45.901898. Tweet_id -> 717009362452090881
1198 completed at 22:45:46.753423
----------
1199 started at 22:45:46.753827. Tweet_id -> 716802964044845056
1199 completed at 22:45:47.630827
----------
1200 started at 22:45:47.631003. Tweet_id -> 716791146589110272
1200 completed at 22:45:48.399944
----------
1201 started at 22:45:48.400101. Tweet_id -> 716730379797970944
1201 completed at 22:45:49.181958
----------
1202 started at 22:45:49.182454. Tweet_id -> 716447146686459905
1202 completed at 22:45:49.938766
----------
1203 started at 22:45:49.938974. Tweet_id -> 716439118184652801
1203 completed at 22:45:50.889165
----------
1204 started at 22:45:50.889341. Tweet_id -> 716285507865542656
1204 completed at 22:45:51.758688
----------
1205 started at 22:45:51.758879. Tweet_id -> 716080869887381504
1205 completed at 22:45:52.678243
----------
1206 started at 22:45:52.678431. Tweet_id -> 715928423106027520
1206 completed at 22:45:53.457623
----------
1207 started at 22:45:53.457823. Tweet_id -> 715758151270801409
1207 completed at 22:45:54.194206
----------
1208 started at 22:45:54.194656. Tweet_id -> 715733265223708672
1208 completed at 22:45:55.023253
----------
1209 started at 22:45:55.023415. Tweet_id -> 715704790270025728
1209 completed at 22:45:55.852202
----------
1210 started at 22:45:55.852344. Tweet_id -> 715696743237730304
1210 completed at 22:45:56.661825
----------
1211 started at 22:45:56.662038. Tweet_id -> 715680795826982913
1211 completed at 22:45:57.407117
----------
1212 started at 22:45:57.407271. Tweet_id -> 715360349751484417
1212 completed at 22:45:58.273454
----------
1213 started at 22:45:58.273628. Tweet_id -> 715342466308784130
1213 completed at 22:45:59.122270
----------
1214 started at 22:45:59.122995. Tweet_id -> 715220193576927233
1214 completed at 22:45:59.880635
----------
1215 started at 22:45:59.881475. Tweet_id -> 715200624753819648
1215 completed at 22:46:00.681538
----------
1216 started at 22:46:00.682041. Tweet_id -> 715009755312439296
1216 completed at 22:46:01.439193
----------
1217 started at 22:46:01.439399. Tweet_id -> 714982300363173890
1217 completed at 22:46:02.295563
----------
1218 started at 22:46:02.295769. Tweet_id -> 714962719905021952
1218 completed at 22:46:03.241927
----------
1219 started at 22:46:03.242127. Tweet_id -> 714957620017307648
1219 completed at 22:46:04.072609
----------
1220 started at 22:46:04.072816. Tweet_id -> 714631576617938945
1220 completed at 22:46:04.872294
----------
1221 started at 22:46:04.872504. Tweet_id -> 714606013974974464
1221 completed at 22:46:05.700543
----------
1222 started at 22:46:05.700739. Tweet_id -> 714485234495041536
1222 completed at 22:46:06.459311
----------
1223 started at 22:46:06.459490. Tweet_id -> 714258258790387713
1223 completed at 22:46:07.230781
----------
1224 started at 22:46:07.232410. Tweet_id -> 714251586676113411
1224 completed at 22:46:08.140395
----------
1225 started at 22:46:08.140627. Tweet_id -> 714214115368108032
1225 completed at 22:46:08.950607
----------
1226 started at 22:46:08.950797. Tweet_id -> 714141408463036416
1226 completed at 22:46:09.717588
----------
1227 started at 22:46:09.717789. Tweet_id -> 713919462244790272
1227 completed at 22:46:10.478619
----------
1228 started at 22:46:10.478846. Tweet_id -> 713909862279876608
1228 completed at 22:46:11.442952
----------
1229 started at 22:46:11.443093. Tweet_id -> 713900603437621249
1229 completed at 22:46:12.474357
----------
1230 started at 22:46:12.474834. Tweet_id -> 713761197720473600
1230 completed at 22:46:13.269693
----------
1231 started at 22:46:13.269849. Tweet_id -> 713411074226274305
1231 completed at 22:46:14.036658
----------
1232 started at 22:46:14.036827. Tweet_id -> 713177543487135744
1232 completed at 22:46:14.973845
----------
1233 started at 22:46:14.974027. Tweet_id -> 713175907180089344
1233 completed at 22:46:15.984107
----------
1234 started at 22:46:15.984275. Tweet_id -> 712809025985978368
1234 completed at 22:46:17.171824
----------
1235 started at 22:46:17.172538. Tweet_id -> 712717840512598017
1235 completed at 22:46:18.318547
----------
1236 started at 22:46:18.318787. Tweet_id -> 712668654853337088
1236 completed at 22:46:19.346371
----------
1237 started at 22:46:19.346721. Tweet_id -> 712438159032893441
1237 completed at 22:46:20.499308
----------
1238 started at 22:46:20.499445. Tweet_id -> 712309440758808576
1238 completed at 22:46:21.607547
----------
1239 started at 22:46:21.608250. Tweet_id -> 712097430750289920
1239 completed at 22:46:22.447088
----------
1240 started at 22:46:22.447506. Tweet_id -> 712092745624633345
1240 completed at 22:46:23.226857
----------
1241 started at 22:46:23.227003. Tweet_id -> 712085617388212225
1241 completed at 22:46:24.123649
----------
1242 started at 22:46:24.123885. Tweet_id -> 712065007010385924
1242 completed at 22:46:25.049056
----------
1243 started at 22:46:25.049230. Tweet_id -> 711998809858043904
1243 completed at 22:46:25.885356
----------
1244 started at 22:46:25.885551. Tweet_id -> 711968124745228288
1244 completed at 22:46:26.807384
----------
1245 started at 22:46:26.807600. Tweet_id -> 711743778164514816
1245 completed at 22:46:27.595632
----------
1246 started at 22:46:27.595767. Tweet_id -> 711732680602345472
1246 completed at 22:46:28.445798
----------
1247 started at 22:46:28.445959. Tweet_id -> 711694788429553666
1247 completed at 22:46:29.282398
----------
1248 started at 22:46:29.282643. Tweet_id -> 711652651650457602
1248 completed at 22:46:30.084184
----------
1249 started at 22:46:30.084373. Tweet_id -> 711363825979756544
1249 completed at 22:46:30.917935
----------
1250 started at 22:46:30.918134. Tweet_id -> 711306686208872448
1250 completed at 22:46:31.920873
----------
1251 started at 22:46:31.921030. Tweet_id -> 711008018775851008
1251 completed at 22:46:32.838254
----------
1252 started at 22:46:32.838403. Tweet_id -> 710997087345876993
1252 completed at 22:46:33.703462
----------
1253 started at 22:46:33.704162. Tweet_id -> 710844581445812225
1253 completed at 22:46:34.579125
----------
1254 started at 22:46:34.579274. Tweet_id -> 710833117892898816
1254 completed at 22:46:35.395625
----------
1255 started at 22:46:35.395788. Tweet_id -> 710658690886586372
1255 completed at 22:46:36.446381
----------
1256 started at 22:46:36.447094. Tweet_id -> 710609963652087808
1256 completed at 22:46:37.330621
----------
1257 started at 22:46:37.330779. Tweet_id -> 710588934686908417
1257 completed at 22:46:38.159665
----------
1258 started at 22:46:38.160182. Tweet_id -> 710296729921429505
1258 completed at 22:46:39.023527
----------
1259 started at 22:46:39.024104. Tweet_id -> 710283270106132480
1259 completed at 22:46:39.903117
----------
1260 started at 22:46:39.903312. Tweet_id -> 710272297844797440
1260 completed at 22:46:40.724939
----------
1261 started at 22:46:40.725117. Tweet_id -> 710269109699739648
1261 completed at 22:46:41.650532
----------
1262 started at 22:46:41.650681. Tweet_id -> 710153181850935296
1262 completed at 22:46:42.419341
----------
1263 started at 22:46:42.419512. Tweet_id -> 710140971284037632
1263 completed at 22:46:43.344413
----------
1264 started at 22:46:43.344566. Tweet_id -> 710117014656950272
1264 completed at 22:46:44.211126
----------
1265 started at 22:46:44.211313. Tweet_id -> 709918798883774466
1265 completed at 22:46:45.003081
----------
1266 started at 22:46:45.003287. Tweet_id -> 709901256215666688
1266 completed at 22:46:45.850996
----------
1267 started at 22:46:45.851176. Tweet_id -> 709852847387627521
1267 completed at 22:46:46.642479
----------
1268 started at 22:46:46.642627. Tweet_id -> 709566166965075968
1268 completed at 22:46:47.413778
----------
1269 started at 22:46:47.414162. Tweet_id -> 709556954897764353
1269 completed at 22:46:48.225832
----------
1270 started at 22:46:48.226049. Tweet_id -> 709519240576036864
1270 completed at 22:46:49.220450
----------
1271 started at 22:46:49.220936. Tweet_id -> 709449600415961088
1271 completed at 22:46:50.005546
----------
1272 started at 22:46:50.005719. Tweet_id -> 709409458133323776
1272 completed at 22:46:50.826847
----------
1273 started at 22:46:50.827052. Tweet_id -> 709225125749587968
1273 completed at 22:46:51.626452
----------
1274 started at 22:46:51.626573. Tweet_id -> 709207347839836162
1274 completed at 22:46:52.386783
----------
1275 started at 22:46:52.387253. Tweet_id -> 709198395643068416
1275 completed at 22:46:53.159872
----------
1276 started at 22:46:53.160393. Tweet_id -> 709179584944730112
1276 completed at 22:46:53.915237
----------
1277 started at 22:46:53.915802. Tweet_id -> 709158332880297985
1277 completed at 22:46:54.778830
----------
1278 started at 22:46:54.779262. Tweet_id -> 709042156699303936
1278 completed at 22:46:55.579796
----------
1279 started at 22:46:55.579949. Tweet_id -> 708853462201716736
1279 completed at 22:46:56.336880
----------
1280 started at 22:46:56.337070. Tweet_id -> 708845821941387268
1280 completed at 22:46:57.118783
----------
1281 started at 22:46:57.119152. Tweet_id -> 708834316713893888
1281 completed at 22:46:58.049494
----------
1282 started at 22:46:58.049680. Tweet_id -> 708810915978854401
1282 completed at 22:46:58.881461
----------
1283 started at 22:46:58.881649. Tweet_id -> 708738143638450176
1283 completed at 22:46:59.707956
----------
1284 started at 22:46:59.708131. Tweet_id -> 708711088997666817
1284 completed at 22:47:00.592964
----------
1285 started at 22:47:00.593093. Tweet_id -> 708479650088034305
1285 completed at 22:47:01.425051
----------
1286 started at 22:47:01.425202. Tweet_id -> 708469915515297792
1286 completed at 22:47:02.239846
----------
1287 started at 22:47:02.240026. Tweet_id -> 708400866336894977
1287 completed at 22:47:03.094256
----------
1288 started at 22:47:03.095026. Tweet_id -> 708356463048204288
1288 completed at 22:47:04.118327
----------
1289 started at 22:47:04.118507. Tweet_id -> 708349470027751425
1289 completed at 22:47:04.926445
----------
1290 started at 22:47:04.926616. Tweet_id -> 708149363256774660
1290 completed at 22:47:05.939178
----------
1291 started at 22:47:05.940010. Tweet_id -> 708130923141795840
1291 completed at 22:47:06.752151
----------
1292 started at 22:47:06.752403. Tweet_id -> 708119489313951744
1292 completed at 22:47:07.675635
----------
1293 started at 22:47:07.675773. Tweet_id -> 708109389455101952
1293 completed at 22:47:08.470027
----------
1294 started at 22:47:08.470410. Tweet_id -> 708026248782585858
1294 completed at 22:47:09.426828
----------
1295 started at 22:47:09.426990. Tweet_id -> 707995814724026368
1295 completed at 22:47:10.250994
----------
1296 started at 22:47:10.251189. Tweet_id -> 707983188426153984
1296 completed at 22:47:11.113696
----------
1297 started at 22:47:11.113845. Tweet_id -> 707969809498152960
1297 completed at 22:47:11.909864
----------
1298 started at 22:47:11.910058. Tweet_id -> 707776935007539200
1298 completed at 22:47:12.709804
----------
1299 started at 22:47:12.709972. Tweet_id -> 707741517457260545
1299 completed at 22:47:13.516063
----------
1300 started at 22:47:13.516241. Tweet_id -> 707738799544082433
1300 completed at 22:47:14.317776
----------
1301 started at 22:47:14.318392. Tweet_id -> 707693576495472641
1301 completed at 22:47:15.436983
----------
1302 started at 22:47:15.437163. Tweet_id -> 707629649552134146
1302 completed at 22:47:16.235826
----------
1303 started at 22:47:16.236547. Tweet_id -> 707610948723478529
1303 completed at 22:47:17.173570
----------
1304 started at 22:47:17.174269. Tweet_id -> 707420581654872064
1304 completed at 22:47:18.188198
----------
1305 started at 22:47:18.188749. Tweet_id -> 707411934438625280
1305 completed at 22:47:18.983638
----------
1306 started at 22:47:18.984240. Tweet_id -> 707387676719185920
1306 completed at 22:47:19.774162
----------
1307 started at 22:47:19.774333. Tweet_id -> 707377100785885184
1307 completed at 22:47:20.677823
----------
1308 started at 22:47:20.677984. Tweet_id -> 707315916783140866
1308 completed at 22:47:21.453808
----------
1309 started at 22:47:21.453961. Tweet_id -> 707297311098011648
1309 completed at 22:47:22.434767
----------
1310 started at 22:47:22.434997. Tweet_id -> 707059547140169728
1310 completed at 22:47:23.238095
----------
1311 started at 22:47:23.238283. Tweet_id -> 707038192327901184
1311 completed at 22:47:24.016032
----------
1312 started at 22:47:24.016185. Tweet_id -> 707021089608753152
1312 completed at 22:47:24.808632
----------
1313 started at 22:47:24.808834. Tweet_id -> 707014260413456384
1313 completed at 22:47:25.746609
----------
1314 started at 22:47:25.747809. Tweet_id -> 706904523814649856
1314 completed at 22:47:26.560704
----------
1315 started at 22:47:26.560860. Tweet_id -> 706901761596989440
1315 completed at 22:47:27.373738
----------
1316 started at 22:47:27.373947. Tweet_id -> 706681918348251136
1316 completed at 22:47:28.410133
----------
1317 started at 22:47:28.410277. Tweet_id -> 706644897839910912
1317 completed at 22:47:29.216547
----------
1318 started at 22:47:29.216707. Tweet_id -> 706593038911545345
1318 completed at 22:47:30.017351
----------
1319 started at 22:47:30.017507. Tweet_id -> 706538006853918722
1319 completed at 22:47:30.916965
----------
1320 started at 22:47:30.917125. Tweet_id -> 706516534877929472
1320 completed at 22:47:31.688359
----------
1321 started at 22:47:31.688500. Tweet_id -> 706346369204748288
1321 completed at 22:47:32.523807
----------
1322 started at 22:47:32.523970. Tweet_id -> 706310011488698368
1322 completed at 22:47:33.934948
----------
1323 started at 22:47:33.936161. Tweet_id -> 706291001778950144
1323 completed at 22:47:35.158882
----------
1324 started at 22:47:35.159895. Tweet_id -> 706265994973601792
1324 completed at 22:47:36.423387
----------
1325 started at 22:47:36.423633. Tweet_id -> 706169069255446529
1325 completed at 22:47:37.275330
----------
1326 started at 22:47:37.275509. Tweet_id -> 706166467411222528
1326 completed at 22:47:38.177750
----------
1327 started at 22:47:38.177906. Tweet_id -> 706153300320784384
1327 completed at 22:47:39.275344
----------
1328 started at 22:47:39.275651. Tweet_id -> 705975130514706432
1328 completed at 22:47:40.625993
----------
1329 started at 22:47:40.626156. Tweet_id -> 705970349788291072
1329 completed at 22:47:41.550236
----------
1330 started at 22:47:41.550552. Tweet_id -> 705898680587526145
1330 completed at 22:47:42.382639
----------
1331 started at 22:47:42.382852. Tweet_id -> 705786532653883392
1331 completed at 22:47:43.402394
----------
1332 started at 22:47:43.402602. Tweet_id -> 705591895322394625
1332 completed at 22:47:44.205830
----------
1333 started at 22:47:44.205982. Tweet_id -> 705475953783398401
1333 completed at 22:47:45.028407
----------
1334 started at 22:47:45.028550. Tweet_id -> 705442520700944385
1334 completed at 22:47:45.892583
----------
1335 started at 22:47:45.893073. Tweet_id -> 705428427625635840
1335 completed at 22:47:46.811258
----------
1336 started at 22:47:46.811408. Tweet_id -> 705239209544720384
1336 completed at 22:47:47.642523
----------
1337 started at 22:47:47.642666. Tweet_id -> 705223444686888960
1337 completed at 22:47:48.440597
----------
1338 started at 22:47:48.441058. Tweet_id -> 705102439679201280
1338 completed at 22:47:49.258260
----------
1339 started at 22:47:49.258435. Tweet_id -> 705066031337840642
1339 completed at 22:47:50.097714
----------
1340 started at 22:47:50.097863. Tweet_id -> 704871453724954624
1340 completed at 22:47:50.901210
----------
1341 started at 22:47:50.901582. Tweet_id -> 704859558691414016
1341 completed at 22:47:51.711439
----------
1342 started at 22:47:51.711566. Tweet_id -> 704847917308362754
1342 completed at 22:47:52.516215
----------
1343 started at 22:47:52.516370. Tweet_id -> 704819833553219584
1343 completed at 22:47:53.382677
----------
1344 started at 22:47:53.382878. Tweet_id -> 704761120771465216
1344 completed at 22:47:54.180825
----------
1345 started at 22:47:54.180981. Tweet_id -> 704499785726889984
1345 completed at 22:47:55.092654
----------
1346 started at 22:47:55.092807. Tweet_id -> 704491224099647488
1346 completed at 22:47:55.988616
----------
1347 started at 22:47:55.988793. Tweet_id -> 704480331685040129
1347 completed at 22:47:56.968140
----------
1348 started at 22:47:56.968353. Tweet_id -> 704364645503647744
1348 completed at 22:47:57.854287
----------
1349 started at 22:47:57.854516. Tweet_id -> 704347321748819968
1349 completed at 22:47:58.722154
----------
1350 started at 22:47:58.722318. Tweet_id -> 704134088924532736
1350 completed at 22:47:59.603706
----------
1351 started at 22:47:59.603852. Tweet_id -> 704113298707505153
1351 completed at 22:48:00.425437
----------
1352 started at 22:48:00.425607. Tweet_id -> 704054845121142784
1352 completed at 22:48:01.226182
----------
1353 started at 22:48:01.226326. Tweet_id -> 703774238772166656
1353 completed at 22:48:02.343768
----------
1354 started at 22:48:02.344144. Tweet_id -> 703769065844768768
1354 completed at 22:48:03.413550
----------
1355 started at 22:48:03.413762. Tweet_id -> 703631701117943808
1355 completed at 22:48:04.338995
----------
1356 started at 22:48:04.339165. Tweet_id -> 703611486317502464
1356 completed at 22:48:05.165683
----------
1357 started at 22:48:05.165897. Tweet_id -> 703425003149250560
1357 completed at 22:48:05.999119
----------
1358 started at 22:48:05.999296. Tweet_id -> 703407252292673536
1358 completed at 22:48:06.848405
----------
1359 started at 22:48:06.848608. Tweet_id -> 703382836347330562
1359 completed at 22:48:07.743318
----------
1360 started at 22:48:07.743498. Tweet_id -> 703356393781329922
1360 completed at 22:48:08.581462
----------
1361 started at 22:48:08.581648. Tweet_id -> 703268521220972544
1361 completed at 22:48:09.456776
----------
1362 started at 22:48:09.456961. Tweet_id -> 703079050210877440
1362 completed at 22:48:10.377167
----------
1363 started at 22:48:10.377336. Tweet_id -> 703041949650034688
1363 completed at 22:48:11.204006
----------
1364 started at 22:48:11.204275. Tweet_id -> 702932127499816960
1364 completed at 22:48:12.050737
----------
1365 started at 22:48:12.050922. Tweet_id -> 702899151802126337
1365 completed at 22:48:13.061683
----------
1366 started at 22:48:13.061834. Tweet_id -> 702684942141153280
1366 completed at 22:48:13.949241
----------
1367 started at 22:48:13.949430. Tweet_id -> 702671118226825216
1367 completed at 22:48:14.789677
----------
1368 started at 22:48:14.789884. Tweet_id -> 702598099714314240
1368 completed at 22:48:15.723421
----------
1369 started at 22:48:15.723846. Tweet_id -> 702539513671897089
1369 completed at 22:48:16.606750
----------
1370 started at 22:48:16.607376. Tweet_id -> 702332542343577600
1370 completed at 22:48:17.536758
----------
1371 started at 22:48:17.536949. Tweet_id -> 702321140488925184
1371 completed at 22:48:19.675821
----------
1372 started at 22:48:19.675975. Tweet_id -> 702276748847800320
1372 completed at 22:48:20.507551
----------
1373 started at 22:48:20.507706. Tweet_id -> 702217446468493312
1373 completed at 22:48:21.405180
----------
1374 started at 22:48:21.405766. Tweet_id -> 701981390485725185
1374 completed at 22:48:22.394742
----------
1375 started at 22:48:22.394915. Tweet_id -> 701952816642965504
1375 completed at 22:48:23.256935
----------
1376 started at 22:48:23.257065. Tweet_id -> 701889187134500865
1376 completed at 22:48:24.089599
----------
1377 started at 22:48:24.089756. Tweet_id -> 701805642395348998
1377 completed at 22:48:25.001093
----------
1378 started at 22:48:25.001309. Tweet_id -> 701601587219795968
1378 completed at 22:48:25.857097
----------
1379 started at 22:48:25.857310. Tweet_id -> 701570477911896070
1379 completed at 22:48:26.747991
----------
1380 started at 22:48:26.748140. Tweet_id -> 701545186879471618
1380 completed at 22:48:27.559348
----------
1381 started at 22:48:27.559548. Tweet_id -> 701214700881756160
1381 completed at 22:48:28.633763
----------
1382 started at 22:48:28.633962. Tweet_id -> 700890391244103680
1382 completed at 22:48:29.448558
----------
1383 started at 22:48:29.448972. Tweet_id -> 700864154249383937
1383 completed at 22:48:30.360984
----------
1384 started at 22:48:30.361124. Tweet_id -> 700847567345688576
1384 completed at 22:48:31.169614
----------
1385 started at 22:48:31.170174. Tweet_id -> 700796979434098688
1385 completed at 22:48:32.074345
----------
1386 started at 22:48:32.075325. Tweet_id -> 700747788515020802
1386 completed at 22:48:32.887275
----------
1387 started at 22:48:32.887450. Tweet_id -> 700518061187723268
1387 completed at 22:48:33.714099
----------
1388 started at 22:48:33.714501. Tweet_id -> 700505138482569216
1388 completed at 22:48:34.647249
----------
1389 started at 22:48:34.647468. Tweet_id -> 700462010979500032
1389 completed at 22:48:35.511036
----------
1390 started at 22:48:35.511195. Tweet_id -> 700167517596164096
1390 completed at 22:48:36.515727
----------
1391 started at 22:48:36.515881. Tweet_id -> 700151421916807169
1391 completed at 22:48:37.460691
----------
1392 started at 22:48:37.460889. Tweet_id -> 700143752053182464
1392 completed at 22:48:38.369467
----------
1393 started at 22:48:38.369611. Tweet_id -> 700062718104104960
1393 completed at 22:48:39.177956
----------
1394 started at 22:48:39.178101. Tweet_id -> 700029284593901568
1394 completed at 22:48:40.008119
----------
1395 started at 22:48:40.008276. Tweet_id -> 700002074055016451
1395 completed at 22:48:40.877893
----------
1396 started at 22:48:40.878061. Tweet_id -> 699801817392291840
1396 completed at 22:48:41.776373
----------
1397 started at 22:48:41.776521. Tweet_id -> 699788877217865730
1397 completed at 22:48:42.622533
----------
1398 started at 22:48:42.622708. Tweet_id -> 699779630832685056
1398 completed at 22:48:43.543201
----------
1399 started at 22:48:43.543360. Tweet_id -> 699775878809702401
1399 completed at 22:48:44.395452
----------
1400 started at 22:48:44.395628. Tweet_id -> 699691744225525762
1400 completed at 22:48:45.278365
----------
1401 started at 22:48:45.278498. Tweet_id -> 699446877801091073
1401 completed at 22:48:46.088384
----------
1402 started at 22:48:46.088563. Tweet_id -> 699434518667751424
1402 completed at 22:48:51.253936
----------
1403 started at 22:48:51.254118. Tweet_id -> 699423671849451520
1403 completed at 22:48:52.121705
----------
1404 started at 22:48:52.121856. Tweet_id -> 699413908797464576
1404 completed at 22:48:53.064063
----------
1405 started at 22:48:53.064205. Tweet_id -> 699370870310113280
1405 completed at 22:48:53.989518
----------
1406 started at 22:48:53.989674. Tweet_id -> 699323444782047232
1406 completed at 22:48:54.929721
----------
1407 started at 22:48:54.929849. Tweet_id -> 699088579889332224
1407 completed at 22:48:55.854511
----------
1408 started at 22:48:55.854656. Tweet_id -> 699079609774645248
1408 completed at 22:48:56.758429
----------
1409 started at 22:48:56.758612. Tweet_id -> 699072405256409088
1409 completed at 22:48:57.606446
----------
1410 started at 22:48:57.606645. Tweet_id -> 699060279947165696
1410 completed at 22:48:58.490255
----------
1411 started at 22:48:58.490975. Tweet_id -> 699036661657767936
1411 completed at 22:48:59.316385
----------
1412 started at 22:48:59.316566. Tweet_id -> 698989035503689728
1412 completed at 22:49:00.246021
----------
1413 started at 22:49:00.246239. Tweet_id -> 698953797952008193
1413 completed at 22:49:01.169437
----------
1414 started at 22:49:01.169607. Tweet_id -> 698907974262222848
1414 completed at 22:49:01.982706
----------
1415 started at 22:49:01.982921. Tweet_id -> 698710712454139905
1415 completed at 22:49:03.007492
----------
1416 started at 22:49:03.007664. Tweet_id -> 698703483621523456
1416 completed at 22:49:03.890452
----------
1417 started at 22:49:03.890593. Tweet_id -> 698635131305795584
1417 completed at 22:49:04.747673
----------
1418 started at 22:49:04.747826. Tweet_id -> 698549713696649216
1418 completed at 22:49:05.660430
----------
1419 started at 22:49:05.660610. Tweet_id -> 698355670425473025
1419 completed at 22:49:06.679946
----------
1420 started at 22:49:06.680408. Tweet_id -> 698342080612007937
1420 completed at 22:49:07.603396
----------
1421 started at 22:49:07.605366. Tweet_id -> 698262614669991936
1421 completed at 22:49:08.547817
----------
1422 started at 22:49:08.547981. Tweet_id -> 698195409219559425
1422 completed at 22:49:09.451678
----------
1423 started at 22:49:09.451826. Tweet_id -> 698178924120031232
1423 completed at 22:49:10.360804
----------
1424 started at 22:49:10.361015. Tweet_id -> 697995514407682048
1424 completed at 22:49:11.178983
----------
1425 started at 22:49:11.179165. Tweet_id -> 697990423684476929
1425 completed at 22:49:12.039327
----------
1426 started at 22:49:12.039463. Tweet_id -> 697943111201378304
1426 completed at 22:49:12.929673
----------
1427 started at 22:49:12.929815. Tweet_id -> 697881462549430272
1427 completed at 22:49:13.870159
----------
1428 started at 22:49:13.870302. Tweet_id -> 697630435728322560
1428 completed at 22:49:14.697178
----------
1429 started at 22:49:14.697349. Tweet_id -> 697616773278015490
1429 completed at 22:49:15.527190
----------
1430 started at 22:49:15.527340. Tweet_id -> 697596423848730625
1430 completed at 22:49:16.427915
----------
1431 started at 22:49:16.428138. Tweet_id -> 697575480820686848
1431 completed at 22:49:17.295028
----------
1432 started at 22:49:17.295634. Tweet_id -> 697516214579523584
1432 completed at 22:49:18.295665
----------
1433 started at 22:49:18.295908. Tweet_id -> 697482927769255936
1433 completed at 22:49:19.120904
----------
1434 started at 22:49:19.121616. Tweet_id -> 697463031882764288
1434 completed at 22:49:19.987981
----------
1435 started at 22:49:19.988634. Tweet_id -> 697270446429966336
1435 completed at 22:49:20.845572
----------
1436 started at 22:49:20.845698. Tweet_id -> 697259378236399616
1436 completed at 22:49:21.849419
----------
1437 started at 22:49:21.850017. Tweet_id -> 697255105972801536
1437 completed at 22:49:22.967387
----------
1438 started at 22:49:22.967556. Tweet_id -> 697242256848379904
1438 completed at 22:49:24.180720
----------
1439 started at 22:49:24.180964. Tweet_id -> 696900204696625153
1439 completed at 22:49:25.273304
----------
1440 started at 22:49:25.273662. Tweet_id -> 696894894812565505
1440 completed at 22:49:26.369280
----------
1441 started at 22:49:26.369472. Tweet_id -> 696886256886657024
1441 completed at 22:49:27.374809
----------
1442 started at 22:49:27.375000. Tweet_id -> 696877980375769088
1442 completed at 22:49:28.583957
----------
1443 started at 22:49:28.584138. Tweet_id -> 696754882863349760
1443 completed at 22:49:29.419872
----------
1444 started at 22:49:29.420003. Tweet_id -> 696744641916489729
1444 completed at 22:49:30.298027
----------
1445 started at 22:49:30.298462. Tweet_id -> 696713835009417216
1445 completed at 22:49:31.129408
----------
1446 started at 22:49:31.129715. Tweet_id -> 696518437233913856
1446 completed at 22:49:32.002047
----------
1447 started at 22:49:32.002212. Tweet_id -> 696490539101908992
1447 completed at 22:49:32.869619
----------
1448 started at 22:49:32.869795. Tweet_id -> 696488710901260288
1448 completed at 22:49:33.712647
----------
1449 started at 22:49:33.713196. Tweet_id -> 696405997980676096
1449 completed at 22:49:34.660509
----------
1450 started at 22:49:34.660665. Tweet_id -> 696100768806522880
1450 completed at 22:49:35.574909
----------
1451 started at 22:49:35.575605. Tweet_id -> 695816827381944320
1451 completed at 22:49:36.535586
----------
1452 started at 22:49:36.535788. Tweet_id -> 695794761660297217
1452 completed at 22:49:37.553503
----------
1453 started at 22:49:37.553715. Tweet_id -> 695767669421768709
1453 completed at 22:49:38.455760
----------
1454 started at 22:49:38.455911. Tweet_id -> 695629776980148225
1454 completed at 22:49:39.366235
----------
1455 started at 22:49:39.366421. Tweet_id -> 695446424020918272
1455 completed at 22:49:40.291547
----------
1456 started at 22:49:40.291711. Tweet_id -> 695409464418041856
1456 completed at 22:49:41.139481
----------
1457 started at 22:49:41.139642. Tweet_id -> 695314793360662529
1457 completed at 22:49:41.978234
----------
1458 started at 22:49:41.978373. Tweet_id -> 695095422348574720
1458 completed at 22:49:42.807416
----------
1459 started at 22:49:42.807577. Tweet_id -> 695074328191332352
1459 completed at 22:49:43.660207
----------
1460 started at 22:49:43.660871. Tweet_id -> 695064344191721472
1460 completed at 22:49:44.584384
----------
1461 started at 22:49:44.584550. Tweet_id -> 695051054296211456
1461 completed at 22:49:45.527313
----------
1462 started at 22:49:45.527485. Tweet_id -> 694925794720792577
1462 completed at 22:49:46.413651
----------
1463 started at 22:49:46.413989. Tweet_id -> 694905863685980160
1463 completed at 22:49:47.253261
----------
1464 started at 22:49:47.253461. Tweet_id -> 694669722378485760
1464 completed at 22:49:48.179381
----------
1465 started at 22:49:48.179610. Tweet_id -> 694356675654983680
1465 completed at 22:49:49.036388
----------
1466 started at 22:49:49.036548. Tweet_id -> 694352839993344000
1466 completed at 22:49:50.025353
----------
1467 started at 22:49:50.025521. Tweet_id -> 694342028726001664
1467 completed at 22:49:50.883386
----------
1468 started at 22:49:50.883603. Tweet_id -> 694329668942569472
1468 completed at 22:49:51.761507
----------
1469 started at 22:49:51.761694. Tweet_id -> 694206574471057408
1469 completed at 22:49:52.678679
----------
1470 started at 22:49:52.678833. Tweet_id -> 694183373896572928
1470 completed at 22:49:53.553670
----------
1471 started at 22:49:53.553910. Tweet_id -> 694001791655137281
1471 completed at 22:49:54.447123
----------
1472 started at 22:49:54.447334. Tweet_id -> 693993230313091072
1472 completed at 22:49:55.290096
----------
1473 started at 22:49:55.290250. Tweet_id -> 693942351086120961
1473 completed at 22:49:56.128892
----------
1474 started at 22:49:56.129062. Tweet_id -> 693647888581312512
1474 completed at 22:49:57.130118
----------
1475 started at 22:49:57.130885. Tweet_id -> 693644216740769793
1475 completed at 22:49:58.264338
----------
1476 started at 22:49:58.265290. Tweet_id -> 693642232151285760
1476 completed at 22:49:59.109988
----------
1477 started at 22:49:59.110166. Tweet_id -> 693629975228977152
1477 completed at 22:50:00.068426
----------
1478 started at 22:50:00.068610. Tweet_id -> 693622659251335168
1478 completed at 22:50:00.995859
----------
1479 started at 22:50:00.996458. Tweet_id -> 693590843962331137
1479 completed at 22:50:01.908619
----------
1480 started at 22:50:01.908920. Tweet_id -> 693582294167244802
1480 completed at 22:50:02.737085
----------
1481 started at 22:50:02.737260. Tweet_id -> 693486665285931008
1481 completed at 22:50:03.641425
----------
1482 started at 22:50:03.641847. Tweet_id -> 693280720173801472
1482 completed at 22:50:04.527443
----------
1483 started at 22:50:04.527630. Tweet_id -> 693267061318012928
1483 completed at 22:50:05.357265
----------
1484 started at 22:50:05.357440. Tweet_id -> 693262851218264065
1484 completed at 22:50:06.262553
----------
1485 started at 22:50:06.262726. Tweet_id -> 693231807727280129
1485 completed at 22:50:07.144567
----------
1486 started at 22:50:07.144749. Tweet_id -> 693155686491000832
1486 completed at 22:50:08.073835
----------
1487 started at 22:50:08.073992. Tweet_id -> 693109034023534592
1487 completed at 22:50:08.983831
----------
1488 started at 22:50:08.983984. Tweet_id -> 693095443459342336
1488 completed at 22:50:09.826004
----------
1489 started at 22:50:09.826239. Tweet_id -> 692919143163629568
1489 completed at 22:50:10.686464
----------
1490 started at 22:50:10.686612. Tweet_id -> 692905862751522816
1490 completed at 22:50:11.741797
----------
1491 started at 22:50:11.742004. Tweet_id -> 692901601640583168
1491 completed at 22:50:12.868320
----------
1492 started at 22:50:12.868463. Tweet_id -> 692894228850999298
1492 completed at 22:50:13.719555
----------
1493 started at 22:50:13.719826. Tweet_id -> 692828166163931137
1493 completed at 22:50:14.575133
----------
1494 started at 22:50:14.575274. Tweet_id -> 692752401762250755
1494 completed at 22:50:15.440032
----------
1495 started at 22:50:15.440283. Tweet_id -> 692568918515392513
1495 completed at 22:50:16.341899
----------
1496 started at 22:50:16.342148. Tweet_id -> 692535307825213440
1496 completed at 22:50:17.377835
----------
1497 started at 22:50:17.378042. Tweet_id -> 692530551048294401
1497 completed at 22:50:18.236655
----------
1498 started at 22:50:18.237691. Tweet_id -> 692423280028966913
1498 completed at 22:50:19.223943
----------
1499 started at 22:50:19.224319. Tweet_id -> 692417313023332352
1499 completed at 22:50:20.139538
----------
1500 started at 22:50:20.139700. Tweet_id -> 692187005137076224
1500 completed at 22:50:21.064982
----------
1501 started at 22:50:21.065121. Tweet_id -> 692158366030913536
1501 completed at 22:50:21.991690
----------
1502 started at 22:50:21.991823. Tweet_id -> 692142790915014657
1502 completed at 22:50:22.909146
----------
1503 started at 22:50:22.909307. Tweet_id -> 692041934689402880
1503 completed at 22:50:23.751189
----------
1504 started at 22:50:23.751352. Tweet_id -> 692017291282812928
1504 completed at 22:50:24.604150
----------
1505 started at 22:50:24.604303. Tweet_id -> 691820333922455552
1505 completed at 22:50:25.554732
----------
1506 started at 22:50:25.554963. Tweet_id -> 691793053716221953
1506 completed at 22:50:26.461899
----------
1507 started at 22:50:26.462123. Tweet_id -> 691756958957883396
1507 completed at 22:50:27.319189
----------
1508 started at 22:50:27.319373. Tweet_id -> 691675652215414786
1508 completed at 22:50:28.379665
----------
1509 started at 22:50:28.379784. Tweet_id -> 691483041324204033
1509 completed at 22:50:29.362144
----------
1510 started at 22:50:29.363946. Tweet_id -> 691459709405118465
1510 completed at 22:50:30.277028
----------
1511 started at 22:50:30.277205. Tweet_id -> 691444869282295808
1511 completed at 22:50:31.184514
----------
1512 started at 22:50:31.184875. Tweet_id -> 691416866452082688
1512 completed at 22:50:32.132883
----------
1513 started at 22:50:32.133388. Tweet_id -> 691321916024623104
1513 completed at 22:50:32.998411
----------
1514 started at 22:50:32.998549. Tweet_id -> 691096613310316544
1514 completed at 22:50:33.913111
----------
1515 started at 22:50:33.913593. Tweet_id -> 691090071332753408
1515 completed at 22:50:34.757636
----------
1516 started at 22:50:34.757795. Tweet_id -> 690989312272396288
1516 completed at 22:50:35.620088
----------
1517 started at 22:50:35.620271. Tweet_id -> 690959652130045952
1517 completed at 22:50:36.526366
----------
1518 started at 22:50:36.526511. Tweet_id -> 690938899477221376
1518 completed at 22:50:37.527522
----------
1519 started at 22:50:37.528106. Tweet_id -> 690932576555528194
1519 completed at 22:50:38.653824
----------
1520 started at 22:50:38.654242. Tweet_id -> 690735892932222976
1520 completed at 22:50:39.887872
----------
1521 started at 22:50:39.888047. Tweet_id -> 690728923253055490
1521 completed at 22:50:41.080045
----------
1522 started at 22:50:41.080217. Tweet_id -> 690690673629138944
1522 completed at 22:50:42.246503
----------
1523 started at 22:50:42.247486. Tweet_id -> 690649993829576704
1523 completed at 22:50:43.434684
----------
1524 started at 22:50:43.434832. Tweet_id -> 690607260360429569
1524 completed at 22:50:44.406651
----------
1525 started at 22:50:44.407001. Tweet_id -> 690597161306841088
1525 completed at 22:50:45.268518
----------
1526 started at 22:50:45.268931. Tweet_id -> 690400367696297985
1526 completed at 22:50:46.155755
----------
1527 started at 22:50:46.156013. Tweet_id -> 690374419777196032
1527 completed at 22:50:47.093626
----------
1528 started at 22:50:47.093802. Tweet_id -> 690360449368465409
1528 completed at 22:50:47.986152
----------
1529 started at 22:50:47.986755. Tweet_id -> 690348396616552449
1529 completed at 22:50:48.929261
----------
1530 started at 22:50:48.929406. Tweet_id -> 690248561355657216
1530 completed at 22:50:49.845926
----------
1531 started at 22:50:49.846076. Tweet_id -> 690021994562220032
1531 completed at 22:50:50.784790
----------
1532 started at 22:50:50.784944. Tweet_id -> 690015576308211712
1532 completed at 22:50:51.787424
----------
1533 started at 22:50:51.787595. Tweet_id -> 690005060500217858
1533 completed at 22:50:52.674925
----------
1534 started at 22:50:52.675073. Tweet_id -> 689999384604450816
1534 completed at 22:50:53.543910
----------
1535 started at 22:50:53.544118. Tweet_id -> 689993469801164801
1535 completed at 22:50:54.464490
----------
1536 started at 22:50:54.464651. Tweet_id -> 689977555533848577
1536 completed at 22:50:55.400478
----------
1537 started at 22:50:55.400628. Tweet_id -> 689905486972461056
1537 completed at 22:50:56.308954
----------
1538 started at 22:50:56.309128. Tweet_id -> 689877686181715968
1538 completed at 22:50:57.165892
----------
1539 started at 22:50:57.166478. Tweet_id -> 689835978131935233
1539 completed at 22:50:58.194730
----------
1540 started at 22:50:58.194967. Tweet_id -> 689661964914655233
1540 completed at 22:50:59.046980
----------
1541 started at 22:50:59.047102. Tweet_id -> 689659372465688576
1541 completed at 22:50:59.997279
----------
1542 started at 22:50:59.997423. Tweet_id -> 689623661272240129
1542 completed at 22:51:00.951340
----------
1543 started at 22:51:00.951498. Tweet_id -> 689599056876867584
1543 completed at 22:51:01.807118
----------
1544 started at 22:51:01.807302. Tweet_id -> 689557536375177216
1544 completed at 22:51:02.740189
----------
1545 started at 22:51:02.740371. Tweet_id -> 689517482558820352
1545 completed at 22:51:03.663733
----------
1546 started at 22:51:03.663930. Tweet_id -> 689289219123089408
1546 completed at 22:51:04.556340
----------
1547 started at 22:51:04.556555. Tweet_id -> 689283819090870273
1547 completed at 22:51:05.499254
----------
1548 started at 22:51:05.499447. Tweet_id -> 689280876073582592
1548 completed at 22:51:06.441152
----------
1549 started at 22:51:06.441321. Tweet_id -> 689275259254616065
1549 completed at 22:51:07.286012
----------
1550 started at 22:51:07.286198. Tweet_id -> 689255633275777024
1550 completed at 22:51:08.252475
----------
1551 started at 22:51:08.252647. Tweet_id -> 689154315265683456
1551 completed at 22:51:09.129972
----------
1552 started at 22:51:09.130125. Tweet_id -> 689143371370250240
1552 completed at 22:51:10.051058
----------
1553 started at 22:51:10.051183. Tweet_id -> 688916208532455424
1553 completed at 22:51:11.017876
----------
1554 started at 22:51:11.018001. Tweet_id -> 688908934925697024
1554 completed at 22:51:11.898642
----------
1555 started at 22:51:11.898786. Tweet_id -> 688898160958271489
1555 completed at 22:51:12.788618
----------
1556 started at 22:51:12.788825. Tweet_id -> 688894073864884227
1556 completed at 22:51:13.677133
----------
1557 started at 22:51:13.677285. Tweet_id -> 688828561667567616
1557 completed at 22:51:14.626822
----------
1558 started at 22:51:14.626969. Tweet_id -> 688804835492233216
1558 completed at 22:51:15.560346
----------
1559 started at 22:51:15.560537. Tweet_id -> 688789766343622656
1559 completed at 22:51:16.448926
----------
1560 started at 22:51:16.449047. Tweet_id -> 688547210804498433
1560 completed at 22:51:17.384143
----------
1561 started at 22:51:17.384565. Tweet_id -> 688519176466644993
1561 completed at 22:51:18.252069
----------
1562 started at 22:51:18.252249. Tweet_id -> 688385280030670848
1562 completed at 22:51:19.160692
----------
1563 started at 22:51:19.160883. Tweet_id -> 688211956440801280
1563 completed at 22:51:20.080059
----------
1564 started at 22:51:20.080221. Tweet_id -> 688179443353796608
1564 completed at 22:51:21.010026
----------
1565 started at 22:51:21.010156. Tweet_id -> 688116655151435777
1565 completed at 22:51:21.914583
----------
1566 started at 22:51:21.914775. Tweet_id -> 688064179421470721
1566 completed at 22:51:22.845405
----------
1567 started at 22:51:22.845578. Tweet_id -> 687841446767013888
1567 completed at 22:51:23.736027
----------
1568 started at 22:51:23.736237. Tweet_id -> 687826841265172480
1568 completed at 22:51:24.624913
----------
1569 started at 22:51:24.625094. Tweet_id -> 687818504314159109
1569 completed at 22:51:25.531050
----------
1570 started at 22:51:25.531199. Tweet_id -> 687807801670897665
1570 completed at 22:51:26.428877
----------
1571 started at 22:51:26.429058. Tweet_id -> 687732144991551489
1571 completed at 22:51:27.275902
----------
1572 started at 22:51:27.276048. Tweet_id -> 687704180304273409
1572 completed at 22:51:28.422292
----------
1573 started at 22:51:28.422484. Tweet_id -> 687664829264453632
1573 completed at 22:51:29.328297
----------
1574 started at 22:51:29.328455. Tweet_id -> 687494652870668288
1574 completed at 22:51:30.359545
----------
1575 started at 22:51:30.359758. Tweet_id -> 687480748861947905
1575 completed at 22:51:31.249358
----------
1576 started at 22:51:31.249577. Tweet_id -> 687476254459715584
1576 completed at 22:51:32.200400
----------
1577 started at 22:51:32.200553. Tweet_id -> 687460506001633280
1577 completed at 22:51:33.110880
----------
1578 started at 22:51:33.111024. Tweet_id -> 687399393394311168
1578 completed at 22:51:34.001309
----------
1579 started at 22:51:34.001451. Tweet_id -> 687317306314240000
1579 completed at 22:51:35.026385
----------
1580 started at 22:51:35.026527. Tweet_id -> 687312378585812992
1580 completed at 22:51:36.015149
----------
1581 started at 22:51:36.015290. Tweet_id -> 687127927494963200
1581 completed at 22:51:36.881723
----------
1582 started at 22:51:36.881894. Tweet_id -> 687124485711986689
1582 completed at 22:51:37.805015
----------
1583 started at 22:51:37.805202. Tweet_id -> 687109925361856513
1583 completed at 22:51:38.693260
----------
1584 started at 22:51:38.693458. Tweet_id -> 687102708889812993
1584 completed at 22:51:39.663007
----------
1585 started at 22:51:39.663312. Tweet_id -> 687096057537363968
1585 completed at 22:51:40.569900
----------
1586 started at 22:51:40.570057. Tweet_id -> 686947101016735744
1586 completed at 22:51:41.452003
----------
1587 started at 22:51:41.452167. Tweet_id -> 686760001961103360
1587 completed at 22:51:42.415722
----------
1588 started at 22:51:42.415912. Tweet_id -> 686749460672679938
1588 completed at 22:51:43.294572
----------
1589 started at 22:51:43.294732. Tweet_id -> 686730991906516992
1589 completed at 22:51:44.179310
----------
1590 started at 22:51:44.179955. Tweet_id -> 686683045143953408
1590 completed at 22:51:45.081323
----------
1591 started at 22:51:45.081452. Tweet_id -> 686618349602762752
1591 completed at 22:51:45.987654
----------
1592 started at 22:51:45.987791. Tweet_id -> 686606069955735556
1592 completed at 22:51:46.857147
----------
1593 started at 22:51:46.857300. Tweet_id -> 686394059078897668
1593 completed at 22:51:47.763023
----------
1594 started at 22:51:47.763224. Tweet_id -> 686386521809772549
1594 completed at 22:51:48.644037
----------
1595 started at 22:51:48.644185. Tweet_id -> 686377065986265092
1595 completed at 22:51:49.496546
----------
1596 started at 22:51:49.496740. Tweet_id -> 686358356425093120
1596 completed at 22:51:50.389791
----------
1597 started at 22:51:50.389948. Tweet_id -> 686286779679375361
1597 completed at 22:51:51.323424
----------
1598 started at 22:51:51.323625. Tweet_id -> 686050296934563840
1598 completed at 22:51:52.257393
----------
1599 started at 22:51:52.257541. Tweet_id -> 686035780142297088
1599 completed at 22:51:53.181122
----------
1600 started at 22:51:53.181276. Tweet_id -> 686034024800862208
1600 completed at 22:51:54.117808
----------
1601 started at 22:51:54.117939. Tweet_id -> 686007916130873345
1601 completed at 22:51:54.976384
----------
1602 started at 22:51:54.976545. Tweet_id -> 686003207160610816
1602 completed at 22:51:55.915002
----------
1603 started at 22:51:55.915463. Tweet_id -> 685973236358713344
1603 completed at 22:51:56.864922
----------
1604 started at 22:51:56.865519. Tweet_id -> 685943807276412928
1604 completed at 22:51:57.860174
----------
1605 started at 22:51:57.860778. Tweet_id -> 685906723014619143
1605 completed at 22:51:58.796593
----------
1606 started at 22:51:58.797047. Tweet_id -> 685681090388975616
1606 completed at 22:51:59.672889
----------
1607 started at 22:51:59.673126. Tweet_id -> 685667379192414208
1607 completed at 22:52:00.620316
----------
1608 started at 22:52:00.620579. Tweet_id -> 685663452032069632
1608 completed at 22:52:01.556489
----------
1609 started at 22:52:01.557377. Tweet_id -> 685641971164143616
1609 completed at 22:52:02.563308
----------
1610 started at 22:52:02.563485. Tweet_id -> 685547936038666240
1610 completed at 22:52:03.502779
----------
1611 started at 22:52:03.502935. Tweet_id -> 685532292383666176
1611 completed at 22:52:04.514369
----------
1612 started at 22:52:04.514579. Tweet_id -> 685325112850124800
1612 completed at 22:52:05.397697
----------
1613 started at 22:52:05.397849. Tweet_id -> 685321586178670592
1613 completed at 22:52:06.271503
----------
1614 started at 22:52:06.271728. Tweet_id -> 685315239903100929
1614 completed at 22:52:07.282778
----------
1615 started at 22:52:07.282923. Tweet_id -> 685307451701334016
1615 completed at 22:52:08.165839
----------
1616 started at 22:52:08.166595. Tweet_id -> 685268753634967552
1616 completed at 22:52:09.036265
----------
1617 started at 22:52:09.036436. Tweet_id -> 685198997565345792
1617 completed at 22:52:10.020437
----------
1618 started at 22:52:10.020618. Tweet_id -> 685169283572338688
1618 completed at 22:52:11.340279
----------
1619 started at 22:52:11.340431. Tweet_id -> 684969860808454144
1619 completed at 22:52:12.616852
----------
1620 started at 22:52:12.617050. Tweet_id -> 684959798585110529
1620 completed at 22:52:13.560560
----------
1621 started at 22:52:13.561614. Tweet_id -> 684940049151070208
1621 completed at 22:52:14.623828
----------
1622 started at 22:52:14.624000. Tweet_id -> 684926975086034944
1622 completed at 22:52:16.050008
----------
1623 started at 22:52:16.050189. Tweet_id -> 684914660081053696
1623 completed at 22:52:17.393425
----------
1624 started at 22:52:17.394118. Tweet_id -> 684902183876321280
1624 completed at 22:52:18.476045
----------
1625 started at 22:52:18.476810. Tweet_id -> 684880619965411328
1625 completed at 22:52:19.567160
----------
1626 started at 22:52:19.567291. Tweet_id -> 684830982659280897
1626 completed at 22:52:20.751913
----------
1627 started at 22:52:20.752084. Tweet_id -> 684800227459624960
1627 completed at 22:52:21.817349
----------
1628 started at 22:52:21.817674. Tweet_id -> 684594889858887680
1628 completed at 22:52:22.717300
----------
1629 started at 22:52:22.717462. Tweet_id -> 684588130326986752
1629 completed at 22:52:23.879180
----------
1630 started at 22:52:23.879415. Tweet_id -> 684567543613382656
1630 completed at 22:52:24.922942
----------
1631 started at 22:52:24.923161. Tweet_id -> 684538444857667585
1631 completed at 22:52:26.241289
----------
1632 started at 22:52:26.241507. Tweet_id -> 684481074559381504
1632 completed at 22:52:27.464613
----------
1633 started at 22:52:27.465116. Tweet_id -> 684460069371654144
1633 completed at 22:52:28.844613
----------
1634 started at 22:52:28.844776. Tweet_id -> 684241637099323392
1634 completed at 22:52:29.996479
----------
1635 started at 22:52:29.996602. Tweet_id -> 684225744407494656
1635 completed at 22:52:31.401743
----------
1636 started at 22:52:31.402050. Tweet_id -> 684222868335505415
1636 completed at 22:52:32.477805
----------
1637 started at 22:52:32.477971. Tweet_id -> 684200372118904832
1637 completed at 22:52:33.515220
----------
1638 started at 22:52:33.515424. Tweet_id -> 684195085588783105
1638 completed at 22:52:34.452950
----------
1639 started at 22:52:34.453114. Tweet_id -> 684188786104872960
1639 completed at 22:52:35.344528
----------
1640 started at 22:52:35.344680. Tweet_id -> 684177701129875456
1640 completed at 22:52:36.665706
----------
1641 started at 22:52:36.665942. Tweet_id -> 684147889187209216
1641 completed at 22:52:37.801282
----------
1642 started at 22:52:37.801908. Tweet_id -> 684122891630342144
1642 completed at 22:52:38.942728
----------
1643 started at 22:52:38.942922. Tweet_id -> 684097758874210310
1643 completed at 22:52:40.076252
----------
1644 started at 22:52:40.076372. Tweet_id -> 683857920510050305
1644 completed at 22:52:41.135326
----------
1645 started at 22:52:41.135479. Tweet_id -> 683852578183077888
1645 completed at 22:52:42.108622
----------
1646 started at 22:52:42.108767. Tweet_id -> 683849932751646720
1646 completed at 22:52:42.985100
----------
1647 started at 22:52:42.985562. Tweet_id -> 683834909291606017
1647 completed at 22:52:43.901013
----------
1648 started at 22:52:43.901175. Tweet_id -> 683828599284170753
1648 completed at 22:52:44.887368
----------
1649 started at 22:52:44.887509. Tweet_id -> 683773439333797890
1649 completed at 22:52:46.005828
----------
1650 started at 22:52:46.005986. Tweet_id -> 683742671509258241
1650 completed at 22:52:46.996016
----------
1651 started at 22:52:46.996209. Tweet_id -> 683515932363329536
1651 completed at 22:52:47.908395
----------
1652 started at 22:52:47.908566. Tweet_id -> 683498322573824003
1652 completed at 22:52:48.959933
----------
1653 started at 22:52:48.960265. Tweet_id -> 683481228088049664
1653 completed at 22:52:49.857216
----------
1654 started at 22:52:49.857367. Tweet_id -> 683462770029932544
1654 completed at 22:52:50.829124
----------
1655 started at 22:52:50.829620. Tweet_id -> 683449695444799489
1655 completed at 22:52:52.134330
----------
1656 started at 22:52:52.134460. Tweet_id -> 683391852557561860
1656 completed at 22:52:53.031781
----------
1657 started at 22:52:53.031929. Tweet_id -> 683357973142474752
1657 completed at 22:52:54.227707
----------
1658 started at 22:52:54.227853. Tweet_id -> 683142553609318400
1658 completed at 22:52:55.140693
----------
1659 started at 22:52:55.140853. Tweet_id -> 683111407806746624
1659 completed at 22:52:56.023002
----------
1660 started at 22:52:56.023162. Tweet_id -> 683098815881154561
1660 completed at 22:52:57.399519
----------
1661 started at 22:52:57.399710. Tweet_id -> 683078886620553216
1661 completed at 22:52:58.474865
----------
1662 started at 22:52:58.475022. Tweet_id -> 683030066213818368
1662 completed at 22:52:59.411322
----------
1663 started at 22:52:59.411528. Tweet_id -> 682962037429899265
1663 completed at 22:53:00.357552
----------
1664 started at 22:53:00.357740. Tweet_id -> 682808988178739200
1664 completed at 22:53:01.325108
----------
1665 started at 22:53:01.325291. Tweet_id -> 682788441537560576
1665 completed at 22:53:02.290012
----------
1666 started at 22:53:02.290172. Tweet_id -> 682750546109968385
1666 completed at 22:53:03.227854
----------
1667 started at 22:53:03.228017. Tweet_id -> 682697186228989953
1667 completed at 22:53:04.255594
----------
1668 started at 22:53:04.255729. Tweet_id -> 682662431982772225
1668 completed at 22:53:05.280423
----------
1669 started at 22:53:05.280564. Tweet_id -> 682638830361513985
1669 completed at 22:53:06.203136
----------
1670 started at 22:53:06.203322. Tweet_id -> 682429480204398592
1670 completed at 22:53:07.231339
----------
1671 started at 22:53:07.231479. Tweet_id -> 682406705142087680
1671 completed at 22:53:08.272159
----------
1672 started at 22:53:08.272755. Tweet_id -> 682393905736888321
1672 completed at 22:53:11.006242
----------
1673 started at 22:53:11.006422. Tweet_id -> 682389078323662849
1673 completed at 22:53:11.972054
----------
1674 started at 22:53:11.972273. Tweet_id -> 682303737705140231
1674 completed at 22:53:12.969505
----------
1675 started at 22:53:12.969696. Tweet_id -> 682259524040966145
1675 completed at 22:53:13.968789
----------
1676 started at 22:53:13.968961. Tweet_id -> 682242692827447297
1676 completed at 22:53:14.994596
----------
1677 started at 22:53:14.994801. Tweet_id -> 682088079302213632
1677 completed at 22:53:15.912920
----------
1678 started at 22:53:15.913549. Tweet_id -> 682059653698686977
1678 completed at 22:53:16.897622
----------
1679 started at 22:53:16.897766. Tweet_id -> 682047327939461121
1679 completed at 22:53:17.786356
----------
1680 started at 22:53:17.786510. Tweet_id -> 682032003584274432
1680 completed at 22:53:19.703240
----------
1681 started at 22:53:19.703366. Tweet_id -> 682003177596559360
1681 completed at 22:53:21.017739
----------
1682 started at 22:53:21.017892. Tweet_id -> 681981167097122816
1682 completed at 22:53:22.149713
----------
1683 started at 22:53:22.149873. Tweet_id -> 681891461017812993
1683 completed at 22:53:23.052222
----------
1684 started at 22:53:23.052363. Tweet_id -> 681694085539872773
1684 completed at 22:53:24.009124
----------
1685 started at 22:53:24.009350. Tweet_id -> 681679526984871937
1685 completed at 22:53:24.904014
----------
1686 started at 22:53:24.904159. Tweet_id -> 681654059175129088
1686 completed at 22:53:25.858691
----------
1687 started at 22:53:25.859065. Tweet_id -> 681610798867845120
1687 completed at 22:53:26.869037
----------
1688 started at 22:53:26.869201. Tweet_id -> 681579835668455424
1688 completed at 22:53:27.811247
----------
1689 started at 22:53:27.811421. Tweet_id -> 681523177663676416
1689 completed at 22:53:28.921960
----------
1690 started at 22:53:28.922152. Tweet_id -> 681340665377193984
1690 completed at 22:53:29.933322
----------
1691 started at 22:53:29.933511. Tweet_id -> 681339448655802368
1691 completed at 22:53:30.972878
----------
1692 started at 22:53:30.973065. Tweet_id -> 681320187870711809
1692 completed at 22:53:32.059086
----------
1693 started at 22:53:32.059868. Tweet_id -> 681302363064414209
1693 completed at 22:53:33.012653
----------
1694 started at 22:53:33.013137. Tweet_id -> 681297372102656000
1694 completed at 22:53:34.042830
----------
1695 started at 22:53:34.043373. Tweet_id -> 681281657291280384
1695 completed at 22:53:35.089983
----------
1696 started at 22:53:35.090208. Tweet_id -> 681261549936340994
1696 completed at 22:53:36.217692
----------
1697 started at 22:53:36.218189. Tweet_id -> 681242418453299201
1697 completed at 22:53:37.308392
----------
1698 started at 22:53:37.308551. Tweet_id -> 681231109724700672
1698 completed at 22:53:38.546178
----------
1699 started at 22:53:38.546338. Tweet_id -> 681193455364796417
1699 completed at 22:53:40.115183
----------
1700 started at 22:53:40.115371. Tweet_id -> 680970795137544192
1700 completed at 22:53:41.079596
----------
1701 started at 22:53:41.079776. Tweet_id -> 680959110691590145
1701 completed at 22:53:41.953590
----------
1702 started at 22:53:41.953766. Tweet_id -> 680940246314430465
1702 completed at 22:53:43.270467
----------
1703 started at 22:53:43.270620. Tweet_id -> 680934982542561280
1703 completed at 22:53:44.391286
----------
1704 started at 22:53:44.391468. Tweet_id -> 680913438424612864
1704 completed at 22:53:45.765026
----------
1705 started at 22:53:45.765200. Tweet_id -> 680889648562991104
1705 completed at 22:53:46.918778
----------
1706 started at 22:53:46.918964. Tweet_id -> 680836378243002368
1706 completed at 22:53:48.019844
----------
1707 started at 22:53:48.019996. Tweet_id -> 680805554198020098
1707 completed at 22:53:49.087385
----------
1708 started at 22:53:49.087581. Tweet_id -> 680801747103793152
1708 completed at 22:53:50.041895
----------
1709 started at 22:53:50.042115. Tweet_id -> 680798457301471234
1709 completed at 22:53:50.967022
----------
1710 started at 22:53:50.967191. Tweet_id -> 680609293079592961
1710 completed at 22:53:51.851407
----------
1711 started at 22:53:51.851572. Tweet_id -> 680583894916304897
1711 completed at 22:53:52.750008
----------
1712 started at 22:53:52.750132. Tweet_id -> 680497766108381184
1712 completed at 22:53:53.662738
----------
1713 started at 22:53:53.663350. Tweet_id -> 680494726643068929
1713 completed at 22:53:54.647287
----------
1714 started at 22:53:54.647775. Tweet_id -> 680473011644985345
1714 completed at 22:53:55.574649
----------
1715 started at 22:53:55.574796. Tweet_id -> 680440374763077632
1715 completed at 22:53:56.465663
----------
1716 started at 22:53:56.465828. Tweet_id -> 680221482581123072
1716 completed at 22:53:57.565938
----------
1717 started at 22:53:57.566106. Tweet_id -> 680206703334408192
1717 completed at 22:53:58.523286
----------
1718 started at 22:53:58.523477. Tweet_id -> 680191257256136705
1718 completed at 22:53:59.498350
----------
1719 started at 22:53:59.498478. Tweet_id -> 680176173301628928
1719 completed at 22:54:00.410244
----------
1720 started at 22:54:00.410493. Tweet_id -> 680161097740095489
1720 completed at 22:54:01.781701
----------
1721 started at 22:54:01.781876. Tweet_id -> 680145970311643136
1721 completed at 22:54:02.792780
----------
1722 started at 22:54:02.792923. Tweet_id -> 680130881361686529
1722 completed at 22:54:03.770439
----------
1723 started at 22:54:03.770610. Tweet_id -> 680115823365742593
1723 completed at 22:54:04.817722
----------
1724 started at 22:54:04.817898. Tweet_id -> 680100725817409536
1724 completed at 22:54:05.809803
----------
1725 started at 22:54:05.809964. Tweet_id -> 680085611152338944
1725 completed at 22:54:06.765498
----------
1726 started at 22:54:06.765638. Tweet_id -> 680070545539371008
1726 completed at 22:54:08.092920
----------
1727 started at 22:54:08.093088. Tweet_id -> 680055455951884288
1727 completed at 22:54:09.132148
----------
1728 started at 22:54:09.132304. Tweet_id -> 679877062409191424
1728 completed at 22:54:10.194540
----------
1729 started at 22:54:10.194737. Tweet_id -> 679872969355714560
1729 completed at 22:54:11.239425
----------
1730 started at 22:54:11.239616. Tweet_id -> 679862121895714818
1730 completed at 22:54:12.367177
----------
1731 started at 22:54:12.367339. Tweet_id -> 679854723806179328
1731 completed at 22:54:13.597176
----------
1732 started at 22:54:13.597318. Tweet_id -> 679844490799091713
1732 completed at 22:54:14.843557
----------
1733 started at 22:54:14.843711. Tweet_id -> 679828447187857408
1733 completed at 22:54:15.843904
----------
1734 started at 22:54:15.844160. Tweet_id -> 679777920601223168
1734 completed at 22:54:17.070333
----------
1735 started at 22:54:17.070503. Tweet_id -> 679736210798047232
1735 completed at 22:54:18.027252
----------
1736 started at 22:54:18.027721. Tweet_id -> 679729593985699840
1736 completed at 22:54:18.923269
----------
1737 started at 22:54:18.923426. Tweet_id -> 679722016581222400
1737 completed at 22:54:19.945230
----------
1738 started at 22:54:19.945409. Tweet_id -> 679530280114372609
1738 completed at 22:54:20.928737
----------
1739 started at 22:54:20.928916. Tweet_id -> 679527802031484928
1739 completed at 22:54:21.890148
----------
1740 started at 22:54:21.890340. Tweet_id -> 679511351870550016
1740 completed at 22:54:22.934861
----------
1741 started at 22:54:22.935012. Tweet_id -> 679503373272485890
1741 completed at 22:54:23.976900
----------
1742 started at 22:54:23.977052. Tweet_id -> 679475951516934144
1742 completed at 22:54:24.908992
----------
1743 started at 22:54:24.909148. Tweet_id -> 679462823135686656
1743 completed at 22:54:25.969353
----------
1744 started at 22:54:25.969567. Tweet_id -> 679405845277462528
1744 completed at 22:54:26.924891
----------
1745 started at 22:54:26.925315. Tweet_id -> 679158373988876288
1745 completed at 22:54:28.209871
----------
1746 started at 22:54:28.210130. Tweet_id -> 679148763231985668
1746 completed at 22:54:29.153534
----------
1747 started at 22:54:29.153688. Tweet_id -> 679132435750195208
1747 completed at 22:54:30.090625
----------
1748 started at 22:54:30.090863. Tweet_id -> 679111216690831360
1748 completed at 22:54:31.123954
----------
1749 started at 22:54:31.124150. Tweet_id -> 679062614270468097
1749 completed at 22:54:32.141252
----------
1750 started at 22:54:32.141442. Tweet_id -> 679047485189439488
1750 completed at 22:54:33.447403
----------
1751 started at 22:54:33.447690. Tweet_id -> 679001094530465792
1751 completed at 22:54:34.439771
----------
1752 started at 22:54:34.440276. Tweet_id -> 678991772295516161
1752 completed at 22:54:35.764286
----------
1753 started at 22:54:35.764422. Tweet_id -> 678969228704284672
1753 completed at 22:54:37.087344
----------
1754 started at 22:54:37.087850. Tweet_id -> 678800283649069056
1754 completed at 22:54:38.292534
----------
1755 started at 22:54:38.293101. Tweet_id -> 678798276842360832
1755 completed at 22:54:39.361158
----------
1756 started at 22:54:39.361314. Tweet_id -> 678774928607469569
1756 completed at 22:54:40.511291
----------
1757 started at 22:54:40.511518. Tweet_id -> 678767140346941444
1757 completed at 22:54:41.549362
----------
1758 started at 22:54:41.549533. Tweet_id -> 678764513869611008
1758 completed at 22:54:42.740979
----------
1759 started at 22:54:42.741113. Tweet_id -> 678755239630127104
1759 completed at 22:54:43.991722
----------
1760 started at 22:54:43.991863. Tweet_id -> 678740035362037760
1760 completed at 22:54:46.416005
----------
1761 started at 22:54:46.416192. Tweet_id -> 678708137298427904
1761 completed at 22:54:47.517506
----------
1762 started at 22:54:47.517817. Tweet_id -> 678675843183484930
1762 completed at 22:54:48.576697
----------
1763 started at 22:54:48.576886. Tweet_id -> 678643457146150913
1763 completed at 22:54:49.771100
----------
1764 started at 22:54:49.771281. Tweet_id -> 678446151570427904
1764 completed at 22:54:50.820394
----------
1765 started at 22:54:50.820554. Tweet_id -> 678424312106393600
1765 completed at 22:54:51.797529
----------
1766 started at 22:54:51.797664. Tweet_id -> 678410210315247616
1766 completed at 22:54:52.825582
----------
1767 started at 22:54:52.825919. Tweet_id -> 678399652199309312
1767 completed at 22:54:53.856713
----------
1768 started at 22:54:53.856896. Tweet_id -> 678396796259975168
1768 completed at 22:54:54.896059
----------
1769 started at 22:54:54.896190. Tweet_id -> 678389028614488064
1769 completed at 22:54:56.229539
----------
1770 started at 22:54:56.229698. Tweet_id -> 678380236862578688
1770 completed at 22:54:57.429985
----------
1771 started at 22:54:57.430150. Tweet_id -> 678341075375947776
1771 completed at 22:54:58.732908
----------
1772 started at 22:54:58.733255. Tweet_id -> 678334497360859136
1772 completed at 22:54:59.854924
----------
1773 started at 22:54:59.855103. Tweet_id -> 678278586130948096
1773 completed at 22:55:01.196206
----------
1774 started at 22:55:01.196352. Tweet_id -> 678255464182861824
1774 completed at 22:55:02.296518
----------
1775 started at 22:55:02.296797. Tweet_id -> 678023323247357953
1775 completed at 22:55:03.215097
----------
1776 started at 22:55:03.215276. Tweet_id -> 678021115718029313
1776 completed at 22:55:04.152723
----------
1777 started at 22:55:04.152882. Tweet_id -> 677961670166224897
1777 completed at 22:55:05.199952
----------
1778 started at 22:55:05.200173. Tweet_id -> 677918531514703872
1778 completed at 22:55:06.241941
----------
1779 started at 22:55:06.242100. Tweet_id -> 677895101218201600
1779 completed at 22:55:07.630705
----------
1780 started at 22:55:07.630873. Tweet_id -> 677716515794329600
1780 completed at 22:55:08.830239
----------
1781 started at 22:55:08.830513. Tweet_id -> 677700003327029250
1781 completed at 22:55:10.083364
----------
1782 started at 22:55:10.083517. Tweet_id -> 677698403548192770
1782 completed at 22:55:11.269945
----------
1783 started at 22:55:11.270109. Tweet_id -> 677687604918272002
1783 completed at 22:55:12.287053
----------
1784 started at 22:55:12.287194. Tweet_id -> 677673981332312066
1784 completed at 22:55:13.314012
----------
1785 started at 22:55:13.314534. Tweet_id -> 677662372920729601
1785 completed at 22:55:14.239564
----------
1786 started at 22:55:14.239717. Tweet_id -> 677644091929329666
1786 completed at 22:55:15.189661
----------
1787 started at 22:55:15.189848. Tweet_id -> 677573743309385728
1787 completed at 22:55:16.337475
----------
1788 started at 22:55:16.337860. Tweet_id -> 677565715327688705
1788 completed at 22:55:17.351569
----------
1789 started at 22:55:17.351751. Tweet_id -> 677557565589463040
1789 completed at 22:55:18.414412
----------
1790 started at 22:55:18.414547. Tweet_id -> 677547928504967168
1790 completed at 22:55:19.387748
----------
1791 started at 22:55:19.387929. Tweet_id -> 677530072887205888
1791 completed at 22:55:20.402564
----------
1792 started at 22:55:20.402719. Tweet_id -> 677335745548390400
1792 completed at 22:55:21.412383
----------
1793 started at 22:55:21.412580. Tweet_id -> 677334615166730240
1793 completed at 22:55:22.513441
----------
1794 started at 22:55:22.513653. Tweet_id -> 677331501395156992
1794 completed at 22:55:23.756518
----------
1795 started at 22:55:23.756717. Tweet_id -> 677328882937298944
1795 completed at 22:55:24.902284
----------
1796 started at 22:55:24.902426. Tweet_id -> 677314812125323265
1796 completed at 22:55:25.899464
----------
1797 started at 22:55:25.899593. Tweet_id -> 677301033169788928
1797 completed at 22:55:26.999457
----------
1798 started at 22:55:26.999740. Tweet_id -> 677269281705472000
1798 completed at 22:55:28.292912
----------
1799 started at 22:55:28.293096. Tweet_id -> 677228873407442944
1799 completed at 22:55:29.297797
----------
1800 started at 22:55:29.297959. Tweet_id -> 677187300187611136
1800 completed at 22:55:30.261065
----------
1801 started at 22:55:30.261242. Tweet_id -> 676975532580409345
Rate limit reached. Sleeping for: 76
1801 completed at 22:56:52.627809
----------
1802 started at 22:56:52.627989. Tweet_id -> 676957860086095872
1802 completed at 22:56:53.818817
----------
1803 started at 22:56:53.818937. Tweet_id -> 676949632774234114
1803 completed at 22:56:55.087764
----------
1804 started at 22:56:55.087894. Tweet_id -> 676948236477857792
1804 completed at 22:56:56.012701
----------
1805 started at 22:56:56.012842. Tweet_id -> 676946864479084545
1805 completed at 22:56:57.143996
----------
1806 started at 22:56:57.144135. Tweet_id -> 676942428000112642
1806 completed at 22:56:58.291336
----------
1807 started at 22:56:58.291960. Tweet_id -> 676936541936185344
1807 completed at 22:57:04.301723
----------
1808 started at 22:57:04.301916. Tweet_id -> 676916996760600576
1808 completed at 22:57:05.328125
----------
1809 started at 22:57:05.328752. Tweet_id -> 676897532954456065
1809 completed at 22:57:06.698849
----------
1810 started at 22:57:06.699092. Tweet_id -> 676864501615042560
1810 completed at 22:57:08.159848
----------
1811 started at 22:57:08.160040. Tweet_id -> 676821958043033607
1811 completed at 22:57:09.173339
----------
1812 started at 22:57:09.173520. Tweet_id -> 676819651066732545
1812 completed at 22:57:10.130768
----------
1813 started at 22:57:10.130986. Tweet_id -> 676811746707918848
1813 completed at 22:57:11.154829
----------
1814 started at 22:57:11.155146. Tweet_id -> 676776431406465024
1814 completed at 22:57:12.184425
----------
1815 started at 22:57:12.184573. Tweet_id -> 676617503762681856
1815 completed at 22:57:13.194505
----------
1816 started at 22:57:13.194948. Tweet_id -> 676613908052996102
1816 completed at 22:57:14.109993
----------
1817 started at 22:57:14.110160. Tweet_id -> 676606785097199616
1817 completed at 22:57:15.159377
----------
1818 started at 22:57:15.159785. Tweet_id -> 676603393314578432
1818 completed at 22:57:16.424082
----------
1819 started at 22:57:16.424268. Tweet_id -> 676593408224403456
1819 completed at 22:57:17.369092
----------
1820 started at 22:57:17.369504. Tweet_id -> 676590572941893632
1820 completed at 22:57:18.361212
----------
1821 started at 22:57:18.361555. Tweet_id -> 676588346097852417
1821 completed at 22:57:19.291129
----------
1822 started at 22:57:19.291291. Tweet_id -> 676582956622721024
1822 completed at 22:57:20.211216
----------
1823 started at 22:57:20.211395. Tweet_id -> 676575501977128964
1823 completed at 22:57:21.191220
----------
1824 started at 22:57:21.191416. Tweet_id -> 676533798876651520
1824 completed at 22:57:22.119398
----------
1825 started at 22:57:22.119566. Tweet_id -> 676496375194980353
1825 completed at 22:57:23.067190
----------
1826 started at 22:57:23.067677. Tweet_id -> 676470639084101634
1826 completed at 22:57:24.018293
----------
1827 started at 22:57:24.018468. Tweet_id -> 676440007570247681
1827 completed at 22:57:25.059873
----------
1828 started at 22:57:25.060048. Tweet_id -> 676430933382295552
1828 completed at 22:57:26.106126
----------
1829 started at 22:57:26.106626. Tweet_id -> 676263575653122048
1829 completed at 22:57:27.136492
----------
1830 started at 22:57:27.136654. Tweet_id -> 676237365392908289
1830 completed at 22:57:28.116406
----------
1831 started at 22:57:28.116595. Tweet_id -> 676219687039057920
1831 completed at 22:57:29.034763
----------
1832 started at 22:57:29.034924. Tweet_id -> 676215927814406144
1832 completed at 22:57:30.040029
----------
1833 started at 22:57:30.040639. Tweet_id -> 676191832485810177
1833 completed at 22:57:30.977704
----------
1834 started at 22:57:30.977871. Tweet_id -> 676146341966438401
1834 completed at 22:57:32.029162
----------
1835 started at 22:57:32.029320. Tweet_id -> 676121918416756736
1835 completed at 22:57:33.203180
----------
1836 started at 22:57:33.203670. Tweet_id -> 676101918813499392
1836 completed at 22:57:34.438544
----------
1837 started at 22:57:34.438954. Tweet_id -> 676098748976615425
1837 completed at 22:57:35.452132
----------
1838 started at 22:57:35.452424. Tweet_id -> 676089483918516224
1838 completed at 22:57:37.810444
----------
1839 started at 22:57:37.811097. Tweet_id -> 675898130735476737
1839 completed at 22:57:38.734457
----------
1840 started at 22:57:38.734615. Tweet_id -> 675891555769696257
1840 completed at 22:57:39.730854
----------
1841 started at 22:57:39.731036. Tweet_id -> 675888385639251968
1841 completed at 22:57:41.169005
----------
1842 started at 22:57:41.169188. Tweet_id -> 675878199931371520
1842 completed at 22:57:42.078506
----------
1843 started at 22:57:42.078632. Tweet_id -> 675870721063669760
1843 completed at 22:57:43.130282
----------
1844 started at 22:57:43.130481. Tweet_id -> 675853064436391936
1844 completed at 22:57:44.263156
----------
1845 started at 22:57:44.263971. Tweet_id -> 675849018447167488
1845 completed at 22:57:45.319421
----------
1846 started at 22:57:45.319582. Tweet_id -> 675845657354215424
1846 completed at 22:57:47.500298
----------
1847 started at 22:57:47.500526. Tweet_id -> 675822767435051008
1847 completed at 22:57:48.569347
----------
1848 started at 22:57:48.569486. Tweet_id -> 675820929667219457
1848 completed at 22:57:49.683395
----------
1849 started at 22:57:49.683558. Tweet_id -> 675798442703122432
1849 completed at 22:57:50.873041
----------
1850 started at 22:57:50.873479. Tweet_id -> 675781562965868544
1850 completed at 22:57:51.932000
----------
1851 started at 22:57:51.932156. Tweet_id -> 675740360753160193
1851 completed at 22:57:52.894096
----------
1852 started at 22:57:52.894342. Tweet_id -> 675710890956750848
1852 completed at 22:57:54.124889
----------
1853 started at 22:57:54.125066. Tweet_id -> 675707330206547968
1853 completed at 22:57:55.089582
----------
1854 started at 22:57:55.089702. Tweet_id -> 675706639471788032
1854 completed at 22:57:56.163306
----------
1855 started at 22:57:56.163854. Tweet_id -> 675534494439489536
1855 completed at 22:57:57.237513
----------
1856 started at 22:57:57.237687. Tweet_id -> 675531475945709568
1856 completed at 22:57:58.473016
----------
1857 started at 22:57:58.473260. Tweet_id -> 675522403582218240
1857 completed at 22:57:59.497393
----------
1858 started at 22:57:59.497812. Tweet_id -> 675517828909424640
1858 completed at 22:58:00.455472
----------
1859 started at 22:58:00.455682. Tweet_id -> 675501075957489664
1859 completed at 22:58:01.656797
----------
1860 started at 22:58:01.657192. Tweet_id -> 675497103322386432
1860 completed at 22:58:02.788024
----------
1861 started at 22:58:02.788145. Tweet_id -> 675489971617296384
1861 completed at 22:58:03.814569
----------
1862 started at 22:58:03.814867. Tweet_id -> 675483430902214656
1862 completed at 22:58:04.952771
----------
1863 started at 22:58:04.952994. Tweet_id -> 675432746517426176
1863 completed at 22:58:06.178663
----------
1864 started at 22:58:06.178838. Tweet_id -> 675372240448454658
1864 completed at 22:58:07.208710
----------
1865 started at 22:58:07.208900. Tweet_id -> 675362609739206656
1865 completed at 22:58:08.323857
----------
1866 started at 22:58:08.324522. Tweet_id -> 675354435921575936
1866 completed at 22:58:09.560092
----------
1867 started at 22:58:09.560321. Tweet_id -> 675349384339542016
1867 completed at 22:58:11.005468
----------
1868 started at 22:58:11.005884. Tweet_id -> 675334060156301312
1868 completed at 22:58:12.165237
----------
1869 started at 22:58:12.165422. Tweet_id -> 675166823650848770
1869 completed at 22:58:13.693038
----------
1870 started at 22:58:13.693221. Tweet_id -> 675153376133427200
1870 completed at 22:58:19.191548
----------
1871 started at 22:58:19.192243. Tweet_id -> 675149409102012420
1871 completed at 22:58:20.248513
----------
1872 started at 22:58:20.249169. Tweet_id -> 675147105808306176
1872 completed at 22:58:21.904487
----------
1873 started at 22:58:21.904660. Tweet_id -> 675146535592706048
1873 completed at 22:58:22.875597
----------
1874 started at 22:58:22.875779. Tweet_id -> 675145476954566656
1874 completed at 22:58:23.816660
----------
1875 started at 22:58:23.816849. Tweet_id -> 675135153782571009
1875 completed at 22:58:24.910824
----------
1876 started at 22:58:24.910996. Tweet_id -> 675113801096802304
1876 completed at 22:58:26.021005
----------
1877 started at 22:58:26.021129. Tweet_id -> 675111688094527488
1877 completed at 22:58:27.051880
----------
1878 started at 22:58:27.052056. Tweet_id -> 675109292475830276
1878 completed at 22:58:28.185710
----------
1879 started at 22:58:28.185974. Tweet_id -> 675047298674663426
1879 completed at 22:58:29.108836
----------
1880 started at 22:58:29.109012. Tweet_id -> 675015141583413248
1880 completed at 22:58:30.142459
----------
1881 started at 22:58:30.142887. Tweet_id -> 675006312288268288
1881 completed at 22:58:31.072140
----------
1882 started at 22:58:31.072310. Tweet_id -> 675003128568291329
1882 completed at 22:58:32.030455
----------
1883 started at 22:58:32.030652. Tweet_id -> 674999807681908736
1883 completed at 22:58:33.101566
----------
1884 started at 22:58:33.101836. Tweet_id -> 674805413498527744
1884 completed at 22:58:34.127878
----------
1885 started at 22:58:34.128098. Tweet_id -> 674800520222154752
1885 completed at 22:58:35.247357
----------
1886 started at 22:58:35.247528. Tweet_id -> 674793399141146624
1886 completed at 22:58:36.407987
----------
1887 started at 22:58:36.408151. Tweet_id -> 674790488185167872
1887 completed at 22:58:37.439208
----------
1888 started at 22:58:37.439438. Tweet_id -> 674788554665512960
1888 completed at 22:58:38.517695
----------
1889 started at 22:58:38.518253. Tweet_id -> 674781762103414784
1889 completed at 22:58:39.465182
----------
1890 started at 22:58:39.465398. Tweet_id -> 674774481756377088
1890 completed at 22:58:40.520067
----------
1891 started at 22:58:40.520338. Tweet_id -> 674767892831932416
1891 completed at 22:58:41.607063
----------
1892 started at 22:58:41.607270. Tweet_id -> 674764817387900928
1892 completed at 22:58:42.617921
----------
1893 started at 22:58:42.618050. Tweet_id -> 674754018082705410
1893 completed at 22:58:43.654729
----------
1894 started at 22:58:43.655052. Tweet_id -> 674752233200820224
1894 completed at 22:58:44.799575
----------
1895 started at 22:58:44.799772. Tweet_id -> 674743008475090944
1895 completed at 22:58:45.738891
----------
1896 started at 22:58:45.739076. Tweet_id -> 674742531037511680
1896 completed at 22:58:46.736061
----------
1897 started at 22:58:46.736239. Tweet_id -> 674739953134403584
1897 completed at 22:58:47.717224
----------
1898 started at 22:58:47.717667. Tweet_id -> 674737130913071104
1898 completed at 22:58:48.795039
----------
1899 started at 22:58:48.795230. Tweet_id -> 674690135443775488
1899 completed at 22:58:49.866717
----------
1900 started at 22:58:49.866895. Tweet_id -> 674670581682434048
1900 completed at 22:58:50.833144
----------
1901 started at 22:58:50.833323. Tweet_id -> 674664755118911488
1901 completed at 22:58:51.767876
----------
1902 started at 22:58:51.768057. Tweet_id -> 674646392044941312
1902 completed at 22:58:52.886497
----------
1903 started at 22:58:52.886671. Tweet_id -> 674644256330530816
1903 completed at 22:58:53.914299
----------
1904 started at 22:58:53.914473. Tweet_id -> 674638615994089473
1904 completed at 22:58:54.867423
----------
1905 started at 22:58:54.867610. Tweet_id -> 674632714662858753
1905 completed at 22:58:55.811360
----------
1906 started at 22:58:55.811530. Tweet_id -> 674606911342424069
1906 completed at 22:58:56.778053
----------
1907 started at 22:58:56.778229. Tweet_id -> 674468880899788800
1907 completed at 22:58:57.715982
----------
1908 started at 22:58:57.716155. Tweet_id -> 674447403907457024
1908 completed at 22:58:58.834681
----------
1909 started at 22:58:58.834849. Tweet_id -> 674436901579923456
1909 completed at 22:59:00.094157
----------
1910 started at 22:59:00.094542. Tweet_id -> 674422304705744896
1910 completed at 22:59:01.082366
----------
1911 started at 22:59:01.082802. Tweet_id -> 674416750885273600
1911 completed at 22:59:02.051024
----------
1912 started at 22:59:02.051291. Tweet_id -> 674410619106390016
1912 completed at 22:59:03.120322
----------
1913 started at 22:59:03.120792. Tweet_id -> 674394782723014656
1913 completed at 22:59:04.173672
----------
1914 started at 22:59:04.173904. Tweet_id -> 674372068062928900
1914 completed at 22:59:05.135764
----------
1915 started at 22:59:05.135955. Tweet_id -> 674330906434379776
1915 completed at 22:59:06.097160
----------
1916 started at 22:59:06.097441. Tweet_id -> 674318007229923329
1916 completed at 22:59:07.052985
----------
1917 started at 22:59:07.053219. Tweet_id -> 674307341513269249
1917 completed at 22:59:08.032059
----------
1918 started at 22:59:08.032549. Tweet_id -> 674291837063053312
1918 completed at 22:59:09.104059
----------
1919 started at 22:59:09.104225. Tweet_id -> 674271431610523648
1919 completed at 22:59:10.278256
----------
1920 started at 22:59:10.278672. Tweet_id -> 674269164442398721
1920 completed at 22:59:11.231000
----------
1921 started at 22:59:11.231172. Tweet_id -> 674265582246694913
1921 completed at 22:59:12.251093
----------
1922 started at 22:59:12.251286. Tweet_id -> 674262580978937856
1922 completed at 22:59:13.465652
----------
1923 started at 22:59:13.465848. Tweet_id -> 674255168825880576
1923 completed at 22:59:14.516214
----------
1924 started at 22:59:14.516337. Tweet_id -> 674082852460433408
1924 completed at 22:59:15.648588
----------
1925 started at 22:59:15.648771. Tweet_id -> 674075285688614912
1925 completed at 22:59:16.977753
----------
1926 started at 22:59:16.978176. Tweet_id -> 674063288070742018
1926 completed at 22:59:18.114164
----------
1927 started at 22:59:18.114347. Tweet_id -> 674053186244734976
1927 completed at 22:59:19.316975
----------
1928 started at 22:59:19.317568. Tweet_id -> 674051556661161984
1928 completed at 22:59:21.249384
----------
1929 started at 22:59:21.249645. Tweet_id -> 674045139690631169
1929 completed at 22:59:22.418466
----------
1930 started at 22:59:22.418849. Tweet_id -> 674042553264685056
1930 completed at 22:59:24.159677
----------
1931 started at 22:59:24.160281. Tweet_id -> 674038233588723717
1931 completed at 22:59:25.610067
----------
1932 started at 22:59:25.610205. Tweet_id -> 674036086168010753
1932 completed at 22:59:27.570345
----------
1933 started at 22:59:27.570523. Tweet_id -> 674024893172875264
1933 completed at 22:59:29.031198
----------
1934 started at 22:59:29.031372. Tweet_id -> 674019345211760640
1934 completed at 22:59:30.127739
----------
1935 started at 22:59:30.127910. Tweet_id -> 674014384960745472
1935 completed at 22:59:31.385791
----------
1936 started at 22:59:31.386242. Tweet_id -> 674008982932058114
1936 completed at 22:59:33.092876
----------
1937 started at 22:59:33.093065. Tweet_id -> 673956914389192708
1937 completed at 22:59:34.421105
----------
1938 started at 22:59:34.421275. Tweet_id -> 673919437611909120
1938 completed at 22:59:35.594049
----------
1939 started at 22:59:35.594844. Tweet_id -> 673906403526995968
1939 completed at 22:59:36.685713
----------
1940 started at 22:59:36.685958. Tweet_id -> 673887867907739649
1940 completed at 22:59:38.261242
----------
1941 started at 22:59:38.261409. Tweet_id -> 673716320723169284
1941 completed at 22:59:39.475308
----------
1942 started at 22:59:39.475664. Tweet_id -> 673715861853720576
1942 completed at 22:59:40.676463
----------
1943 started at 22:59:40.676583. Tweet_id -> 673711475735838725
1943 completed at 22:59:42.080106
----------
1944 started at 22:59:42.080255. Tweet_id -> 673709992831262724
1944 completed at 22:59:43.314718
----------
1945 started at 22:59:43.315143. Tweet_id -> 673708611235921920
1945 completed at 22:59:44.484344
----------
1946 started at 22:59:44.484515. Tweet_id -> 673707060090052608
1946 completed at 22:59:45.545296
----------
1947 started at 22:59:45.545476. Tweet_id -> 673705679337693185
1947 completed at 22:59:46.939817
----------
1948 started at 22:59:46.939961. Tweet_id -> 673700254269775872
1948 completed at 22:59:48.061857
----------
1949 started at 22:59:48.062011. Tweet_id -> 673697980713705472
1949 completed at 22:59:49.264976
----------
1950 started at 22:59:49.265154. Tweet_id -> 673689733134946305
1950 completed at 22:59:50.901208
----------
1951 started at 22:59:50.902125. Tweet_id -> 673688752737402881
1951 completed at 22:59:52.213829
----------
1952 started at 22:59:52.214002. Tweet_id -> 673686845050527744
1952 completed at 22:59:54.422824
----------
1953 started at 22:59:54.423209. Tweet_id -> 673680198160809984
1953 completed at 22:59:55.370842
----------
1954 started at 22:59:55.370983. Tweet_id -> 673662677122719744
1954 completed at 22:59:56.430970
----------
1955 started at 22:59:56.431565. Tweet_id -> 673656262056419329
1955 completed at 22:59:58.240863
----------
1956 started at 22:59:58.241034. Tweet_id -> 673636718965334016
1956 completed at 22:59:59.750791
----------
1957 started at 22:59:59.750971. Tweet_id -> 673612854080196609
1957 completed at 23:00:00.835635
----------
1958 started at 23:00:00.835783. Tweet_id -> 673583129559498752
1958 completed at 23:00:02.271422
----------
1959 started at 23:00:02.271599. Tweet_id -> 673580926094458881
1959 completed at 23:00:03.356427
----------
1960 started at 23:00:03.356604. Tweet_id -> 673576835670777856
1960 completed at 23:00:05.049866
----------
1961 started at 23:00:05.050041. Tweet_id -> 673363615379013632
1961 completed at 23:00:06.299280
----------
1962 started at 23:00:06.299893. Tweet_id -> 673359818736984064
1962 completed at 23:00:07.599862
----------
1963 started at 23:00:07.600302. Tweet_id -> 673355879178194945
1963 completed at 23:00:08.853232
----------
1964 started at 23:00:08.853424. Tweet_id -> 673352124999274496
1964 completed at 23:00:10.356484
----------
1965 started at 23:00:10.356815. Tweet_id -> 673350198937153538
1965 completed at 23:00:11.487486
----------
1966 started at 23:00:11.488234. Tweet_id -> 673345638550134785
1966 completed at 23:00:12.739839
----------
1967 started at 23:00:12.739996. Tweet_id -> 673343217010679808
1967 completed at 23:00:13.865066
----------
1968 started at 23:00:13.865184. Tweet_id -> 673342308415348736
1968 completed at 23:00:15.143106
----------
1969 started at 23:00:15.143281. Tweet_id -> 673320132811366400
1969 completed at 23:00:16.505478
----------
1970 started at 23:00:16.505800. Tweet_id -> 673317986296586240
1970 completed at 23:00:18.176059
----------
1971 started at 23:00:18.176239. Tweet_id -> 673295268553605120
1971 completed at 23:00:19.341172
----------
1972 started at 23:00:19.341568. Tweet_id -> 673270968295534593
1972 completed at 23:00:20.438980
----------
1973 started at 23:00:20.439195. Tweet_id -> 673240798075449344
1973 completed at 23:00:22.204999
----------
1974 started at 23:00:22.205151. Tweet_id -> 673213039743795200
1974 completed at 23:00:23.428265
----------
1975 started at 23:00:23.428900. Tweet_id -> 673148804208660480
1975 completed at 23:00:25.120979
----------
1976 started at 23:00:25.121619. Tweet_id -> 672997845381865473
1976 completed at 23:00:26.422726
----------
1977 started at 23:00:26.422947. Tweet_id -> 672995267319328768
1977 completed at 23:00:29.283728
----------
1978 started at 23:00:29.283945. Tweet_id -> 672988786805112832
1978 completed at 23:00:30.464320
----------
1979 started at 23:00:30.464474. Tweet_id -> 672984142909456390
1979 completed at 23:00:31.775205
----------
1980 started at 23:00:31.775385. Tweet_id -> 672980819271634944
1980 completed at 23:00:32.748461
----------
1981 started at 23:00:32.748634. Tweet_id -> 672975131468300288
1981 completed at 23:00:33.847142
----------
1982 started at 23:00:33.847329. Tweet_id -> 672970152493887488
1982 completed at 23:00:35.284548
----------
1983 started at 23:00:35.284673. Tweet_id -> 672968025906282496
1983 completed at 23:00:37.189984
----------
1984 started at 23:00:37.190441. Tweet_id -> 672964561327235073
1984 completed at 23:00:38.752938
----------
1985 started at 23:00:38.753115. Tweet_id -> 672902681409806336
1985 completed at 23:00:40.130723
----------
1986 started at 23:00:40.130843. Tweet_id -> 672898206762672129
1986 completed at 23:00:42.038228
----------
1987 started at 23:00:42.038835. Tweet_id -> 672884426393653248
1987 completed at 23:00:44.032658
----------
1988 started at 23:00:44.032819. Tweet_id -> 672877615439593473
1988 completed at 23:00:45.332566
----------
1989 started at 23:00:45.332681. Tweet_id -> 672834301050937345
1989 completed at 23:00:47.020770
----------
1990 started at 23:00:47.021193. Tweet_id -> 672828477930868736
1990 completed at 23:00:48.157222
----------
1991 started at 23:00:48.157344. Tweet_id -> 672640509974827008
1991 completed at 23:00:49.257715
----------
1992 started at 23:00:49.258102. Tweet_id -> 672622327801233409
1992 completed at 23:00:50.347394
----------
1993 started at 23:00:50.348221. Tweet_id -> 672614745925664768
1993 completed at 23:00:51.326935
----------
1994 started at 23:00:51.327183. Tweet_id -> 672609152938721280
1994 completed at 23:00:52.338627
----------
1995 started at 23:00:52.339247. Tweet_id -> 672604026190569472
1995 completed at 23:00:53.543053
----------
1996 started at 23:00:53.543264. Tweet_id -> 672594978741354496
1996 completed at 23:00:54.512012
----------
1997 started at 23:00:54.512296. Tweet_id -> 672591762242805761
1997 completed at 23:00:55.579563
----------
1998 started at 23:00:55.579794. Tweet_id -> 672591271085670400
1998 completed at 23:00:56.808574
----------
1999 started at 23:00:56.808774. Tweet_id -> 672538107540070400
1999 completed at 23:00:57.850152
----------
2000 started at 23:00:57.850321. Tweet_id -> 672523490734551040
2000 completed at 23:00:58.886725
----------
2001 started at 23:00:58.886912. Tweet_id -> 672488522314567680
2001 completed at 23:00:59.989907
----------
2002 started at 23:00:59.990082. Tweet_id -> 672482722825261057
2002 completed at 23:01:00.977655
----------
2003 started at 23:01:00.977840. Tweet_id -> 672481316919734272
2003 completed at 23:01:02.000775
----------
2004 started at 23:01:02.001159. Tweet_id -> 672475084225949696
2004 completed at 23:01:03.015274
----------
2005 started at 23:01:03.015541. Tweet_id -> 672466075045466113
2005 completed at 23:01:04.056281
----------
2006 started at 23:01:04.056470. Tweet_id -> 672272411274932228
2006 completed at 23:01:05.435561
----------
2007 started at 23:01:05.435810. Tweet_id -> 672267570918129665
2007 completed at 23:01:06.419420
----------
2008 started at 23:01:06.419967. Tweet_id -> 672264251789176834
2008 completed at 23:01:07.475660
----------
2009 started at 23:01:07.475851. Tweet_id -> 672256522047614977
2009 completed at 23:01:09.255643
----------
2010 started at 23:01:09.255801. Tweet_id -> 672254177670729728
2010 completed at 23:01:10.321619
----------
2011 started at 23:01:10.321810. Tweet_id -> 672248013293752320
2011 completed at 23:01:11.367079
----------
2012 started at 23:01:11.367503. Tweet_id -> 672245253877968896
2012 completed at 23:01:12.348580
----------
2013 started at 23:01:12.349054. Tweet_id -> 672239279297454080
2013 completed at 23:01:13.402017
----------
2014 started at 23:01:13.402190. Tweet_id -> 672231046314901505
2014 completed at 23:01:14.390615
----------
2015 started at 23:01:14.390774. Tweet_id -> 672222792075620352
2015 completed at 23:01:15.537311
----------
2016 started at 23:01:15.537458. Tweet_id -> 672205392827572224
2016 completed at 23:01:16.644101
----------
2017 started at 23:01:16.644522. Tweet_id -> 672169685991993344
2017 completed at 23:01:18.357402
----------
2018 started at 23:01:18.357571. Tweet_id -> 672160042234327040
2018 completed at 23:01:19.769852
----------
2019 started at 23:01:19.770067. Tweet_id -> 672139350159835138
2019 completed at 23:01:21.176557
----------
2020 started at 23:01:21.176744. Tweet_id -> 672125275208069120
2020 completed at 23:01:22.385245
----------
2021 started at 23:01:22.385458. Tweet_id -> 672095186491711488
2021 completed at 23:01:23.772519
----------
2022 started at 23:01:23.772691. Tweet_id -> 672082170312290304
2022 completed at 23:01:25.162186
----------
2023 started at 23:01:25.162362. Tweet_id -> 672068090318987265
2023 completed at 23:01:26.201159
----------
2024 started at 23:01:26.201316. Tweet_id -> 671896809300709376
2024 completed at 23:01:27.176556
----------
2025 started at 23:01:27.176699. Tweet_id -> 671891728106971137
2025 completed at 23:01:28.281465
----------
2026 started at 23:01:28.281801. Tweet_id -> 671882082306625538
2026 completed at 23:01:29.370994
----------
2027 started at 23:01:29.371508. Tweet_id -> 671879137494245376
2027 completed at 23:01:30.359386
----------
2028 started at 23:01:30.359511. Tweet_id -> 671874878652489728
2028 completed at 23:01:31.429865
----------
2029 started at 23:01:31.430333. Tweet_id -> 671866342182637568
2029 completed at 23:01:32.554324
----------
2030 started at 23:01:32.554538. Tweet_id -> 671855973984772097
2030 completed at 23:01:33.795897
----------
2031 started at 23:01:33.796074. Tweet_id -> 671789708968640512
2031 completed at 23:01:35.631893
----------
2032 started at 23:01:35.632104. Tweet_id -> 671768281401958400
2032 completed at 23:01:36.939594
----------
2033 started at 23:01:36.939768. Tweet_id -> 671763349865160704
2033 completed at 23:01:38.188391
----------
2034 started at 23:01:38.188507. Tweet_id -> 671744970634719232
2034 completed at 23:01:39.264719
----------
2035 started at 23:01:39.265236. Tweet_id -> 671743150407421952
2035 completed at 23:01:40.408840
----------
2036 started at 23:01:40.409020. Tweet_id -> 671735591348891648
2036 completed at 23:01:41.605800
----------
2037 started at 23:01:41.605943. Tweet_id -> 671729906628341761
2037 completed at 23:01:42.722733
----------
2038 started at 23:01:42.722908. Tweet_id -> 671561002136281088
2038 completed at 23:01:44.021271
----------
2039 started at 23:01:44.021419. Tweet_id -> 671550332464455680
2039 completed at 23:01:45.153213
----------
2040 started at 23:01:45.153468. Tweet_id -> 671547767500775424
2040 completed at 23:01:46.255006
----------
2041 started at 23:01:46.255913. Tweet_id -> 671544874165002241
2041 completed at 23:01:47.475354
----------
2042 started at 23:01:47.475691. Tweet_id -> 671542985629241344
2042 completed at 23:01:48.621963
----------
2043 started at 23:01:48.622170. Tweet_id -> 671538301157904385
2043 completed at 23:01:49.618285
----------
2044 started at 23:01:49.618620. Tweet_id -> 671536543010570240
2044 completed at 23:01:50.840749
----------
2045 started at 23:01:50.840919. Tweet_id -> 671533943490011136
2045 completed at 23:01:51.814018
----------
2046 started at 23:01:51.814204. Tweet_id -> 671528761649688577
2046 completed at 23:01:52.863361
----------
2047 started at 23:01:52.863530. Tweet_id -> 671520732782923777
2047 completed at 23:01:53.856356
----------
2048 started at 23:01:53.856530. Tweet_id -> 671518598289059840
2048 completed at 23:01:54.884957
----------
2049 started at 23:01:54.885135. Tweet_id -> 671511350426865664
2049 completed at 23:01:55.985552
----------
2050 started at 23:01:55.985726. Tweet_id -> 671504605491109889
2050 completed at 23:01:57.052854
----------
2051 started at 23:01:57.053021. Tweet_id -> 671497587707535361
2051 completed at 23:01:58.353942
----------
2052 started at 23:01:58.354273. Tweet_id -> 671488513339211776
2052 completed at 23:01:59.497654
----------
2053 started at 23:01:59.497767. Tweet_id -> 671486386088865792
2053 completed at 23:02:00.505560
----------
2054 started at 23:02:00.505769. Tweet_id -> 671485057807351808
2054 completed at 23:02:01.592709
----------
2055 started at 23:02:01.593294. Tweet_id -> 671390180817915904
2055 completed at 23:02:02.622888
----------
2056 started at 23:02:02.623162. Tweet_id -> 671362598324076544
2056 completed at 23:02:03.623464
----------
2057 started at 23:02:03.623583. Tweet_id -> 671357843010908160
2057 completed at 23:02:04.724465
----------
2058 started at 23:02:04.724603. Tweet_id -> 671355857343524864
2058 completed at 23:02:05.857581
----------
2059 started at 23:02:05.857733. Tweet_id -> 671347597085433856
2059 completed at 23:02:07.187034
----------
2060 started at 23:02:07.187224. Tweet_id -> 671186162933985280
2060 completed at 23:02:08.344434
----------
2061 started at 23:02:08.344608. Tweet_id -> 671182547775299584
2061 completed at 23:02:09.772516
----------
2062 started at 23:02:09.772692. Tweet_id -> 671166507850801152
2062 completed at 23:02:10.876236
----------
2063 started at 23:02:10.876393. Tweet_id -> 671163268581498880
2063 completed at 23:02:11.935122
----------
2064 started at 23:02:11.935296. Tweet_id -> 671159727754231808
2064 completed at 23:02:13.077272
----------
2065 started at 23:02:13.077441. Tweet_id -> 671154572044468225
2065 completed at 23:02:14.147826
----------
2066 started at 23:02:14.148014. Tweet_id -> 671151324042559489
2066 completed at 23:02:15.277090
----------
2067 started at 23:02:15.277318. Tweet_id -> 671147085991960577
2067 completed at 23:02:16.393877
----------
2068 started at 23:02:16.394301. Tweet_id -> 671141549288370177
2068 completed at 23:02:17.524741
----------
2069 started at 23:02:17.525318. Tweet_id -> 671138694582165504
2069 completed at 23:02:19.051892
----------
2070 started at 23:02:19.052643. Tweet_id -> 671134062904504320
2070 completed at 23:02:20.428592
----------
2071 started at 23:02:20.429397. Tweet_id -> 671122204919246848
2071 completed at 23:02:21.593326
----------
2072 started at 23:02:21.593503. Tweet_id -> 671115716440031232
2072 completed at 23:02:22.942224
----------
2073 started at 23:02:22.942401. Tweet_id -> 671109016219725825
2073 completed at 23:02:24.067032
----------
2074 started at 23:02:24.067893. Tweet_id -> 670995969505435648
2074 completed at 23:02:25.510498
----------
2075 started at 23:02:25.510696. Tweet_id -> 670842764863651840
2075 completed at 23:02:26.990672
----------
2076 started at 23:02:26.990859. Tweet_id -> 670840546554966016
2076 completed at 23:02:28.275918
----------
2077 started at 23:02:28.276069. Tweet_id -> 670838202509447168
2077 completed at 23:02:29.297705
----------
2078 started at 23:02:29.297884. Tweet_id -> 670833812859932673
2078 completed at 23:02:30.484907
----------
2079 started at 23:02:30.485055. Tweet_id -> 670832455012716544
2079 completed at 23:02:31.545941
----------
2080 started at 23:02:31.546139. Tweet_id -> 670826280409919488
2080 completed at 23:02:32.682352
----------
2081 started at 23:02:32.682539. Tweet_id -> 670823764196741120
2081 completed at 23:02:33.783140
----------
2082 started at 23:02:33.783314. Tweet_id -> 670822709593571328
2082 completed at 23:02:34.794460
----------
2083 started at 23:02:34.794892. Tweet_id -> 670815497391357952
2083 completed at 23:02:35.819032
----------
2084 started at 23:02:35.819154. Tweet_id -> 670811965569282048
2084 completed at 23:02:36.818499
----------
2085 started at 23:02:36.818647. Tweet_id -> 670807719151067136
2085 completed at 23:02:37.877110
----------
2086 started at 23:02:37.877240. Tweet_id -> 670804601705242624
2086 completed at 23:02:39.054304
----------
2087 started at 23:02:39.056815. Tweet_id -> 670803562457407488
2087 completed at 23:02:40.129679
----------
2088 started at 23:02:40.129901. Tweet_id -> 670797304698376195
2088 completed at 23:02:41.390151
----------
2089 started at 23:02:41.390360. Tweet_id -> 670792680469889025
2089 completed at 23:02:42.611726
----------
2090 started at 23:02:42.611941. Tweet_id -> 670789397210615808
2090 completed at 23:02:43.614206
----------
2091 started at 23:02:43.614365. Tweet_id -> 670786190031921152
2091 completed at 23:02:44.635953
----------
2092 started at 23:02:44.636113. Tweet_id -> 670783437142401025
2092 completed at 23:02:45.669278
----------
2093 started at 23:02:45.669834. Tweet_id -> 670782429121134593
2093 completed at 23:02:46.683935
----------
2094 started at 23:02:46.684453. Tweet_id -> 670780561024270336
2094 completed at 23:02:47.701486
----------
2095 started at 23:02:47.702008. Tweet_id -> 670778058496974848
2095 completed at 23:02:48.838897
----------
2096 started at 23:02:48.839071. Tweet_id -> 670764103623966721
2096 completed at 23:02:50.354392
----------
2097 started at 23:02:50.354799. Tweet_id -> 670755717859713024
2097 completed at 23:02:51.369655
----------
2098 started at 23:02:51.369827. Tweet_id -> 670733412878163972
2098 completed at 23:02:52.377830
----------
2099 started at 23:02:52.378035. Tweet_id -> 670727704916926465
2099 completed at 23:02:53.496194
----------
2100 started at 23:02:53.496548. Tweet_id -> 670717338665226240
2100 completed at 23:02:54.589908
----------
2101 started at 23:02:54.590039. Tweet_id -> 670704688707301377
2101 completed at 23:02:55.624687
----------
2102 started at 23:02:55.625416. Tweet_id -> 670691627984359425
2102 completed at 23:02:58.166494
----------
2103 started at 23:02:58.167375. Tweet_id -> 670679630144274432
2103 completed at 23:02:59.452959
----------
2104 started at 23:02:59.453137. Tweet_id -> 670676092097810432
2104 completed at 23:03:00.731186
----------
2105 started at 23:03:00.731302. Tweet_id -> 670668383499735048
2105 completed at 23:03:01.889712
----------
2106 started at 23:03:01.889915. Tweet_id -> 670474236058800128
2106 completed at 23:03:02.963747
----------
2107 started at 23:03:02.963941. Tweet_id -> 670468609693655041
2107 completed at 23:03:04.089781
----------
2108 started at 23:03:04.089952. Tweet_id -> 670465786746662913
2108 completed at 23:03:05.387809
----------
2109 started at 23:03:05.388041. Tweet_id -> 670452855871037440
2109 completed at 23:03:06.480773
----------
2110 started at 23:03:06.481181. Tweet_id -> 670449342516494336
2110 completed at 23:03:07.609977
----------
2111 started at 23:03:07.610100. Tweet_id -> 670444955656130560
2111 completed at 23:03:08.770436
----------
2112 started at 23:03:08.770581. Tweet_id -> 670442337873600512
2112 completed at 23:03:09.876067
----------
2113 started at 23:03:09.876222. Tweet_id -> 670435821946826752
2113 completed at 23:03:10.900113
----------
2114 started at 23:03:10.900239. Tweet_id -> 670434127938719744
2114 completed at 23:03:12.347438
----------
2115 started at 23:03:12.347578. Tweet_id -> 670433248821026816
2115 completed at 23:03:13.666715
----------
2116 started at 23:03:13.666891. Tweet_id -> 670428280563085312
2116 completed at 23:03:14.800636
----------
2117 started at 23:03:14.800789. Tweet_id -> 670427002554466305
2117 completed at 23:03:16.302373
----------
2118 started at 23:03:16.303211. Tweet_id -> 670421925039075328
2118 completed at 23:03:17.332921
----------
2119 started at 23:03:17.333151. Tweet_id -> 670420569653809152
2119 completed at 23:03:18.592393
----------
2120 started at 23:03:18.592603. Tweet_id -> 670417414769758208
2120 completed at 23:03:19.606824
----------
2121 started at 23:03:19.607209. Tweet_id -> 670411370698022913
2121 completed at 23:03:21.588687
----------
2122 started at 23:03:21.589283. Tweet_id -> 670408998013820928
2122 completed at 23:03:22.622286
----------
2123 started at 23:03:22.622473. Tweet_id -> 670403879788544000
2123 completed at 23:03:23.792520
----------
2124 started at 23:03:23.792894. Tweet_id -> 670385711116361728
2124 completed at 23:03:25.208508
----------
2125 started at 23:03:25.208670. Tweet_id -> 670374371102445568
2125 completed at 23:03:26.532469
----------
2126 started at 23:03:26.532663. Tweet_id -> 670361874861563904
2126 completed at 23:03:27.686275
----------
2127 started at 23:03:27.686619. Tweet_id -> 670338931251150849
2127 completed at 23:03:29.144766
----------
2128 started at 23:03:29.145300. Tweet_id -> 670319130621435904
2128 completed at 23:03:30.442324
----------
2129 started at 23:03:30.442531. Tweet_id -> 670303360680108032
2129 completed at 23:03:31.721533
----------
2130 started at 23:03:31.721779. Tweet_id -> 670290420111441920
2130 completed at 23:03:32.735728
----------
2131 started at 23:03:32.736303. Tweet_id -> 670093938074779648
2131 completed at 23:03:33.794292
----------
2132 started at 23:03:33.795051. Tweet_id -> 670086499208155136
2132 completed at 23:03:35.278800
----------
2133 started at 23:03:35.279229. Tweet_id -> 670079681849372674
2133 completed at 23:03:36.498470
----------
2134 started at 23:03:36.498646. Tweet_id -> 670073503555706880
2134 completed at 23:03:37.546128
----------
2135 started at 23:03:37.546280. Tweet_id -> 670069087419133954
2135 completed at 23:03:38.641942
----------
2136 started at 23:03:38.642059. Tweet_id -> 670061506722140161
2136 completed at 23:03:39.666025
----------
2137 started at 23:03:39.666204. Tweet_id -> 670055038660800512
2137 completed at 23:03:40.790393
----------
2138 started at 23:03:40.790648. Tweet_id -> 670046952931721218
2138 completed at 23:03:41.920380
----------
2139 started at 23:03:41.920529. Tweet_id -> 670040295598354432
2139 completed at 23:03:43.663697
----------
2140 started at 23:03:43.663920. Tweet_id -> 670037189829525505
2140 completed at 23:03:45.067756
----------
2141 started at 23:03:45.067928. Tweet_id -> 670003130994700288
2141 completed at 23:03:46.227943
----------
2142 started at 23:03:46.228119. Tweet_id -> 669993076832759809
2142 completed at 23:03:47.414494
----------
2143 started at 23:03:47.414625. Tweet_id -> 669972011175813120
2143 completed at 23:03:48.582101
----------
2144 started at 23:03:48.582560. Tweet_id -> 669970042633789440
2144 completed at 23:03:49.772161
----------
2145 started at 23:03:49.772588. Tweet_id -> 669942763794931712
2145 completed at 23:03:51.599521
----------
2146 started at 23:03:51.599721. Tweet_id -> 669926384437997569
2146 completed at 23:03:52.712700
----------
2147 started at 23:03:52.712939. Tweet_id -> 669923323644657664
2147 completed at 23:03:53.763130
----------
2148 started at 23:03:53.763708. Tweet_id -> 669753178989142016
2148 completed at 23:03:54.801969
----------
2149 started at 23:03:54.802751. Tweet_id -> 669749430875258880
2149 completed at 23:03:56.175143
----------
2150 started at 23:03:56.175318. Tweet_id -> 669684865554620416
2150 completed at 23:03:57.215900
----------
2151 started at 23:03:57.216069. Tweet_id -> 669683899023405056
2151 completed at 23:03:58.584509
----------
2152 started at 23:03:58.584691. Tweet_id -> 669682095984410625
2152 completed at 23:03:59.644034
----------
2153 started at 23:03:59.644365. Tweet_id -> 669680153564442624
2153 completed at 23:04:00.686060
----------
2154 started at 23:04:00.686309. Tweet_id -> 669661792646373376
2154 completed at 23:04:01.710450
----------
2155 started at 23:04:01.711123. Tweet_id -> 669625907762618368
2155 completed at 23:04:02.873979
----------
2156 started at 23:04:02.874145. Tweet_id -> 669603084620980224
2156 completed at 23:04:04.286366
----------
2157 started at 23:04:04.286538. Tweet_id -> 669597912108789760
2157 completed at 23:04:05.343170
----------
2158 started at 23:04:05.343340. Tweet_id -> 669583744538451968
2158 completed at 23:04:06.804572
----------
2159 started at 23:04:06.805587. Tweet_id -> 669573570759163904
2159 completed at 23:04:08.038284
----------
2160 started at 23:04:08.038446. Tweet_id -> 669571471778410496
2160 completed at 23:04:09.080211
----------
2161 started at 23:04:09.080335. Tweet_id -> 669567591774625800
2161 completed at 23:04:10.399895
----------
2162 started at 23:04:10.401447. Tweet_id -> 669564461267722241
2162 completed at 23:04:11.823382
----------
2163 started at 23:04:11.823544. Tweet_id -> 669393256313184256
2163 completed at 23:04:12.968637
----------
2164 started at 23:04:12.968804. Tweet_id -> 669375718304980992
2164 completed at 23:04:14.004714
----------
2165 started at 23:04:14.004848. Tweet_id -> 669371483794317312
2165 completed at 23:04:15.140676
----------
2166 started at 23:04:15.140829. Tweet_id -> 669367896104181761
2166 completed at 23:04:16.571418
----------
2167 started at 23:04:16.571584. Tweet_id -> 669363888236994561
2167 completed at 23:04:17.606599
----------
2168 started at 23:04:17.607051. Tweet_id -> 669359674819481600
2168 completed at 23:04:18.652347
----------
2169 started at 23:04:18.652575. Tweet_id -> 669354382627049472
2169 completed at 23:04:19.702120
----------
2170 started at 23:04:19.702308. Tweet_id -> 669353438988365824
2170 completed at 23:04:20.831126
----------
2171 started at 23:04:20.831309. Tweet_id -> 669351434509529089
2171 completed at 23:04:21.984260
----------
2172 started at 23:04:21.984438. Tweet_id -> 669328503091937280
2172 completed at 23:04:23.112447
----------
2173 started at 23:04:23.112590. Tweet_id -> 669327207240699904
2173 completed at 23:04:24.139345
----------
2174 started at 23:04:24.139516. Tweet_id -> 669324657376567296
2174 completed at 23:04:25.486773
----------
2175 started at 23:04:25.486960. Tweet_id -> 669216679721873412
2175 completed at 23:04:26.628461
----------
2176 started at 23:04:26.628645. Tweet_id -> 669214165781868544
2176 completed at 23:04:27.715432
----------
2177 started at 23:04:27.715547. Tweet_id -> 669203728096960512
2177 completed at 23:04:28.964021
----------
2178 started at 23:04:28.964192. Tweet_id -> 669037058363662336
2178 completed at 23:04:30.082645
----------
2179 started at 23:04:30.082805. Tweet_id -> 669015743032369152
2179 completed at 23:04:31.141963
----------
2180 started at 23:04:31.142113. Tweet_id -> 669006782128353280
2180 completed at 23:04:32.180485
----------
2181 started at 23:04:32.180661. Tweet_id -> 669000397445533696
2181 completed at 23:04:33.603496
----------
2182 started at 23:04:33.604060. Tweet_id -> 668994913074286592
2182 completed at 23:04:35.130657
----------
2183 started at 23:04:35.130830. Tweet_id -> 668992363537309700
2183 completed at 23:04:36.370386
----------
2184 started at 23:04:36.370821. Tweet_id -> 668989615043424256
2184 completed at 23:04:37.580824
----------
2185 started at 23:04:37.581238. Tweet_id -> 668988183816871936
2185 completed at 23:04:38.746120
----------
2186 started at 23:04:38.746381. Tweet_id -> 668986018524233728
2186 completed at 23:04:39.949064
----------
2187 started at 23:04:39.949214. Tweet_id -> 668981893510119424
2187 completed at 23:04:41.128254
----------
2188 started at 23:04:41.128899. Tweet_id -> 668979806671884288
2188 completed at 23:04:42.263327
----------
2189 started at 23:04:42.263514. Tweet_id -> 668975677807423489
2189 completed at 23:04:43.388063
----------
2190 started at 23:04:43.388270. Tweet_id -> 668967877119254528
2190 completed at 23:04:44.506088
----------
2191 started at 23:04:44.506697. Tweet_id -> 668960084974809088
2191 completed at 23:04:45.941181
----------
2192 started at 23:04:45.941593. Tweet_id -> 668955713004314625
2192 completed at 23:04:46.998920
----------
2193 started at 23:04:46.999107. Tweet_id -> 668932921458302977
2193 completed at 23:04:48.079373
----------
2194 started at 23:04:48.079545. Tweet_id -> 668902994700836864
2194 completed at 23:04:49.239187
----------
2195 started at 23:04:49.239517. Tweet_id -> 668892474547511297
2195 completed at 23:04:50.350107
----------
2196 started at 23:04:50.350556. Tweet_id -> 668872652652679168
2196 completed at 23:04:51.703408
----------
2197 started at 23:04:51.703600. Tweet_id -> 668852170888998912
2197 completed at 23:04:52.867294
----------
2198 started at 23:04:52.867411. Tweet_id -> 668826086256599040
2198 completed at 23:04:53.922340
----------
2199 started at 23:04:53.922502. Tweet_id -> 668815180734689280
2199 completed at 23:04:55.172847
----------
2200 started at 23:04:55.173021. Tweet_id -> 668779399630725120
2200 completed at 23:04:56.272229
----------
2201 started at 23:04:56.272413. Tweet_id -> 668655139528511488
2201 completed at 23:04:57.521596
----------
2202 started at 23:04:57.521721. Tweet_id -> 668645506898350081
2202 completed at 23:04:58.679322
----------
2203 started at 23:04:58.679521. Tweet_id -> 668643542311546881
2203 completed at 23:05:00.096679
----------
2204 started at 23:05:00.097038. Tweet_id -> 668641109086707712
2204 completed at 23:05:01.137253
----------
2205 started at 23:05:01.137429. Tweet_id -> 668636665813057536
2205 completed at 23:05:02.349550
----------
2206 started at 23:05:02.349930. Tweet_id -> 668633411083464705
2206 completed at 23:05:03.572314
----------
2207 started at 23:05:03.572437. Tweet_id -> 668631377374486528
2207 completed at 23:05:04.613401
----------
2208 started at 23:05:04.613587. Tweet_id -> 668627278264475648
2208 completed at 23:05:05.870931
----------
2209 started at 23:05:05.871127. Tweet_id -> 668625577880875008
2209 completed at 23:05:07.042911
----------
2210 started at 23:05:07.043089. Tweet_id -> 668623201287675904
2210 completed at 23:05:08.100194
----------
2211 started at 23:05:08.100327. Tweet_id -> 668620235289837568
2211 completed at 23:05:09.204152
----------
2212 started at 23:05:09.204326. Tweet_id -> 668614819948453888
2212 completed at 23:05:10.392802
----------
2213 started at 23:05:10.392954. Tweet_id -> 668587383441514497
2213 completed at 23:05:11.785642
----------
2214 started at 23:05:11.786237. Tweet_id -> 668567822092664832
2214 completed at 23:05:12.874415
----------
2215 started at 23:05:12.874645. Tweet_id -> 668544745690562560
2215 completed at 23:05:14.358848
----------
2216 started at 23:05:14.358965. Tweet_id -> 668542336805281792
2216 completed at 23:05:15.666700
----------
2217 started at 23:05:15.666891. Tweet_id -> 668537837512433665
2217 completed at 23:05:16.991640
----------
2218 started at 23:05:16.991787. Tweet_id -> 668528771708952576
2218 completed at 23:05:18.234532
----------
2219 started at 23:05:18.234700. Tweet_id -> 668507509523615744
2219 completed at 23:05:19.437348
----------
2220 started at 23:05:19.437535. Tweet_id -> 668496999348633600
2220 completed at 23:05:20.566902
----------
2221 started at 23:05:20.567360. Tweet_id -> 668484198282485761
2221 completed at 23:05:23.179814
----------
2222 started at 23:05:23.180023. Tweet_id -> 668480044826800133
2222 completed at 23:05:24.302847
----------
2223 started at 23:05:24.303022. Tweet_id -> 668466899341221888
2223 completed at 23:05:25.943575
----------
2224 started at 23:05:25.943785. Tweet_id -> 668297328638447616
2224 completed at 23:05:27.927689
----------
2225 started at 23:05:27.928395. Tweet_id -> 668291999406125056
2225 completed at 23:05:29.247734
----------
2226 started at 23:05:29.247897. Tweet_id -> 668286279830867968
2226 completed at 23:05:30.349452
----------
2227 started at 23:05:30.349654. Tweet_id -> 668274247790391296
2227 completed at 23:05:31.596525
----------
2228 started at 23:05:31.597269. Tweet_id -> 668268907921326080
2228 completed at 23:05:32.807685
----------
2229 started at 23:05:32.807836. Tweet_id -> 668256321989451776
2229 completed at 23:05:34.060627
----------
2230 started at 23:05:34.060803. Tweet_id -> 668248472370458624
2230 completed at 23:05:35.209686
----------
2231 started at 23:05:35.209845. Tweet_id -> 668237644992782336
2231 completed at 23:05:36.494721
----------
2232 started at 23:05:36.495462. Tweet_id -> 668226093875376128
2232 completed at 23:05:37.864017
----------
2233 started at 23:05:37.864157. Tweet_id -> 668221241640230912
2233 completed at 23:05:39.064799
----------
2234 started at 23:05:39.064947. Tweet_id -> 668204964695683073
2234 completed at 23:05:40.118782
----------
2235 started at 23:05:40.118930. Tweet_id -> 668190681446379520
2235 completed at 23:05:41.182772
----------
2236 started at 23:05:41.182924. Tweet_id -> 668171859951755264
2236 completed at 23:05:43.107380
----------
2237 started at 23:05:43.107839. Tweet_id -> 668154635664932864
2237 completed at 23:05:44.295219
----------
2238 started at 23:05:44.295352. Tweet_id -> 668142349051129856
2238 completed at 23:05:45.405159
----------
2239 started at 23:05:45.405663. Tweet_id -> 668113020489474048
2239 completed at 23:05:46.493201
----------
2240 started at 23:05:46.493326. Tweet_id -> 667937095915278337
2240 completed at 23:05:47.947077
----------
2241 started at 23:05:47.947246. Tweet_id -> 667924896115245057
2241 completed at 23:05:49.146468
----------
2242 started at 23:05:49.146641. Tweet_id -> 667915453470232577
2242 completed at 23:05:50.230989
----------
2243 started at 23:05:50.231157. Tweet_id -> 667911425562669056
2243 completed at 23:05:51.506637
----------
2244 started at 23:05:51.506799. Tweet_id -> 667902449697558528
2244 completed at 23:05:52.793388
----------
2245 started at 23:05:52.793627. Tweet_id -> 667886921285246976
2245 completed at 23:05:53.961013
----------
2246 started at 23:05:53.961163. Tweet_id -> 667885044254572545
2246 completed at 23:05:55.080624
----------
2247 started at 23:05:55.080806. Tweet_id -> 667878741721415682
2247 completed at 23:05:56.320990
----------
2248 started at 23:05:56.321534. Tweet_id -> 667873844930215936
2248 completed at 23:05:57.450065
----------
2249 started at 23:05:57.450219. Tweet_id -> 667866724293877760
2249 completed at 23:05:59.084599
----------
2250 started at 23:05:59.084785. Tweet_id -> 667861340749471744
2250 completed at 23:06:00.238463
----------
2251 started at 23:06:00.238769. Tweet_id -> 667832474953625600
2251 completed at 23:06:01.434842
----------
2252 started at 23:06:01.434991. Tweet_id -> 667806454573760512
2252 completed at 23:06:02.561842
----------
2253 started at 23:06:02.562327. Tweet_id -> 667801013445750784
2253 completed at 23:06:03.781074
----------
2254 started at 23:06:03.781396. Tweet_id -> 667793409583771648
2254 completed at 23:06:04.844128
----------
2255 started at 23:06:04.844286. Tweet_id -> 667782464991965184
2255 completed at 23:06:06.071683
----------
2256 started at 23:06:06.072365. Tweet_id -> 667773195014021121
2256 completed at 23:06:07.529205
----------
2257 started at 23:06:07.529380. Tweet_id -> 667766675769573376
2257 completed at 23:06:08.754524
----------
2258 started at 23:06:08.754785. Tweet_id -> 667728196545200128
2258 completed at 23:06:09.949604
----------
2259 started at 23:06:09.949732. Tweet_id -> 667724302356258817
2259 completed at 23:06:11.197392
----------
2260 started at 23:06:11.197543. Tweet_id -> 667550904950915073
2260 completed at 23:06:12.308342
----------
2261 started at 23:06:12.308516. Tweet_id -> 667550882905632768
2261 completed at 23:06:13.441770
----------
2262 started at 23:06:13.442241. Tweet_id -> 667549055577362432
2262 completed at 23:06:14.514257
----------
2263 started at 23:06:14.514437. Tweet_id -> 667546741521195010
2263 completed at 23:06:15.963567
----------
2264 started at 23:06:15.963758. Tweet_id -> 667544320556335104
2264 completed at 23:06:17.026337
----------
2265 started at 23:06:17.026483. Tweet_id -> 667538891197542400
2265 completed at 23:06:18.147786
----------
2266 started at 23:06:18.147962. Tweet_id -> 667534815156183040
2266 completed at 23:06:19.235684
----------
2267 started at 23:06:19.235852. Tweet_id -> 667530908589760512
2267 completed at 23:06:20.596100
----------
2268 started at 23:06:20.596250. Tweet_id -> 667524857454854144
2268 completed at 23:06:21.843708
----------
2269 started at 23:06:21.844259. Tweet_id -> 667517642048163840
2269 completed at 23:06:29.545774
----------
2270 started at 23:06:29.545915. Tweet_id -> 667509364010450944
2270 completed at 23:06:30.713391
----------
2271 started at 23:06:30.713508. Tweet_id -> 667502640335572993
2271 completed at 23:06:31.813155
----------
2272 started at 23:06:31.813307. Tweet_id -> 667495797102141441
2272 completed at 23:06:32.901484
----------
2273 started at 23:06:32.901640. Tweet_id -> 667491009379606528
2273 completed at 23:06:34.240823
----------
2274 started at 23:06:34.240981. Tweet_id -> 667470559035432960
2274 completed at 23:06:35.634119
----------
2275 started at 23:06:35.634282. Tweet_id -> 667455448082227200
2275 completed at 23:06:36.837998
----------
2276 started at 23:06:36.838196. Tweet_id -> 667453023279554560
2276 completed at 23:06:38.140739
----------
2277 started at 23:06:38.140927. Tweet_id -> 667443425659232256
2277 completed at 23:06:39.251931
----------
2278 started at 23:06:39.252083. Tweet_id -> 667437278097252352
2278 completed at 23:06:40.467425
----------
2279 started at 23:06:40.467604. Tweet_id -> 667435689202614272
2279 completed at 23:06:41.536266
----------
2280 started at 23:06:41.536419. Tweet_id -> 667405339315146752
2280 completed at 23:06:43.183010
----------
2281 started at 23:06:43.183449. Tweet_id -> 667393430834667520
2281 completed at 23:06:44.398611
----------
2282 started at 23:06:44.399411. Tweet_id -> 667369227918143488
2282 completed at 23:06:45.578592
----------
2283 started at 23:06:45.578899. Tweet_id -> 667211855547486208
2283 completed at 23:06:47.045136
----------
2284 started at 23:06:47.045297. Tweet_id -> 667200525029539841
2284 completed at 23:06:48.318020
----------
2285 started at 23:06:48.318225. Tweet_id -> 667192066997374976
2285 completed at 23:06:49.507303
----------
2286 started at 23:06:49.507455. Tweet_id -> 667188689915760640
2286 completed at 23:06:50.576465
----------
2287 started at 23:06:50.576673. Tweet_id -> 667182792070062081
2287 completed at 23:06:51.959329
----------
2288 started at 23:06:51.959500. Tweet_id -> 667177989038297088
2288 completed at 23:06:53.041609
----------
2289 started at 23:06:53.041736. Tweet_id -> 667176164155375616
2289 completed at 23:06:54.383269
----------
2290 started at 23:06:54.383478. Tweet_id -> 667174963120574464
2290 completed at 23:06:55.609759
----------
2291 started at 23:06:55.609912. Tweet_id -> 667171260800061440
2291 completed at 23:06:56.738649
----------
2292 started at 23:06:56.738898. Tweet_id -> 667165590075940865
2292 completed at 23:06:57.814880
----------
2293 started at 23:06:57.815022. Tweet_id -> 667160273090932737
2293 completed at 23:06:59.063196
----------
2294 started at 23:06:59.064608. Tweet_id -> 667152164079423490
2294 completed at 23:07:00.440859
----------
2295 started at 23:07:00.441233. Tweet_id -> 667138269671505920
2295 completed at 23:07:01.559634
----------
2296 started at 23:07:01.559788. Tweet_id -> 667119796878725120
2296 completed at 23:07:02.776363
----------
2297 started at 23:07:02.776544. Tweet_id -> 667090893657276420
2297 completed at 23:07:03.871981
----------
2298 started at 23:07:03.872140. Tweet_id -> 667073648344346624
2298 completed at 23:07:05.258816
----------
2299 started at 23:07:05.258973. Tweet_id -> 667070482143944705
2299 completed at 23:07:06.444990
----------
2300 started at 23:07:06.445144. Tweet_id -> 667065535570550784
2300 completed at 23:07:07.606568
----------
2301 started at 23:07:07.607088. Tweet_id -> 667062181243039745
2301 completed at 23:07:08.677182
----------
2302 started at 23:07:08.677585. Tweet_id -> 667044094246576128
2302 completed at 23:07:14.207480
----------
2303 started at 23:07:14.207638. Tweet_id -> 667012601033924608
2303 completed at 23:07:15.385915
----------
2304 started at 23:07:15.386298. Tweet_id -> 666996132027977728
2304 completed at 23:07:16.610348
----------
2305 started at 23:07:16.610525. Tweet_id -> 666983947667116034
2305 completed at 23:07:18.094029
----------
2306 started at 23:07:18.094176. Tweet_id -> 666837028449972224
2306 completed at 23:07:19.756775
----------
2307 started at 23:07:19.756948. Tweet_id -> 666835007768551424
2307 completed at 23:07:20.913435
----------
2308 started at 23:07:20.913806. Tweet_id -> 666826780179869698
2308 completed at 23:07:22.031998
----------
2309 started at 23:07:22.032217. Tweet_id -> 666817836334096384
2309 completed at 23:07:23.152365
----------
2310 started at 23:07:23.152764. Tweet_id -> 666804364988780544
2310 completed at 23:07:24.591705
----------
2311 started at 23:07:24.591887. Tweet_id -> 666786068205871104
2311 completed at 23:07:25.909815
----------
2312 started at 23:07:25.910444. Tweet_id -> 666781792255496192
2312 completed at 23:07:27.187245
----------
2313 started at 23:07:27.187440. Tweet_id -> 666776908487630848
2313 completed at 23:07:28.343694
----------
2314 started at 23:07:28.343869. Tweet_id -> 666739327293083650
2314 completed at 23:07:29.417649
----------
2315 started at 23:07:29.417857. Tweet_id -> 666701168228331520
2315 completed at 23:07:30.479448
----------
2316 started at 23:07:30.479616. Tweet_id -> 666691418707132416
2316 completed at 23:07:31.543895
----------
2317 started at 23:07:31.544077. Tweet_id -> 666649482315059201
2317 completed at 23:07:32.760388
----------
2318 started at 23:07:32.760556. Tweet_id -> 666644823164719104
2318 completed at 23:07:33.886776
----------
2319 started at 23:07:33.886942. Tweet_id -> 666454714377183233
2319 completed at 23:07:34.955645
----------
2320 started at 23:07:34.955823. Tweet_id -> 666447344410484738
2320 completed at 23:07:36.121199
----------
2321 started at 23:07:36.121350. Tweet_id -> 666437273139982337
2321 completed at 23:07:37.219137
----------
2322 started at 23:07:37.219303. Tweet_id -> 666435652385423360
2322 completed at 23:07:38.634256
----------
2323 started at 23:07:38.634416. Tweet_id -> 666430724426358785
2323 completed at 23:07:39.807783
----------
2324 started at 23:07:39.807917. Tweet_id -> 666428276349472768
2324 completed at 23:07:40.912506
----------
2325 started at 23:07:40.912710. Tweet_id -> 666421158376562688
2325 completed at 23:07:41.975399
----------
2326 started at 23:07:41.975633. Tweet_id -> 666418789513326592
2326 completed at 23:07:43.052772
----------
2327 started at 23:07:43.052987. Tweet_id -> 666411507551481857
2327 completed at 23:07:44.238407
----------
2328 started at 23:07:44.238555. Tweet_id -> 666407126856765440
2328 completed at 23:07:45.363098
----------
2329 started at 23:07:45.363308. Tweet_id -> 666396247373291520
2329 completed at 23:07:46.447740
----------
2330 started at 23:07:46.448169. Tweet_id -> 666373753744588802
2330 completed at 23:07:47.973411
----------
2331 started at 23:07:47.974225. Tweet_id -> 666362758909284353
2331 completed at 23:07:49.130429
----------
2332 started at 23:07:49.130630. Tweet_id -> 666353288456101888
2332 completed at 23:07:50.282130
----------
2333 started at 23:07:50.282284. Tweet_id -> 666345417576210432
2333 completed at 23:07:51.377684
----------
2334 started at 23:07:51.378463. Tweet_id -> 666337882303524864
2334 completed at 23:07:52.470849
----------
2335 started at 23:07:52.471000. Tweet_id -> 666293911632134144
2335 completed at 23:07:53.840802
----------
2336 started at 23:07:53.840980. Tweet_id -> 666287406224695296
2336 completed at 23:07:55.213593
----------
2337 started at 23:07:55.213816. Tweet_id -> 666273097616637952
2337 completed at 23:07:56.358767
----------
2338 started at 23:07:56.358930. Tweet_id -> 666268910803644416
2338 completed at 23:07:57.731008
----------
2339 started at 23:07:57.731182. Tweet_id -> 666104133288665088
2339 completed at 23:07:59.003560
----------
2340 started at 23:07:59.003746. Tweet_id -> 666102155909144576
2340 completed at 23:08:00.120643
----------
2341 started at 23:08:00.121031. Tweet_id -> 666099513787052032
2341 completed at 23:08:01.245994
----------
2342 started at 23:08:01.246224. Tweet_id -> 666094000022159362
2342 completed at 23:08:02.437807
----------
2343 started at 23:08:02.437977. Tweet_id -> 666082916733198337
2343 completed at 23:08:03.522792
----------
2344 started at 23:08:03.523390. Tweet_id -> 666073100786774016
2344 completed at 23:08:04.750867
----------
2345 started at 23:08:04.751509. Tweet_id -> 666071193221509120
2345 completed at 23:08:05.958200
----------
2346 started at 23:08:05.958376. Tweet_id -> 666063827256086533
2346 completed at 23:08:07.372735
----------
2347 started at 23:08:07.372915. Tweet_id -> 666058600524156928
2347 completed at 23:08:08.497593
----------
2348 started at 23:08:08.497755. Tweet_id -> 666057090499244032
2348 completed at 23:08:09.649500
----------
2349 started at 23:08:09.649669. Tweet_id -> 666055525042405380
2349 completed at 23:08:10.740071
----------
2350 started at 23:08:10.740206. Tweet_id -> 666051853826850816
2350 completed at 23:08:12.003929
----------
2351 started at 23:08:12.004358. Tweet_id -> 666050758794694657
2351 completed at 23:08:13.444247
----------
2352 started at 23:08:13.444693. Tweet_id -> 666049248165822465
2352 completed at 23:08:14.589342
----------
2353 started at 23:08:14.589757. Tweet_id -> 666044226329800704
2353 completed at 23:08:15.822011
----------
2354 started at 23:08:15.822150. Tweet_id -> 666033412701032449
2354 completed at 23:08:16.963779
----------
2355 started at 23:08:16.963922. Tweet_id -> 666029285002620928
2355 completed at 23:08:18.165178
----------
2356 started at 23:08:18.165401. Tweet_id -> 666020888022790149
2356 completed at 23:08:19.291045
In [15]:
# Extract selected Twitter API data from file to a list
tweet_list = []

with open(file_name) as file:
    tweets = json.load(file)
    for tweet in tweets:
        tweet_list.append({'tweet_id': tweet['id'],
                        'retweet_count': tweet['retweet_count'], 
                        'favorite_count': tweet['favorite_count'],
                        'followers_count': tweet['user']['followers_count']})
#tweet_list
In [16]:
# Create a dataframe from tweet_list list of dictionaries
df_api = pd.DataFrame(tweet_list, columns = ['tweet_id', 
                                            'retweet_count', 
                                            'favorite_count', 
                                            'followers_count'])
In [17]:
df_api.head(5).T
Out[17]:
0 1 2 3 4
tweet_id 892420643555336193 892177421306343426 891815181378084864 891689557279858688 891327558926688256
retweet_count 8377 6185 4092 8519 9227
favorite_count 38250 32791 24693 41578 39754
followers_count 7418513 7418513 7420630 7418513 7418513
In [18]:
tweet_errors.keys()
Out[18]:
dict_keys(['888202515573088257', '873697596434513921', '872668790621863937', '869988702071779329', '866816280283807744', '861769973181624320', '845459076796616705', '842892208864923648', '837012587749474308', '827228250799742977', '802247111496568832', '775096608509886464', '770743923962707968', '754011816964026368'])
In [19]:
# Save API responses dataframe to pickle
if SEND_API_REQUEST:
    df_api.to_pickle("./tweet_json.pkl")
In [20]:
# Test: Read API responses from pickle
df_api = pd.read_pickle("./tweet_json.pkl")
In [21]:
df_api.head(5).T
Out[21]:
0 1 2 3 4
tweet_id 892420643555336193 892177421306343426 891815181378084864 891689557279858688 891327558926688256
retweet_count 8377 6185 4092 8519 9227
favorite_count 38250 32791 24693 41578 39754
followers_count 7418513 7418513 7420630 7418513 7418513
In [22]:
len(tweet_errors)
Out[22]:
14
In [23]:
if SEND_API_REQUEST:
    tweet_errors['888202515573088257']
In [24]:
# Create a dataframe from tweet_errors dictionary
err_list = []

for item in tweet_errors:
    # Remove [] from both ends of the string s
    s = tweet_errors[item][1:-1] 
    # Replace \' with \", so the json parser can deserialize s into a dictionary
    s = s.replace("'", '"')
    #print(s)
    d = json.loads(s)
    err_list.append({'tweet_id': item,
                    'code' : d['code'],
                    'message' : d['message']})

# Create a dataframe from err_list list of dictionaries
df_api_err = pd.DataFrame(err_list, columns = ['tweet_id', 
                                            'code', 
                                            'message'])
In [25]:
df_api_err.head(5).T
Out[25]:
0 1 2 3 4
tweet_id 888202515573088257 873697596434513921 872668790621863937 869988702071779329 866816280283807744
code 144 144 144 144 144
message No status found with that ID. No status found with that ID. No status found with that ID. No status found with that ID. No status found with that ID.
In [26]:
# Save API errors dataframe to pickle
if SEND_API_REQUEST:
    df_api_err.to_pickle("./tweet_json_error.pkl")
In [27]:
# Test: Read API errors from pickle
df_api_err = pd.read_pickle("./tweet_json_error.pkl")
In [28]:
df_api_err.head(2).T
Out[28]:
0 1
tweet_id 888202515573088257 873697596434513921
code 144 144
message No status found with that ID. No status found with that ID.

Step 2: Assessing Data


df_arch - The WeRateDogs Twitter archive

I will only focus on variables I plan to use later, namely:

  • tweet_id (int64) unique identifier of a tweet
  • timestamp (datetime) UTC time when this Tweet was created
  • source (str) Utility used to post the Tweet, as an HTML-formatted string
  • text (str) The actual UTF-8 text of the status update
  • rating_numerator (int64) dog rating numerator
  • rating_denominator (int64) dog rating denominator
  • name - dog's name
  • doggo, floofer, pupper, puppo are kind of a dog personality
In [29]:
df_arch.head(2).T
Out[29]:
0 1
tweet_id 892420643555336193 892177421306343426
in_reply_to_status_id NaN NaN
in_reply_to_user_id NaN NaN
timestamp 2017-08-01 16:23:56 +0000 2017-08-01 00:17:27 +0000
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV
retweeted_status_id NaN NaN
retweeted_status_user_id NaN NaN
retweeted_status_timestamp NaN NaN
expanded_urls https://twitter.com/dog_rates/status/892420643555336193/photo/1 https://twitter.com/dog_rates/status/892177421306343426/photo/1
rating_numerator 13 13
rating_denominator 10 10
name Phineas Tilly
doggo None None
floofer None None
pupper None None
puppo None None
In [30]:
# Review all records
df_arch.T
Out[30]:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355
tweet_id 892420643555336193 892177421306343426 891815181378084864 891689557279858688 891327558926688256 891087950875897856 890971913173991426 890729181411237888 890609185150312448 890240255349198849 890006608113172480 889880896479866881 889665388333682689 889638837579907072 889531135344209921 889278841981685760 888917238123831296 888804989199671297 888554962724278272 888202515573088257 888078434458587136 887705289381826560 887517139158093824 887473957103951883 887343217045368832 887101392804085760 886983233522544640 886736880519319552 886680336477933568 886366144734445568 886267009285017600 886258384151887873 886054160059072513 885984800019947520 885528943205470208 885518971528720385 885311592912609280 885167619883638784 884925521741709313 884876753390489601 884562892145688576 884441805382717440 884247878851493888 884162670584377345 883838122936631299 883482846933004288 883360690899218434 883117836046086144 882992080364220416 882762694511734784 882627270321602560 882268110199369728 882045870035918850 881906580714921986 881666595344535552 881633300179243008 881536004380872706 881268444196462592 880935762899988482 880872448815771648 880465832366813184 880221127280381952 880095782870896641 879862464715927552 879674319642796034 879492040517615616 879415818425184262 879376492567855104 879130579576475649 879050749262655488 879008229531029506 878776093423087618 878604707211726852 878404777348136964 878316110768087041 878281511006478336 878057613040115712 877736472329191424 877611172832227328 877556246731214848 877316821321428993 877201837425926144 876838120628539392 876537666061221889 876484053909872640 876120275196170240 875747767867523072 875144289856114688 875097192612077568 875021211251597312 874680097055178752 874434818259525634 874296783580663808 874057562936811520 874012996292530176 873697596434513921 873580283840344065 873337748698140672 873213775632977920 872967104147763200 872820683541237760 872668790621863937 872620804844003328 872486979161796608 872261713294495745 872122724285648897 871879754684805121 871762521631449091 871515927908634625 871166179821445120 871102520638267392 871032628920680449 870804317367881728 870726314365509632 870656317836468226 870374049280663552 870308999962521604 870063196459192321 869988702071779329 869772420881756160 869702957897576449 869596645499047938 869227993411051520 868880397819494401 868639477480148993 868622495443632128 868552278524837888 867900495410671616 867774946302451713 867421006826221569 867072653475098625 867051520902168576 866816280283807744 866720684873056260 866686824827068416 866450705531457537 866334964761202691 866094527597207552 865718153858494464 865359393868664832 865006731092295680 864873206498414592 864279568663928832 864197398364647424 863907417377173506 863553081350529029 863471782782697472 863432100342583297 863427515083354112 863079547188785154 863062471531167744 862831371563274240 862722525377298433 862457590147678208 862096992088072192 861769973181624320 861383897657036800 861288531465048066 861005113778896900 860981674716409858 860924035999428608 860563773140209665 860524505164394496 860276583193509888 860184849394610176 860177593139703809 859924526012018688 859851578198683649 859607811541651456 859196978902773760 859074603037188101 858860390427611136 858843525470990336 858471635011153920 858107933456039936 857989990357356544 857746408056729600 857393404942143489 857263160327368704 857214891891077121 857062103051644929 857029823797047296 856602993587888130 856543823941562368 856526610513747968 856330835276025856 856288084350160898 856282028240666624 855862651834028034 855860136149123072 855857698524602368 855851453814013952 855818117272018944 855459453768019968 855245323840757760 855138241867124737 854732716440526848 854482394044301312 854365224396361728 854120357044912130 854010172552949760 853760880890318849 853639147608842240 853299958564483072 852936405516943360 852912242202992640 852672615818899456 852553447878664193 852311364735569921 852226086759018497 852189679701164033 851953902622658560 851861385021730816 851591660324737024 851464819735769094 851224888060895234 850753642995093505 850380195714523136 850333567704068097 850145622816686080 850019790995546112 849776966551130114 849668094696017920 849412302885593088 849336543269576704 849051919805034497 848690551926992896 848324959059550208 848213670039564288 848212111729840128 847978865427394560 847971574464610304 847962785489326080 847842811428974592 847617282490613760 847606175596138505 847251039262605312 847157206088847362 847116187444137987 846874817362120707 846514051647705089 846505985330044928 846153765933735936 846139713627017216 846042936437604353 845812042753855489 845677943972139009 845459076796616705 845397057150107648 845306882940190720 845098359547420673 844979544864018432 844973813909606400 844704788403113984 844580511645339650 844223788422217728 843981021012017153 843856843873095681 843604394117681152 843235543001513987 842892208864923648 842846295480000512 842765311967449089 842535590457499648 842163532590374912 842115215311396866 841833993020538882 841680585030541313 841439858740625411 841320156043304961 841314665196081154 841077006473256960 840761248237133825 840728873075638272 840698636975636481 840696689258311684 840632337062862849 840370681858686976 840268004936019968 839990271299457024 839549326359670784 839290600511926273 839239871831150596 838952994649550848 838921590096166913 838916489579200512 838831947270979586 838561493054533637 838476387338051585 838201503651401729 838150277551247360 838085839343206401 838083903487373313 837820167694528512 837482249356513284 837471256429613056 837366284874571778 837110210464448512 837012587749474308 836989968035819520 836753516572119041 836677758902222849 836648853927522308 836397794269200385 836380477523124226 836260088725786625 836001077879255040 835685285446955009 835574547218894849 835536468978302976 835309094223372289 835297930240217089 835264098648616962 835246439529840640 835172783151792128 835152434251116546 834931633769889797 834786237630337024 834574053763584002 834477809192075265 834458053273591808 834209720923721728 834167344700198914 834089966724603904 834086379323871233 833863086058651648 833826103416520705 833732339549220864 833722901757046785 833479644947025920 833124694597443584 832998151111966721 832769181346996225 832757312314028032 832682457690300417 832645525019123713 832636094638288896 832397543355072512 832369877331693569 832273440279240704 832215909146226688 832215726631055365 832088576586297345 832040443403784192 832032802820481025 831939777352105988 831926988323639298 831911600680497154 831670449226514432 831650051525054464 831552930092285952 831322785565769729 831315979191906304 831309418084069378 831262627380748289 830956169170665475 830583320585068544 830173239259324417 830097400375152640 829878982036299777 829861396166877184 829501995190984704 829449946868879360 829374341691346946 829141528400556032 829011960981237760 828801551087042563 828770345708580865 828708714936930305 828650029636317184 828409743546925057 828408677031882754 828381636999917570 828376505180889089 828372645993398273 828361771580813312 828046555563323392 828011680017821696 827933404142436356 827653905312006145 827600520311402496 827324948884643840 827228250799742977 827199976799354881 826958653328592898 826848821049180160 826615380357632002 826598799820865537 826598365270007810 826476773533745153 826240494070030336 826204788643753985 826115272272650244 825876512159186944 825829644528148480 825535076884762624 825147591692263424 825120256414846976 825026590719483904 824796380199809024 824775126675836928 824663926340194305 824325613288833024 824297048279236611 824025158776213504 823939628516474880 823719002937630720 823699002998870016 823581115634085888 823333489516937216 823322678127919110 823269594223824897 822975315408461824 822872901745569793 822859134160621569 822647212903690241 822610361945911296 822489057087389700 822462944365645825 822244816520155136 822163064745328640 821886076407029760 821813639212650496 821765923262631936 821522889702862852 821421320206483457 821407182352777218 821153421864615936 821149554670182400 821107785811234820 821044531881721856 820837357901512704 820749716845686786 820690176645140481 820494788566847489 820446719150292993 820314633777061888 820078625395449857 820013781606658049 819952236453363712 819924195358416896 819711362133872643 819588359383371776 819347104292290561 819238181065359361 819227688460238848 819015337530290176 819015331746349057 819006400881917954 819004803107983360 818646164899774465 818627210458333184 818614493328580609 818588835076603904 818536468981415936 818307523543449600 818259473185828864 818145370475810820 817908911860748288 817827839487737858 817777686764523521 817536400337801217 817502432452313088 817423860136083457 817415592588222464 817181837579653120 817171292965273600 817120970343411712 817056546584727552 816829038950027264 816816676327063552 816697700272001025 816450570814898180 816336735214911488 816091915477250048 816062466425819140 816014286006976512 815990720817401858 815966073409433600 815745968457060357 815736392542261248 815639385530101762 815390420867969024 814986499976527872 814638523311648768 814578408554463233 814530161257443328 814153002265309185 813944609378369540 813910438903693312 813812741911748608 813800681631023104 813217897535406080 813202720496779264 813187593374461952 813172488309972993 813157409116065792 813142292504645637 813130366689148928 813127251579564032 813112105746448384 813096984823349248 813081950185472002 813066809284972545 813051746834595840 812781120811126785 812747805718642688 812709060537683968 812503143955202048 812466873996607488 812372279581671427 811985624773361665 811744202451197953 811647686436880384 811627233043480576 811386762094317568 810984652412424192 810896069567610880 810657578271330305 810284430598270976 810254108431155201 809920764300447744 809808892968534016 809448704142938112 809220051211603969 809084759137812480 808838249661788160 808733504066486276 808501579447930884 808344865868283904 808134635716833280 808106460588765185 808001312164028416 807621403335917568 807106840509214720 807059379405148160 807010152071229440 806629075125202948 806620845233815552 806576416489959424 806542213899489280 806242860592926720 806219024703037440 805958939288408065 805932879469572096 805826884734976000 805823200554876929 805520635690676224 805487436403003392 805207613751304193 804738756058218496 804475857670639616 804413760345620481 804026241225523202 803773340896923648 803692223237865472 803638050916102144 803380650405482500 803321560782307329 803276597545603072 802952499103731712 802624713319034886 802600418706604034 802572683846291456 802323869084381190 802265048156610565 802247111496568832 802239329049477120 802185808107208704 801958328846974976 801854953262350336 801538201127157760 801285448605831168 801167903437357056 801127390143516673 801115127852503040 800859414831898624 800855607700029440 800751577355128832 800513324630806528 800459316964663297 800443802682937345 800388270626521089 800188575492947969 800141422401830912 800018252395122689 799774291445383169 799757965289017345 799422933579902976 799308762079035393 799297110730567681 799063482566066176 798933969379225600 798925684722855936 798705661114773508 798701998996647937 798697898615730177 798694562394996736 798686750113755136 798682547630837760 798673117451325440 798665375516884993 798644042770751489 798628517273620480 798585098161549313 798576900688019456 798340744599797760 798209839306514432 797971864723324932 797545162159308800 797236660651966464 797165961484890113 796904159865868288 796865951799083009 796759840936919040 796563435802726400 796484825502875648 796387464403357696 796177847564038144 796149749086875649 796125600683540480 796116448414461957 796080075804475393 796031486298386433 795464331001561088 795400264262053889 795076730285391872 794983741416415232 794926597468000259 794355576146903043 794332329137291264 794205286408003585 793962221541933056 793845145112371200 793614319594401792 793601777308463104 793500921481273345 793286476301799424 793271401113350145 793256262322548741 793241302385262592 793226087023144960 793210959003287553 793195938047070209 793180763617361921 793165685325201412 793150605191548928 793135492858580992 793120401413079041 792913359805018113 792883833364439040 792773781206999040 792394556390137856 792050063153438720 791821351946420224 791784077045166082 791780927877898241 791774931465953280 791672322847637504 791406955684368384 791312159183634433 791026214425268224 790987426131050500 790946055508652032 790723298204217344 790698755171364864 790581949425475584 790337589677002753 790277117346975746 790227638568808452 789986466051088384 789960241177853952 789903600034189313 789628658055020548 789599242079838210 789530877013393408 789314372632018944 789280767834746880 789268448748703744 789137962068021249 788908386943430656 788765914992902144 788552643979468800 788412144018661376 788178268662984705 788150585577050112 788070120937619456 788039637453406209 787810552592695296 787717603741622272 787397959788929025 787322443945877504 787111942498508800 786963064373534720 786729988674449408 786709082849828864 786664955043049472 786595970293370880 786363235746385920 786286427768250368 786233965241827333 786051337297522688 786036967502913536 785927819176054784 785872687017132033 785639753186217984 785533386513321988 785515384317313025 785264754247995392 785170936622350336 784826020293709826 784517518371221505 784431430411685888 784183165795655680 784057939640352768 783839966405230592 783821107061198850 783695101801398276 783466772167098368 783391753726550016 783347506784731136 783334639985389568 783085703974514689 782969140009107456 782747134529531904 782722598790725632 782598640137187329 782305867769217024 782021823840026624 781955203444699136 781661882474196992 781655249211752448 781524693396357120 781308096455073793 781251288990355457 781163403222056960 780931614150983680 780858289093574656 780800785462489090 780601303617732608 780543529827336192 780496263422808064 780476555013349377 780459368902959104 780192070812196864 780092040432480260 780074436359819264 779834332596887552 779377524342161408 779124354206535695 779123168116150273 779056095788752897 778990705243029504 778774459159379968 778764940568104960 778748913645780993 778650543019483137 778624900596654080 778408200802557953 778396591732486144 778383385161035776 778286810187399168 778039087836069888 778027034220126208 777953400541634568 777885040357281792 777684233540206592 777641927919427584 777621514455814149 777189768882946048 776819012571455488 776813020089548800 776477788987613185 776249906839351296 776218204058357768 776201521193218049 776113305656188928 776088319444877312 775898661951791106 775842724423557120 775733305207554048 775729183532220416 775364825476165632 775350846108426240 775096608509886464 775085132600442880 774757898236878852 774639387460112384 774314403806253056 773985732834758656 773922284943896577 773704687002451968 773670353721753600 773547596996571136 773336787167145985 773308824254029826 773247561583001600 773191612633579521 772877495989305348 772826264096874500 772615324260794368 772581559778025472 772193107915964416 772152991789019136 772117678702071809 772114945936949249 772102971039580160 771908950375665664 771770456517009408 771500966810099713 771380798096281600 771171053431250945 771136648247640064 771102124360998913 771014301343748096 771004394259247104 770787852854652928 770772759874076672 770743923962707968 770655142660169732 770414278348247044 770293558247038976 770093767776997377 770069151037685760 769940425801170949 769695466921623552 769335591808995329 769212283578875904 768970937022709760 768909767477751808 768855141948723200 768609597686943744 768596291618299904 768554158521745409 768473857036525572 768193404517830656 767884188863397888 767754930266464257 767500508068192258 767191397493538821 767122157629476866 766864461642756096 766793450729734144 766714921925144576 766693177336135680 766423258543644672 766313316352462849 766078092750233600 766069199026450432 766008592277377025 765719909049503744 765669560888528897 765395769549590528 765371061932261376 765222098633691136 764857477905154048 764259802650378240 763956972077010945 763837565564780549 763183847194451968 763167063695355904 763103485927849985 762699858130116608 762471784394268675 762464539388485633 762316489655476224 762035686371364864 761976711479193600 761750502866649088 761745352076779520 761672994376806400 761599872357261312 761371037149827077 761334018830917632 761292947749015552 761227390836215808 761004547850530816 760893934457552897 760656994973933572 760641137271070720 760539183865880579 760521673607086080 760290219849637889 760252756032651264 760190180481531904 760153949710192640 759943073749200896 759923798737051648 759846353224826880 759793422261743616 759566828574212096 759557299618865152 759447681597108224 759446261539934208 759197388317847553 759159934323924993 759099523532779520 759047813560868866 758854675097526272 758828659922702336 758740312047005698 758474966123810816 758467244762497024 758405701903519748 758355060040593408 758099635764359168 758041019896193024 757741869644341248 757729163776290825 757725642876129280 757611664640446465 757597904299253760 757596066325864448 757400162377592832 757393109802180609 757354760399941633 756998049151549440 756939218950160384 756651752796094464 756526248105566208 756303284449767430 756288534030475264 756275833623502848 755955933503782912 755206590534418437 755110668769038337 754874841593970688 754856583969079297 754747087846248448 754482103782404096 754449512966619136 754120377874386944 754011816964026368 753655901052166144 753420520834629632 753398408988139520 753375668877008896 753298634498793472 753294487569522689 753039830821511168 753026973505581056 752932432744185856 752917284578922496 752701944171524096 752682090207055872 752660715232722944 752568224206688256 752519690950500352 752334515931054080 752309394570878976 752173152931807232 751950017322246144 751937170840121344 751830394383790080 751793661361422336 751598357617971201 751583847268179968 751538714308972544 751456908746354688 751251247299190784 751205363882532864 751132876104687617 750868782890057730 750719632563142656 750506206503038976 750429297815552001 750383411068534784 750381685133418496 750147208377409536 750132105863102464 750117059602808832 750101899009982464 750086836815486976 750071704093859840 750056684286914561 750041628174217216 750026558547456000 750011400160841729 749996283729883136 749981277374128128 749774190421639168 749417653287129088 749403093750648834 749395845976588288 749317047558017024 749075273010798592 749064354620928000 749036806121881602 748977405889503236 748932637671223296 748705597323898880 748699167502000129 748692773788876800 748575535303884801 748568946752774144 748346686624440324 748337862848962560 748324050481647620 748307329658011649 748220828303695873 747963614829678593 747933425676525569 747885874273214464 747844099428986880 747816857231626240 747651430853525504 747648653817413632 747600769478692864 747594051852075008 747512671126323200 747461612269887489 747439450712596480 747242308580548608 747219827526344708 747204161125646336 747103485104099331 746906459439529985 746872823977771008 746818907684614144 746790600704425984 746757706116112384 746726898085036033 746542875601690625 746521445350707200 746507379341139972 746369468511756288 746131877086527488 746056683365994496 745789745784041472 745712589599014916 745433870967832576 745422732645535745 745314880350101504 745074613265149952 745057283344719872 744995568523612160 744971049620602880 744709971296780288 744334592493166593 744234799360020481 744223424764059648 743980027717509120 743895849529389061 743835915802583040 743609206067040256 743595368194129920 743545585370791937 743510151680958465 743253157753532416 743222593470234624 743210557239623680 742534281772302336 742528092657332225 742465774154047488 742423170473463808 742385895052087300 742161199639494656 742150209887731712 741793263812808706 741743634094141440 741438259667034112 741303864243200000 741099773336379392 741067306818797568 740995100998766593 740711788199743490 740699697422163968 740676976021798912 740373189193256964 740365076218183684 740359016048689152 740214038584557568 739979191639244800 739932936087216128 739844404073074688 739623569819336705 739606147276148736 739544079319588864 739485634323156992 739238157791694849 738891149612572673 738885046782832640 738883359779196928 738537504001953792 738402415918125056 738184450748633089 738166403467907072 738156290900254721 737826014890496000 737800304142471168 737678689543020544 737445876994609152 737322739594330112 737310737551491075 736736130620620800 736392552031657984 736365877722001409 736225175608430592 736010884653420544 735991953473572864 735648611367784448 735635087207878657 735274964362878976 735256018284875776 735137028879360001 734912297295085568 734787690684657664 734776360183431168 734559631394082816 733828123016450049 733822306246479872 733482008106668032 733460102733135873 733109485275860992 732732193018155009 732726085725589504 732585889486888962 732375214819057664 732005617171337216 731285275100512256 731156023742988288 730924654643314689 730573383004487680 730427201120833536 730211855403241472 730196704625098752 729854734790754305 729838605770891264 729823566028484608 729463711119904772 729113531270991872 728986383096946689 728760639972315136 728751179681943552 728653952833728512 728409960103686147 728387165835677696 728046963732717569 728035342121635841 728015554473250816 727685679342333952 727644517743104000 727524757080539137 727314416056803329 727286334147182592 727175381690781696 727155742655025152 726935089318363137 726887082820554753 726828223124897792 726224900189511680 725842289046749185 725786712245440512 725729321944506368 725458796924002305 724983749226668032 724771698126512129 724405726123311104 724049859469295616 724046343203856385 724004602748780546 723912936180330496 723688335806480385 723673163800948736 723179728551723008 722974582966214656 722613351520608256 721503162398597120 721001180231503872 720785406564900865 720775346191278080 720415127506415616 720389942216527872 720340705894408192 720059472081784833 720043174954147842 719991154352222208 719704490224398336 719551379208073216 719367763014393856 719339463458033665 719332531645071360 718971898235854848 718939241951195136 718631497683582976 718613305783398402 718540630683709445 718460005985447936 718454725339934721 718246886998687744 718234618122661888 717841801130979328 717790033953034240 717537687239008257 717428917016076293 717421804990701568 717047459982213120 717009362452090881 716802964044845056 716791146589110272 716730379797970944 716447146686459905 716439118184652801 716285507865542656 716080869887381504 715928423106027520 715758151270801409 715733265223708672 715704790270025728 715696743237730304 715680795826982913 715360349751484417 715342466308784130 715220193576927233 715200624753819648 715009755312439296 714982300363173890 714962719905021952 714957620017307648 714631576617938945 714606013974974464 714485234495041536 714258258790387713 714251586676113411 714214115368108032 714141408463036416 713919462244790272 713909862279876608 713900603437621249 713761197720473600 713411074226274305 713177543487135744 713175907180089344 712809025985978368 712717840512598017 712668654853337088 712438159032893441 712309440758808576 712097430750289920 712092745624633345 712085617388212225 712065007010385924 711998809858043904 711968124745228288 711743778164514816 711732680602345472 711694788429553666 711652651650457602 711363825979756544 711306686208872448 711008018775851008 710997087345876993 710844581445812225 710833117892898816 710658690886586372 710609963652087808 710588934686908417 710296729921429505 710283270106132480 710272297844797440 710269109699739648 710153181850935296 710140971284037632 710117014656950272 709918798883774466 709901256215666688 709852847387627521 709566166965075968 709556954897764353 709519240576036864 709449600415961088 709409458133323776 709225125749587968 709207347839836162 709198395643068416 709179584944730112 709158332880297985 709042156699303936 708853462201716736 708845821941387268 708834316713893888 708810915978854401 708738143638450176 708711088997666817 708479650088034305 708469915515297792 708400866336894977 708356463048204288 708349470027751425 708149363256774660 708130923141795840 708119489313951744 708109389455101952 708026248782585858 707995814724026368 707983188426153984 707969809498152960 707776935007539200 707741517457260545 707738799544082433 707693576495472641 707629649552134146 707610948723478529 707420581654872064 707411934438625280 707387676719185920 707377100785885184 707315916783140866 707297311098011648 707059547140169728 707038192327901184 707021089608753152 707014260413456384 706904523814649856 706901761596989440 706681918348251136 706644897839910912 706593038911545345 706538006853918722 706516534877929472 706346369204748288 706310011488698368 706291001778950144 706265994973601792 706169069255446529 706166467411222528 706153300320784384 705975130514706432 705970349788291072 705898680587526145 705786532653883392 705591895322394625 705475953783398401 705442520700944385 705428427625635840 705239209544720384 705223444686888960 705102439679201280 705066031337840642 704871453724954624 704859558691414016 704847917308362754 704819833553219584 704761120771465216 704499785726889984 704491224099647488 704480331685040129 704364645503647744 704347321748819968 704134088924532736 704113298707505153 704054845121142784 703774238772166656 703769065844768768 703631701117943808 703611486317502464 703425003149250560 703407252292673536 703382836347330562 703356393781329922 703268521220972544 703079050210877440 703041949650034688 702932127499816960 702899151802126337 702684942141153280 702671118226825216 702598099714314240 702539513671897089 702332542343577600 702321140488925184 702276748847800320 702217446468493312 701981390485725185 701952816642965504 701889187134500865 701805642395348998 701601587219795968 701570477911896070 701545186879471618 701214700881756160 700890391244103680 700864154249383937 700847567345688576 700796979434098688 700747788515020802 700518061187723268 700505138482569216 700462010979500032 700167517596164096 700151421916807169 700143752053182464 700062718104104960 700029284593901568 700002074055016451 699801817392291840 699788877217865730 699779630832685056 699775878809702401 699691744225525762 699446877801091073 699434518667751424 699423671849451520 699413908797464576 699370870310113280 699323444782047232 699088579889332224 699079609774645248 699072405256409088 699060279947165696 699036661657767936 698989035503689728 698953797952008193 698907974262222848 698710712454139905 698703483621523456 698635131305795584 698549713696649216 698355670425473025 698342080612007937 698262614669991936 698195409219559425 698178924120031232 697995514407682048 697990423684476929 697943111201378304 697881462549430272 697630435728322560 697616773278015490 697596423848730625 697575480820686848 697516214579523584 697482927769255936 697463031882764288 697270446429966336 697259378236399616 697255105972801536 697242256848379904 696900204696625153 696894894812565505 696886256886657024 696877980375769088 696754882863349760 696744641916489729 696713835009417216 696518437233913856 696490539101908992 696488710901260288 696405997980676096 696100768806522880 695816827381944320 695794761660297217 695767669421768709 695629776980148225 695446424020918272 695409464418041856 695314793360662529 695095422348574720 695074328191332352 695064344191721472 695051054296211456 694925794720792577 694905863685980160 694669722378485760 694356675654983680 694352839993344000 694342028726001664 694329668942569472 694206574471057408 694183373896572928 694001791655137281 693993230313091072 693942351086120961 693647888581312512 693644216740769793 693642232151285760 693629975228977152 693622659251335168 693590843962331137 693582294167244802 693486665285931008 693280720173801472 693267061318012928 693262851218264065 693231807727280129 693155686491000832 693109034023534592 693095443459342336 692919143163629568 692905862751522816 692901601640583168 692894228850999298 692828166163931137 692752401762250755 692568918515392513 692535307825213440 692530551048294401 692423280028966913 692417313023332352 692187005137076224 692158366030913536 692142790915014657 692041934689402880 692017291282812928 691820333922455552 691793053716221953 691756958957883396 691675652215414786 691483041324204033 691459709405118465 691444869282295808 691416866452082688 691321916024623104 691096613310316544 691090071332753408 690989312272396288 690959652130045952 690938899477221376 690932576555528194 690735892932222976 690728923253055490 690690673629138944 690649993829576704 690607260360429569 690597161306841088 690400367696297985 690374419777196032 690360449368465409 690348396616552449 690248561355657216 690021994562220032 690015576308211712 690005060500217858 689999384604450816 689993469801164801 689977555533848577 689905486972461056 689877686181715968 689835978131935233 689661964914655233 689659372465688576 689623661272240129 689599056876867584 689557536375177216 689517482558820352 689289219123089408 689283819090870273 689280876073582592 689275259254616065 689255633275777024 689154315265683456 689143371370250240 688916208532455424 688908934925697024 688898160958271489 688894073864884227 688828561667567616 688804835492233216 688789766343622656 688547210804498433 688519176466644993 688385280030670848 688211956440801280 688179443353796608 688116655151435777 688064179421470721 687841446767013888 687826841265172480 687818504314159109 687807801670897665 687732144991551489 687704180304273409 687664829264453632 687494652870668288 687480748861947905 687476254459715584 687460506001633280 687399393394311168 687317306314240000 687312378585812992 687127927494963200 687124485711986689 687109925361856513 687102708889812993 687096057537363968 686947101016735744 686760001961103360 686749460672679938 686730991906516992 686683045143953408 686618349602762752 686606069955735556 686394059078897668 686386521809772549 686377065986265092 686358356425093120 686286779679375361 686050296934563840 686035780142297088 686034024800862208 686007916130873345 686003207160610816 685973236358713344 685943807276412928 685906723014619143 685681090388975616 685667379192414208 685663452032069632 685641971164143616 685547936038666240 685532292383666176 685325112850124800 685321586178670592 685315239903100929 685307451701334016 685268753634967552 685198997565345792 685169283572338688 684969860808454144 684959798585110529 684940049151070208 684926975086034944 684914660081053696 684902183876321280 684880619965411328 684830982659280897 684800227459624960 684594889858887680 684588130326986752 684567543613382656 684538444857667585 684481074559381504 684460069371654144 684241637099323392 684225744407494656 684222868335505415 684200372118904832 684195085588783105 684188786104872960 684177701129875456 684147889187209216 684122891630342144 684097758874210310 683857920510050305 683852578183077888 683849932751646720 683834909291606017 683828599284170753 683773439333797890 683742671509258241 683515932363329536 683498322573824003 683481228088049664 683462770029932544 683449695444799489 683391852557561860 683357973142474752 683142553609318400 683111407806746624 683098815881154561 683078886620553216 683030066213818368 682962037429899265 682808988178739200 682788441537560576 682750546109968385 682697186228989953 682662431982772225 682638830361513985 682429480204398592 682406705142087680 682393905736888321 682389078323662849 682303737705140231 682259524040966145 682242692827447297 682088079302213632 682059653698686977 682047327939461121 682032003584274432 682003177596559360 681981167097122816 681891461017812993 681694085539872773 681679526984871937 681654059175129088 681610798867845120 681579835668455424 681523177663676416 681340665377193984 681339448655802368 681320187870711809 681302363064414209 681297372102656000 681281657291280384 681261549936340994 681242418453299201 681231109724700672 681193455364796417 680970795137544192 680959110691590145 680940246314430465 680934982542561280 680913438424612864 680889648562991104 680836378243002368 680805554198020098 680801747103793152 680798457301471234 680609293079592961 680583894916304897 680497766108381184 680494726643068929 680473011644985345 680440374763077632 680221482581123072 680206703334408192 680191257256136705 680176173301628928 680161097740095489 680145970311643136 680130881361686529 680115823365742593 680100725817409536 680085611152338944 680070545539371008 680055455951884288 679877062409191424 679872969355714560 679862121895714818 679854723806179328 679844490799091713 679828447187857408 679777920601223168 679736210798047232 679729593985699840 679722016581222400 679530280114372609 679527802031484928 679511351870550016 679503373272485890 679475951516934144 679462823135686656 679405845277462528 679158373988876288 679148763231985668 679132435750195208 679111216690831360 679062614270468097 679047485189439488 679001094530465792 678991772295516161 678969228704284672 678800283649069056 678798276842360832 678774928607469569 678767140346941444 678764513869611008 678755239630127104 678740035362037760 678708137298427904 678675843183484930 678643457146150913 678446151570427904 678424312106393600 678410210315247616 678399652199309312 678396796259975168 678389028614488064 678380236862578688 678341075375947776 678334497360859136 678278586130948096 678255464182861824 678023323247357953 678021115718029313 677961670166224897 677918531514703872 677895101218201600 677716515794329600 677700003327029250 677698403548192770 677687604918272002 677673981332312066 677662372920729601 677644091929329666 677573743309385728 677565715327688705 677557565589463040 677547928504967168 677530072887205888 677335745548390400 677334615166730240 677331501395156992 677328882937298944 677314812125323265 677301033169788928 677269281705472000 677228873407442944 677187300187611136 676975532580409345 676957860086095872 676949632774234114 676948236477857792 676946864479084545 676942428000112642 676936541936185344 676916996760600576 676897532954456065 676864501615042560 676821958043033607 676819651066732545 676811746707918848 676776431406465024 676617503762681856 676613908052996102 676606785097199616 676603393314578432 676593408224403456 676590572941893632 676588346097852417 676582956622721024 676575501977128964 676533798876651520 676496375194980353 676470639084101634 676440007570247681 676430933382295552 676263575653122048 676237365392908289 676219687039057920 676215927814406144 676191832485810177 676146341966438401 676121918416756736 676101918813499392 676098748976615425 676089483918516224 675898130735476737 675891555769696257 675888385639251968 675878199931371520 675870721063669760 675853064436391936 675849018447167488 675845657354215424 675822767435051008 675820929667219457 675798442703122432 675781562965868544 675740360753160193 675710890956750848 675707330206547968 675706639471788032 675534494439489536 675531475945709568 675522403582218240 675517828909424640 675501075957489664 675497103322386432 675489971617296384 675483430902214656 675432746517426176 675372240448454658 675362609739206656 675354435921575936 675349384339542016 675334060156301312 675166823650848770 675153376133427200 675149409102012420 675147105808306176 675146535592706048 675145476954566656 675135153782571009 675113801096802304 675111688094527488 675109292475830276 675047298674663426 675015141583413248 675006312288268288 675003128568291329 674999807681908736 674805413498527744 674800520222154752 674793399141146624 674790488185167872 674788554665512960 674781762103414784 674774481756377088 674767892831932416 674764817387900928 674754018082705410 674752233200820224 674743008475090944 674742531037511680 674739953134403584 674737130913071104 674690135443775488 674670581682434048 674664755118911488 674646392044941312 674644256330530816 674638615994089473 674632714662858753 674606911342424069 674468880899788800 674447403907457024 674436901579923456 674422304705744896 674416750885273600 674410619106390016 674394782723014656 674372068062928900 674330906434379776 674318007229923329 674307341513269249 674291837063053312 674271431610523648 674269164442398721 674265582246694913 674262580978937856 674255168825880576 674082852460433408 674075285688614912 674063288070742018 674053186244734976 674051556661161984 674045139690631169 674042553264685056 674038233588723717 674036086168010753 674024893172875264 674019345211760640 674014384960745472 674008982932058114 673956914389192708 673919437611909120 673906403526995968 673887867907739649 673716320723169284 673715861853720576 673711475735838725 673709992831262724 673708611235921920 673707060090052608 673705679337693185 673700254269775872 673697980713705472 673689733134946305 673688752737402881 673686845050527744 673680198160809984 673662677122719744 673656262056419329 673636718965334016 673612854080196609 673583129559498752 673580926094458881 673576835670777856 673363615379013632 673359818736984064 673355879178194945 673352124999274496 673350198937153538 673345638550134785 673343217010679808 673342308415348736 673320132811366400 673317986296586240 673295268553605120 673270968295534593 673240798075449344 673213039743795200 673148804208660480 672997845381865473 672995267319328768 672988786805112832 672984142909456390 672980819271634944 672975131468300288 672970152493887488 672968025906282496 672964561327235073 672902681409806336 672898206762672129 672884426393653248 672877615439593473 672834301050937345 672828477930868736 672640509974827008 672622327801233409 672614745925664768 672609152938721280 672604026190569472 672594978741354496 672591762242805761 672591271085670400 672538107540070400 672523490734551040 672488522314567680 672482722825261057 672481316919734272 672475084225949696 672466075045466113 672272411274932228 672267570918129665 672264251789176834 672256522047614977 672254177670729728 672248013293752320 672245253877968896 672239279297454080 672231046314901505 672222792075620352 672205392827572224 672169685991993344 672160042234327040 672139350159835138 672125275208069120 672095186491711488 672082170312290304 672068090318987265 671896809300709376 671891728106971137 671882082306625538 671879137494245376 671874878652489728 671866342182637568 671855973984772097 671789708968640512 671768281401958400 671763349865160704 671744970634719232 671743150407421952 671735591348891648 671729906628341761 671561002136281088 671550332464455680 671547767500775424 671544874165002241 671542985629241344 671538301157904385 671536543010570240 671533943490011136 671528761649688577 671520732782923777 671518598289059840 671511350426865664 671504605491109889 671497587707535361 671488513339211776 671486386088865792 671485057807351808 671390180817915904 671362598324076544 671357843010908160 671355857343524864 671347597085433856 671186162933985280 671182547775299584 671166507850801152 671163268581498880 671159727754231808 671154572044468225 671151324042559489 671147085991960577 671141549288370177 671138694582165504 671134062904504320 671122204919246848 671115716440031232 671109016219725825 670995969505435648 670842764863651840 670840546554966016 670838202509447168 670833812859932673 670832455012716544 670826280409919488 670823764196741120 670822709593571328 670815497391357952 670811965569282048 670807719151067136 670804601705242624 670803562457407488 670797304698376195 670792680469889025 670789397210615808 670786190031921152 670783437142401025 670782429121134593 670780561024270336 670778058496974848 670764103623966721 670755717859713024 670733412878163972 670727704916926465 670717338665226240 670704688707301377 670691627984359425 670679630144274432 670676092097810432 670668383499735048 670474236058800128 670468609693655041 670465786746662913 670452855871037440 670449342516494336 670444955656130560 670442337873600512 670435821946826752 670434127938719744 670433248821026816 670428280563085312 670427002554466305 670421925039075328 670420569653809152 670417414769758208 670411370698022913 670408998013820928 670403879788544000 670385711116361728 670374371102445568 670361874861563904 670338931251150849 670319130621435904 670303360680108032 670290420111441920 670093938074779648 670086499208155136 670079681849372674 670073503555706880 670069087419133954 670061506722140161 670055038660800512 670046952931721218 670040295598354432 670037189829525505 670003130994700288 669993076832759809 669972011175813120 669970042633789440 669942763794931712 669926384437997569 669923323644657664 669753178989142016 669749430875258880 669684865554620416 669683899023405056 669682095984410625 669680153564442624 669661792646373376 669625907762618368 669603084620980224 669597912108789760 669583744538451968 669573570759163904 669571471778410496 669567591774625800 669564461267722241 669393256313184256 669375718304980992 669371483794317312 669367896104181761 669363888236994561 669359674819481600 669354382627049472 669353438988365824 669351434509529089 669328503091937280 669327207240699904 669324657376567296 669216679721873412 669214165781868544 669203728096960512 669037058363662336 669015743032369152 669006782128353280 669000397445533696 668994913074286592 668992363537309700 668989615043424256 668988183816871936 668986018524233728 668981893510119424 668979806671884288 668975677807423489 668967877119254528 668960084974809088 668955713004314625 668932921458302977 668902994700836864 668892474547511297 668872652652679168 668852170888998912 668826086256599040 668815180734689280 668779399630725120 668655139528511488 668645506898350081 668643542311546881 668641109086707712 668636665813057536 668633411083464705 668631377374486528 668627278264475648 668625577880875008 668623201287675904 668620235289837568 668614819948453888 668587383441514497 668567822092664832 668544745690562560 668542336805281792 668537837512433665 668528771708952576 668507509523615744 668496999348633600 668484198282485761 668480044826800133 668466899341221888 668297328638447616 668291999406125056 668286279830867968 668274247790391296 668268907921326080 668256321989451776 668248472370458624 668237644992782336 668226093875376128 668221241640230912 668204964695683073 668190681446379520 668171859951755264 668154635664932864 668142349051129856 668113020489474048 667937095915278337 667924896115245057 667915453470232577 667911425562669056 667902449697558528 667886921285246976 667885044254572545 667878741721415682 667873844930215936 667866724293877760 667861340749471744 667832474953625600 667806454573760512 667801013445750784 667793409583771648 667782464991965184 667773195014021121 667766675769573376 667728196545200128 667724302356258817 667550904950915073 667550882905632768 667549055577362432 667546741521195010 667544320556335104 667538891197542400 667534815156183040 667530908589760512 667524857454854144 667517642048163840 667509364010450944 667502640335572993 667495797102141441 667491009379606528 667470559035432960 667455448082227200 667453023279554560 667443425659232256 667437278097252352 667435689202614272 667405339315146752 667393430834667520 667369227918143488 667211855547486208 667200525029539841 667192066997374976 667188689915760640 667182792070062081 667177989038297088 667176164155375616 667174963120574464 667171260800061440 667165590075940865 667160273090932737 667152164079423490 667138269671505920 667119796878725120 667090893657276420 667073648344346624 667070482143944705 667065535570550784 667062181243039745 667044094246576128 667012601033924608 666996132027977728 666983947667116034 666837028449972224 666835007768551424 666826780179869698 666817836334096384 666804364988780544 666786068205871104 666781792255496192 666776908487630848 666739327293083650 666701168228331520 666691418707132416 666649482315059201 666644823164719104 666454714377183233 666447344410484738 666437273139982337 666435652385423360 666430724426358785 666428276349472768 666421158376562688 666418789513326592 666411507551481857 666407126856765440 666396247373291520 666373753744588802 666362758909284353 666353288456101888 666345417576210432 666337882303524864 666293911632134144 666287406224695296 666273097616637952 666268910803644416 666104133288665088 666102155909144576 666099513787052032 666094000022159362 666082916733198337 666073100786774016 666071193221509120 666063827256086533 666058600524156928 666057090499244032 666055525042405380 666051853826850816 666050758794694657 666049248165822465 666044226329800704 666033412701032449 666029285002620928 666020888022790149
in_reply_to_status_id NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.86266e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.81607e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.79554e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.70726e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.63426e+17 6.67152e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.57157e+17 NaN NaN NaN NaN 8.55818e+17 NaN 8.56286e+17 NaN 8.55862e+17 8.55859e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.50329e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.48212e+17 NaN NaN NaN NaN NaN 8.47606e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.591e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.40698e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.38145e+17 8.38086e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.35246e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.32088e+17 NaN NaN NaN 8.31903e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.26598e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.23326e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.21153e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.13127e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.11627e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.33109e+17 NaN NaN NaN NaN 8.01854e+17 NaN NaN NaN NaN NaN 8.00858e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.97124e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.72743e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.66712e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.63865e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.5018e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.47649e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.46886e+17 NaN 6.91417e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.38412e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.29114e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.0798e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.03256e+17 NaN NaN NaN NaN NaN NaN NaN NaN 6.67152e+17 NaN NaN NaN NaN NaN 7.04486e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.03042e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.96489e+17 NaN NaN NaN NaN NaN 6.75349e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.70668e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.93642e+17 NaN NaN NaN NaN 6.93572e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.92417e+17 NaN NaN NaN 6.92042e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.90341e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.86034e+17 NaN NaN NaN NaN NaN NaN 6.85548e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.8496e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.84481e+17 NaN NaN NaN 6.84223e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.82788e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.81339e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.78021e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.76588e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.75707e+17 NaN 6.75846e+17 NaN NaN NaN NaN NaN NaN NaN 6.75497e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.75e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.74793e+17 NaN NaN 6.7173e+17 NaN NaN NaN NaN NaN NaN 6.74752e+17 NaN NaN 6.7474e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.74469e+17 NaN NaN NaN NaN NaN NaN NaN NaN 6.65815e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.73716e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.71561e+17 NaN 6.71545e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.69354e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.67806e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.68921e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.67066e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
in_reply_to_user_id NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.28118e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.73844e+07 NaN NaN NaN NaN NaN NaN NaN NaN 3.10544e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.64878e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.75962e+07 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.80671e+08 NaN NaN NaN NaN 4.19698e+09 NaN 2.79281e+08 NaN 1.94352e+08 1.36157e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.19551e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.40548e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.19551e+07 2.89413e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.62596e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 3.05821e+07 NaN NaN NaN 2.06837e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.58285e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.13212e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 1.18563e+07 NaN NaN NaN NaN NaN 2.91859e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.91663e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.30505e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.58464e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.7173e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 3.58973e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.31911e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 2.87855e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 1.19899e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.67037e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 1.63747e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.14357e+07 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
timestamp 2017-08-01 16:23:56 +0000 2017-08-01 00:17:27 +0000 2017-07-31 00:18:03 +0000 2017-07-30 15:58:51 +0000 2017-07-29 16:00:24 +0000 2017-07-29 00:08:17 +0000 2017-07-28 16:27:12 +0000 2017-07-28 00:22:40 +0000 2017-07-27 16:25:51 +0000 2017-07-26 15:59:51 +0000 2017-07-26 00:31:25 +0000 2017-07-25 16:11:53 +0000 2017-07-25 01:55:32 +0000 2017-07-25 00:10:02 +0000 2017-07-24 17:02:04 +0000 2017-07-24 00:19:32 +0000 2017-07-23 00:22:39 +0000 2017-07-22 16:56:37 +0000 2017-07-22 00:23:06 +0000 2017-07-21 01:02:36 +0000 2017-07-20 16:49:33 +0000 2017-07-19 16:06:48 +0000 2017-07-19 03:39:09 +0000 2017-07-19 00:47:34 +0000 2017-07-18 16:08:03 +0000 2017-07-18 00:07:08 +0000 2017-07-17 16:17:36 +0000 2017-07-16 23:58:41 +0000 2017-07-16 20:14:00 +0000 2017-07-15 23:25:31 +0000 2017-07-15 16:51:35 +0000 2017-07-15 16:17:19 +0000 2017-07-15 02:45:48 +0000 2017-07-14 22:10:11 +0000 2017-07-13 15:58:47 +0000 2017-07-13 15:19:09 +0000 2017-07-13 01:35:06 +0000 2017-07-12 16:03:00 +0000 2017-07-12 00:01:00 +0000 2017-07-11 20:47:12 +0000 2017-07-11 00:00:02 +0000 2017-07-10 15:58:53 +0000 2017-07-10 03:08:17 +0000 2017-07-09 21:29:42 +0000 2017-07-09 00:00:04 +0000 2017-07-08 00:28:19 +0000 2017-07-07 16:22:55 +0000 2017-07-07 00:17:54 +0000 2017-07-06 15:58:11 +0000 2017-07-06 00:46:41 +0000 2017-07-05 15:48:34 +0000 2017-07-04 16:01:23 +0000 2017-07-04 01:18:17 +0000 2017-07-03 16:04:48 +0000 2017-07-03 00:11:11 +0000 2017-07-02 21:58:53 +0000 2017-07-02 15:32:16 +0000 2017-07-01 21:49:04 +0000 2017-06-30 23:47:07 +0000 2017-06-30 19:35:32 +0000 2017-06-29 16:39:47 +0000 2017-06-29 00:27:25 +0000 2017-06-28 16:09:20 +0000 2017-06-28 00:42:13 +0000 2017-06-27 12:14:36 +0000 2017-06-27 00:10:17 +0000 2017-06-26 19:07:24 +0000 2017-06-26 16:31:08 +0000 2017-06-26 00:13:58 +0000 2017-06-25 18:56:45 +0000 2017-06-25 16:07:47 +0000 2017-06-25 00:45:22 +0000 2017-06-24 13:24:20 +0000 2017-06-24 00:09:53 +0000 2017-06-23 18:17:33 +0000 2017-06-23 16:00:04 +0000 2017-06-23 01:10:23 +0000 2017-06-22 03:54:17 +0000 2017-06-21 19:36:23 +0000 2017-06-21 15:58:08 +0000 2017-06-21 00:06:44 +0000 2017-06-20 16:29:50 +0000 2017-06-19 16:24:33 +0000 2017-06-18 20:30:39 +0000 2017-06-18 16:57:37 +0000 2017-06-17 16:52:05 +0000 2017-06-16 16:11:53 +0000 2017-06-15 00:13:52 +0000 2017-06-14 21:06:43 +0000 2017-06-14 16:04:48 +0000 2017-06-13 17:29:20 +0000 2017-06-13 01:14:41 +0000 2017-06-12 16:06:11 +0000 2017-06-12 00:15:36 +0000 2017-06-11 21:18:31 +0000 2017-06-11 00:25:14 +0000 2017-06-10 16:39:04 +0000 2017-06-10 00:35:19 +0000 2017-06-09 16:22:42 +0000 2017-06-09 00:02:31 +0000 2017-06-08 14:20:41 +0000 2017-06-08 04:17:07 +0000 2017-06-08 01:06:27 +0000 2017-06-07 16:14:40 +0000 2017-06-07 01:19:32 +0000 2017-06-06 16:07:15 +0000 2017-06-06 00:01:46 +0000 2017-06-05 16:15:56 +0000 2017-06-04 23:56:03 +0000 2017-06-04 00:46:17 +0000 2017-06-03 20:33:19 +0000 2017-06-03 15:55:36 +0000 2017-06-03 00:48:22 +0000 2017-06-02 19:38:25 +0000 2017-06-02 15:00:16 +0000 2017-06-01 20:18:38 +0000 2017-06-01 16:00:09 +0000 2017-05-31 23:43:25 +0000 2017-05-31 18:47:24 +0000 2017-05-31 04:27:59 +0000 2017-05-30 23:51:58 +0000 2017-05-30 16:49:31 +0000 2017-05-29 16:24:37 +0000 2017-05-28 17:23:24 +0000 2017-05-28 01:26:04 +0000 2017-05-28 00:18:35 +0000 2017-05-27 19:39:34 +0000 2017-05-26 00:29:37 +0000 2017-05-25 16:10:44 +0000 2017-05-24 16:44:18 +0000 2017-05-23 17:40:04 +0000 2017-05-23 16:16:06 +0000 2017-05-23 00:41:20 +0000 2017-05-22 18:21:28 +0000 2017-05-22 16:06:55 +0000 2017-05-22 00:28:40 +0000 2017-05-21 16:48:45 +0000 2017-05-21 00:53:21 +0000 2017-05-19 23:57:46 +0000 2017-05-19 00:12:11 +0000 2017-05-18 00:50:50 +0000 2017-05-17 16:00:15 +0000 2017-05-16 00:41:21 +0000 2017-05-15 19:14:50 +0000 2017-05-15 00:02:33 +0000 2017-05-14 00:34:33 +0000 2017-05-13 19:11:30 +0000 2017-05-13 16:33:49 +0000 2017-05-13 16:15:35 +0000 2017-05-12 17:12:53 +0000 2017-05-12 16:05:02 +0000 2017-05-12 00:46:44 +0000 2017-05-11 17:34:13 +0000 2017-05-11 00:01:27 +0000 2017-05-10 00:08:34 +0000 2017-05-09 02:29:07 +0000 2017-05-08 00:54:59 +0000 2017-05-07 18:36:02 +0000 2017-05-06 23:49:50 +0000 2017-05-06 22:16:42 +0000 2017-05-06 18:27:40 +0000 2017-05-05 18:36:06 +0000 2017-05-05 16:00:04 +0000 2017-05-04 23:34:55 +0000 2017-05-04 17:30:24 +0000 2017-05-04 17:01:34 +0000 2017-05-04 00:15:58 +0000 2017-05-03 19:26:06 +0000 2017-05-03 03:17:27 +0000 2017-05-02 00:04:57 +0000 2017-05-01 15:58:40 +0000 2017-05-01 01:47:28 +0000 2017-05-01 00:40:27 +0000 2017-04-30 00:02:42 +0000 2017-04-28 23:57:28 +0000 2017-04-28 16:08:49 +0000 2017-04-28 00:00:54 +0000 2017-04-27 00:38:11 +0000 2017-04-26 16:00:39 +0000 2017-04-26 12:48:51 +0000 2017-04-26 02:41:43 +0000 2017-04-26 00:33:27 +0000 2017-04-24 20:17:23 +0000 2017-04-24 16:22:16 +0000 2017-04-24 15:13:52 +0000 2017-04-24 02:15:55 +0000 2017-04-23 23:26:03 +0000 2017-04-23 23:01:59 +0000 2017-04-22 19:15:32 +0000 2017-04-22 19:05:32 +0000 2017-04-22 18:55:51 +0000 2017-04-22 18:31:02 +0000 2017-04-22 16:18:34 +0000 2017-04-21 16:33:22 +0000 2017-04-21 02:22:29 +0000 2017-04-20 19:16:59 +0000 2017-04-19 16:25:34 +0000 2017-04-18 23:50:52 +0000 2017-04-18 16:05:17 +0000 2017-04-17 23:52:16 +0000 2017-04-17 16:34:26 +0000 2017-04-17 00:03:50 +0000 2017-04-16 16:00:07 +0000 2017-04-15 17:32:18 +0000 2017-04-14 17:27:40 +0000 2017-04-14 15:51:39 +0000 2017-04-13 23:59:28 +0000 2017-04-13 16:05:56 +0000 2017-04-13 00:03:59 +0000 2017-04-12 18:25:07 +0000 2017-04-12 16:00:27 +0000 2017-04-12 00:23:33 +0000 2017-04-11 18:15:55 +0000 2017-04-11 00:24:08 +0000 2017-04-10 16:00:07 +0000 2017-04-10 00:06:42 +0000 2017-04-08 16:54:09 +0000 2017-04-07 16:10:12 +0000 2017-04-07 13:04:55 +0000 2017-04-07 00:38:06 +0000 2017-04-06 16:18:05 +0000 2017-04-06 00:13:11 +0000 2017-04-05 17:00:34 +0000 2017-04-05 00:04:08 +0000 2017-04-04 19:03:06 +0000 2017-04-04 00:12:06 +0000 2017-04-03 00:16:10 +0000 2017-04-02 00:03:26 +0000 2017-04-01 16:41:12 +0000 2017-04-01 16:35:01 +0000 2017-04-01 01:08:10 +0000 2017-04-01 00:39:12 +0000 2017-04-01 00:04:17 +0000 2017-03-31 16:07:33 +0000 2017-03-31 01:11:22 +0000 2017-03-31 00:27:14 +0000 2017-03-30 00:56:03 +0000 2017-03-29 18:43:12 +0000 2017-03-29 16:00:12 +0000 2017-03-29 00:01:05 +0000 2017-03-28 00:07:32 +0000 2017-03-27 23:35:28 +0000 2017-03-27 00:15:53 +0000 2017-03-26 23:20:02 +0000 2017-03-26 16:55:29 +0000 2017-03-26 01:38:00 +0000 2017-03-25 16:45:08 +0000 2017-03-25 02:15:26 +0000 2017-03-24 22:08:59 +0000 2017-03-24 16:10:40 +0000 2017-03-24 02:22:04 +0000 2017-03-23 18:29:57 +0000 2017-03-23 18:07:10 +0000 2017-03-23 00:18:10 +0000 2017-03-22 16:04:20 +0000 2017-03-21 16:26:50 +0000 2017-03-21 00:22:10 +0000 2017-03-20 16:08:44 +0000 2017-03-19 23:25:35 +0000 2017-03-18 22:59:54 +0000 2017-03-18 00:15:37 +0000 2017-03-17 21:13:10 +0000 2017-03-17 15:51:22 +0000 2017-03-17 00:38:32 +0000 2017-03-16 00:00:07 +0000 2017-03-15 20:48:07 +0000 2017-03-15 02:10:39 +0000 2017-03-14 16:01:03 +0000 2017-03-14 00:04:30 +0000 2017-03-13 16:08:50 +0000 2017-03-13 15:47:01 +0000 2017-03-13 00:02:39 +0000 2017-03-12 03:07:56 +0000 2017-03-12 00:59:17 +0000 2017-03-11 22:59:09 +0000 2017-03-11 22:51:24 +0000 2017-03-11 18:35:42 +0000 2017-03-11 01:15:58 +0000 2017-03-10 18:27:58 +0000 2017-03-10 00:04:21 +0000 2017-03-08 18:52:12 +0000 2017-03-08 01:44:07 +0000 2017-03-07 22:22:32 +0000 2017-03-07 03:22:35 +0000 2017-03-07 01:17:48 +0000 2017-03-07 00:57:32 +0000 2017-03-06 19:21:35 +0000 2017-03-06 01:26:54 +0000 2017-03-05 19:48:43 +0000 2017-03-05 01:36:26 +0000 2017-03-04 22:12:52 +0000 2017-03-04 17:56:49 +0000 2017-03-04 17:49:08 +0000 2017-03-04 00:21:08 +0000 2017-03-03 01:58:22 +0000 2017-03-03 01:14:41 +0000 2017-03-02 18:17:34 +0000 2017-03-02 01:20:01 +0000 2017-03-01 18:52:06 +0000 2017-03-01 17:22:13 +0000 2017-03-01 01:42:39 +0000 2017-02-28 20:41:37 +0000 2017-02-28 18:46:45 +0000 2017-02-28 02:09:08 +0000 2017-02-28 01:00:19 +0000 2017-02-27 17:01:56 +0000 2017-02-26 23:52:43 +0000 2017-02-26 02:57:52 +0000 2017-02-25 19:37:50 +0000 2017-02-25 17:06:32 +0000 2017-02-25 02:03:02 +0000 2017-02-25 01:18:40 +0000 2017-02-24 23:04:14 +0000 2017-02-24 21:54:03 +0000 2017-02-24 17:01:22 +0000 2017-02-24 15:40:31 +0000 2017-02-24 01:03:08 +0000 2017-02-23 15:25:23 +0000 2017-02-23 01:22:14 +0000 2017-02-22 18:59:48 +0000 2017-02-22 17:41:18 +0000 2017-02-22 01:14:30 +0000 2017-02-21 22:26:07 +0000 2017-02-21 17:18:39 +0000 2017-02-21 17:04:24 +0000 2017-02-21 02:17:06 +0000 2017-02-20 23:50:09 +0000 2017-02-20 17:37:34 +0000 2017-02-20 17:00:04 +0000 2017-02-20 00:53:27 +0000 2017-02-19 01:23:00 +0000 2017-02-18 17:00:10 +0000 2017-02-18 01:50:19 +0000 2017-02-18 01:03:09 +0000 2017-02-17 20:05:43 +0000 2017-02-17 17:38:57 +0000 2017-02-17 17:01:29 +0000 2017-02-17 01:13:34 +0000 2017-02-16 23:23:38 +0000 2017-02-16 17:00:25 +0000 2017-02-16 13:11:49 +0000 2017-02-16 13:11:05 +0000 2017-02-16 04:45:50 +0000 2017-02-16 01:34:34 +0000 2017-02-16 01:04:13 +0000 2017-02-15 18:54:34 +0000 2017-02-15 18:03:45 +0000 2017-02-15 17:02:36 +0000 2017-02-15 01:04:21 +0000 2017-02-14 23:43:18 +0000 2017-02-14 17:17:22 +0000 2017-02-14 02:02:51 +0000 2017-02-14 01:35:49 +0000 2017-02-14 01:09:44 +0000 2017-02-13 22:03:49 +0000 2017-02-13 01:46:03 +0000 2017-02-12 01:04:29 +0000 2017-02-10 21:54:58 +0000 2017-02-10 16:53:37 +0000 2017-02-10 02:25:42 +0000 2017-02-10 01:15:49 +0000 2017-02-09 01:27:41 +0000 2017-02-08 22:00:52 +0000 2017-02-08 17:00:26 +0000 2017-02-08 01:35:19 +0000 2017-02-07 17:00:28 +0000 2017-02-07 03:04:22 +0000 2017-02-07 01:00:22 +0000 2017-02-06 20:55:28 +0000 2017-02-06 17:02:17 +0000 2017-02-06 01:07:28 +0000 2017-02-06 01:03:14 +0000 2017-02-05 23:15:47 +0000 2017-02-05 22:55:23 +0000 2017-02-05 22:40:03 +0000 2017-02-05 21:56:51 +0000 2017-02-05 01:04:17 +0000 2017-02-04 22:45:42 +0000 2017-02-04 17:34:40 +0000 2017-02-03 23:04:02 +0000 2017-02-03 19:31:54 +0000 2017-02-03 01:16:53 +0000 2017-02-02 18:52:38 +0000 2017-02-02 17:00:17 +0000 2017-02-02 01:01:21 +0000 2017-02-01 17:44:55 +0000 2017-02-01 02:17:19 +0000 2017-02-01 01:11:25 +0000 2017-02-01 01:09:42 +0000 2017-01-31 17:06:32 +0000 2017-01-31 01:27:39 +0000 2017-01-30 23:05:46 +0000 2017-01-30 17:10:04 +0000 2017-01-30 01:21:19 +0000 2017-01-29 22:15:05 +0000 2017-01-29 02:44:34 +0000 2017-01-28 01:04:51 +0000 2017-01-27 23:16:13 +0000 2017-01-27 17:04:02 +0000 2017-01-27 01:49:15 +0000 2017-01-27 00:24:48 +0000 2017-01-26 17:02:56 +0000 2017-01-25 18:38:36 +0000 2017-01-25 16:45:05 +0000 2017-01-24 22:44:42 +0000 2017-01-24 17:04:50 +0000 2017-01-24 02:28:08 +0000 2017-01-24 01:08:40 +0000 2017-01-23 17:20:14 +0000 2017-01-23 00:56:15 +0000 2017-01-23 00:13:17 +0000 2017-01-22 20:42:21 +0000 2017-01-22 01:12:59 +0000 2017-01-21 18:26:02 +0000 2017-01-21 17:31:20 +0000 2017-01-21 03:29:14 +0000 2017-01-21 01:02:48 +0000 2017-01-20 17:00:46 +0000 2017-01-20 15:17:01 +0000 2017-01-20 00:50:15 +0000 2017-01-19 19:25:24 +0000 2017-01-19 01:04:45 +0000 2017-01-18 20:16:54 +0000 2017-01-18 17:07:18 +0000 2017-01-18 01:01:34 +0000 2017-01-17 18:17:58 +0000 2017-01-17 17:21:47 +0000 2017-01-17 00:33:26 +0000 2017-01-17 00:18:04 +0000 2017-01-16 21:32:06 +0000 2017-01-16 17:20:45 +0000 2017-01-16 03:37:31 +0000 2017-01-15 21:49:15 +0000 2017-01-15 17:52:40 +0000 2017-01-15 04:56:16 +0000 2017-01-15 01:45:15 +0000 2017-01-14 17:00:24 +0000 2017-01-14 01:22:35 +0000 2017-01-13 21:04:55 +0000 2017-01-13 17:00:21 +0000 2017-01-13 15:08:56 +0000 2017-01-13 01:03:12 +0000 2017-01-12 16:54:26 +0000 2017-01-12 00:55:47 +0000 2017-01-11 17:42:57 +0000 2017-01-11 17:01:16 +0000 2017-01-11 02:57:27 +0000 2017-01-11 02:57:26 +0000 2017-01-11 02:21:57 +0000 2017-01-11 02:15:36 +0000 2017-01-10 02:30:30 +0000 2017-01-10 01:15:10 +0000 2017-01-10 00:24:38 +0000 2017-01-09 22:42:41 +0000 2017-01-09 19:14:36 +0000 2017-01-09 04:04:51 +0000 2017-01-09 00:53:55 +0000 2017-01-08 17:20:31 +0000 2017-01-08 01:40:55 +0000 2017-01-07 20:18:46 +0000 2017-01-07 16:59:28 +0000 2017-01-07 01:00:41 +0000 2017-01-06 22:45:43 +0000 2017-01-06 17:33:29 +0000 2017-01-06 17:00:38 +0000 2017-01-06 01:31:47 +0000 2017-01-06 00:49:53 +0000 2017-01-05 21:29:55 +0000 2017-01-05 17:13:55 +0000 2017-01-05 02:09:53 +0000 2017-01-05 01:20:46 +0000 2017-01-04 17:27:59 +0000 2017-01-04 01:05:59 +0000 2017-01-03 17:33:39 +0000 2017-01-03 01:20:49 +0000 2017-01-02 23:23:48 +0000 2017-01-02 20:12:21 +0000 2017-01-02 18:38:42 +0000 2017-01-02 17:00:46 +0000 2017-01-02 02:26:09 +0000 2017-01-02 01:48:06 +0000 2017-01-01 19:22:38 +0000 2017-01-01 02:53:20 +0000 2016-12-31 00:08:17 +0000 2016-12-30 01:05:33 +0000 2016-12-29 21:06:41 +0000 2016-12-29 17:54:58 +0000 2016-12-28 16:56:16 +0000 2016-12-28 03:08:11 +0000 2016-12-28 00:52:25 +0000 2016-12-27 18:24:12 +0000 2016-12-27 17:36:16 +0000 2016-12-26 03:00:30 +0000 2016-12-26 02:00:11 +0000 2016-12-26 01:00:05 +0000 2016-12-26 00:00:03 +0000 2016-12-25 23:00:08 +0000 2016-12-25 22:00:04 +0000 2016-12-25 21:12:41 +0000 2016-12-25 21:00:18 +0000 2016-12-25 20:00:07 +0000 2016-12-25 19:00:02 +0000 2016-12-25 18:00:17 +0000 2016-12-25 17:00:08 +0000 2016-12-25 16:00:16 +0000 2016-12-24 22:04:54 +0000 2016-12-24 19:52:31 +0000 2016-12-24 17:18:34 +0000 2016-12-24 03:40:19 +0000 2016-12-24 01:16:12 +0000 2016-12-23 19:00:19 +0000 2016-12-22 17:23:53 +0000 2016-12-22 01:24:33 +0000 2016-12-21 19:01:02 +0000 2016-12-21 17:39:46 +0000 2016-12-21 01:44:13 +0000 2016-12-19 23:06:23 +0000 2016-12-19 17:14:23 +0000 2016-12-19 01:26:42 +0000 2016-12-18 00:43:57 +0000 2016-12-17 22:43:27 +0000 2016-12-17 00:38:52 +0000 2016-12-16 17:14:20 +0000 2016-12-15 17:23:04 +0000 2016-12-15 02:14:29 +0000 2016-12-14 17:16:53 +0000 2016-12-14 00:57:20 +0000 2016-12-13 18:01:07 +0000 2016-12-13 02:39:32 +0000 2016-12-12 16:16:49 +0000 2016-12-12 02:21:26 +0000 2016-12-12 00:29:28 +0000 2016-12-11 17:31:39 +0000 2016-12-10 16:22:02 +0000 2016-12-09 06:17:20 +0000 2016-12-09 03:08:45 +0000 2016-12-08 23:53:08 +0000 2016-12-07 22:38:52 +0000 2016-12-07 22:06:10 +0000 2016-12-07 19:09:37 +0000 2016-12-07 16:53:43 +0000 2016-12-06 21:04:11 +0000 2016-12-06 19:29:28 +0000 2016-12-06 02:15:59 +0000 2016-12-06 00:32:26 +0000 2016-12-05 17:31:15 +0000 2016-12-05 17:16:37 +0000 2016-12-04 21:14:20 +0000 2016-12-04 19:02:24 +0000 2016-12-04 00:30:29 +0000 2016-12-02 17:27:25 +0000 2016-12-02 00:02:45 +0000 2016-12-01 19:56:00 +0000 2016-11-30 18:16:08 +0000 2016-11-30 01:31:12 +0000 2016-11-29 20:08:52 +0000 2016-11-29 16:33:36 +0000 2016-11-28 23:30:47 +0000 2016-11-28 19:35:59 +0000 2016-11-28 16:37:19 +0000 2016-11-27 19:09:28 +0000 2016-11-26 21:26:58 +0000 2016-11-26 19:50:26 +0000 2016-11-26 18:00:13 +0000 2016-11-26 01:31:31 +0000 2016-11-25 21:37:47 +0000 2016-11-25 20:26:31 +0000 2016-11-25 19:55:35 +0000 2016-11-25 16:22:55 +0000 2016-11-25 01:18:59 +0000 2016-11-24 18:28:13 +0000 2016-11-23 21:29:33 +0000 2016-11-23 04:45:12 +0000 2016-11-22 20:58:07 +0000 2016-11-22 18:17:08 +0000 2016-11-22 17:28:25 +0000 2016-11-22 00:32:18 +0000 2016-11-22 00:17:10 +0000 2016-11-21 17:23:47 +0000 2016-11-21 01:37:04 +0000 2016-11-20 22:02:27 +0000 2016-11-20 21:00:48 +0000 2016-11-20 17:20:08 +0000 2016-11-20 04:06:37 +0000 2016-11-20 00:59:15 +0000 2016-11-19 16:49:49 +0000 2016-11-19 00:40:24 +0000 2016-11-18 23:35:32 +0000 2016-11-18 01:24:14 +0000 2016-11-17 17:50:33 +0000 2016-11-17 17:04:16 +0000 2016-11-17 01:35:54 +0000 2016-11-16 17:01:16 +0000 2016-11-16 16:28:21 +0000 2016-11-16 01:54:03 +0000 2016-11-16 01:39:30 +0000 2016-11-16 01:23:12 +0000 2016-11-16 01:09:57 +0000 2016-11-16 00:38:54 +0000 2016-11-16 00:22:12 +0000 2016-11-15 23:44:44 +0000 2016-11-15 23:13:58 +0000 2016-11-15 21:49:12 +0000 2016-11-15 20:47:30 +0000 2016-11-15 17:54:59 +0000 2016-11-15 17:22:24 +0000 2016-11-15 01:44:00 +0000 2016-11-14 17:03:50 +0000 2016-11-14 01:18:12 +0000 2016-11-12 21:02:38 +0000 2016-11-12 00:36:46 +0000 2016-11-11 19:55:50 +0000 2016-11-11 02:35:32 +0000 2016-11-11 00:03:42 +0000 2016-11-10 17:02:03 +0000 2016-11-10 04:01:37 +0000 2016-11-09 22:49:15 +0000 2016-11-09 16:22:22 +0000 2016-11-09 02:29:25 +0000 2016-11-09 00:37:46 +0000 2016-11-08 23:01:49 +0000 2016-11-08 22:25:27 +0000 2016-11-08 20:00:55 +0000 2016-11-08 16:47:50 +0000 2016-11-07 03:14:10 +0000 2016-11-06 22:59:35 +0000 2016-11-06 01:33:58 +0000 2016-11-05 19:24:28 +0000 2016-11-05 15:37:24 +0000 2016-11-04 01:48:22 +0000 2016-11-04 00:15:59 +0000 2016-11-03 15:51:10 +0000 2016-11-02 23:45:19 +0000 2016-11-02 16:00:06 +0000 2016-11-02 00:42:53 +0000 2016-11-01 23:53:02 +0000 2016-11-01 17:12:16 +0000 2016-11-01 03:00:09 +0000 2016-11-01 02:00:14 +0000 2016-11-01 01:00:05 +0000 2016-11-01 00:00:38 +0000 2016-10-31 23:00:11 +0000 2016-10-31 22:00:04 +0000 2016-10-31 21:00:23 +0000 2016-10-31 20:00:05 +0000 2016-10-31 19:00:10 +0000 2016-10-31 18:00:14 +0000 2016-10-31 17:00:11 +0000 2016-10-31 16:00:13 +0000 2016-10-31 02:17:31 +0000 2016-10-31 00:20:11 +0000 2016-10-30 17:02:53 +0000 2016-10-29 15:55:58 +0000 2016-10-28 17:07:05 +0000 2016-10-28 01:58:16 +0000 2016-10-27 23:30:09 +0000 2016-10-27 23:17:38 +0000 2016-10-27 22:53:48 +0000 2016-10-27 16:06:04 +0000 2016-10-26 22:31:36 +0000 2016-10-26 16:14:55 +0000 2016-10-25 21:18:40 +0000 2016-10-25 18:44:32 +0000 2016-10-25 16:00:09 +0000 2016-10-25 01:14:59 +0000 2016-10-24 23:37:28 +0000 2016-10-24 15:53:19 +0000 2016-10-23 23:42:19 +0000 2016-10-23 19:42:02 +0000 2016-10-23 16:25:25 +0000 2016-10-23 00:27:05 +0000 2016-10-22 22:42:52 +0000 2016-10-22 18:57:48 +0000 2016-10-22 00:45:17 +0000 2016-10-21 22:48:24 +0000 2016-10-21 18:16:44 +0000 2016-10-21 03:56:25 +0000 2016-10-21 01:42:53 +0000 2016-10-21 00:53:56 +0000 2016-10-20 16:15:26 +0000 2016-10-20 01:03:11 +0000 2016-10-19 15:37:03 +0000 2016-10-19 01:29:35 +0000 2016-10-18 16:11:17 +0000 2016-10-18 00:41:57 +0000 2016-10-17 22:51:57 +0000 2016-10-17 17:32:13 +0000 2016-10-17 15:31:05 +0000 2016-10-17 00:20:47 +0000 2016-10-16 18:11:26 +0000 2016-10-15 21:01:17 +0000 2016-10-15 16:01:13 +0000 2016-10-15 02:04:45 +0000 2016-10-14 16:13:10 +0000 2016-10-14 00:47:00 +0000 2016-10-13 23:23:56 +0000 2016-10-13 20:28:35 +0000 2016-10-13 15:54:28 +0000 2016-10-13 00:29:39 +0000 2016-10-12 19:24:27 +0000 2016-10-12 15:55:59 +0000 2016-10-12 03:50:17 +0000 2016-10-12 02:53:11 +0000 2016-10-11 19:39:28 +0000 2016-10-11 16:00:24 +0000 2016-10-11 00:34:48 +0000 2016-10-10 17:32:08 +0000 2016-10-10 16:20:36 +0000 2016-10-09 23:44:41 +0000 2016-10-09 17:31:53 +0000 2016-10-08 18:41:19 +0000 2016-10-07 22:15:26 +0000 2016-10-07 16:33:21 +0000 2016-10-07 00:06:50 +0000 2016-10-06 15:49:14 +0000 2016-10-06 01:23:05 +0000 2016-10-06 00:08:09 +0000 2016-10-05 15:47:27 +0000 2016-10-05 00:40:09 +0000 2016-10-04 19:42:03 +0000 2016-10-04 16:46:14 +0000 2016-10-04 15:55:06 +0000 2016-10-03 23:25:55 +0000 2016-10-03 15:42:44 +0000 2016-10-03 01:00:34 +0000 2016-10-02 23:23:04 +0000 2016-10-02 15:10:30 +0000 2016-10-01 19:47:08 +0000 2016-10-01 00:58:26 +0000 2016-09-30 20:33:43 +0000 2016-09-30 01:08:10 +0000 2016-09-30 00:41:48 +0000 2016-09-29 16:03:01 +0000 2016-09-29 01:42:20 +0000 2016-09-28 21:56:36 +0000 2016-09-28 16:07:23 +0000 2016-09-28 00:46:20 +0000 2016-09-27 19:54:58 +0000 2016-09-27 16:06:28 +0000 2016-09-27 02:53:48 +0000 2016-09-26 23:04:13 +0000 2016-09-26 19:56:24 +0000 2016-09-26 18:38:05 +0000 2016-09-26 17:29:48 +0000 2016-09-25 23:47:39 +0000 2016-09-25 17:10:10 +0000 2016-09-25 16:00:13 +0000 2016-09-25 00:06:08 +0000 2016-09-23 17:50:56 +0000 2016-09-23 01:04:56 +0000 2016-09-23 01:00:13 +0000 2016-09-22 20:33:42 +0000 2016-09-22 16:13:51 +0000 2016-09-22 01:54:34 +0000 2016-09-22 01:16:45 +0000 2016-09-22 00:13:04 +0000 2016-09-21 17:42:10 +0000 2016-09-21 16:00:17 +0000 2016-09-21 01:39:11 +0000 2016-09-21 00:53:04 +0000 2016-09-21 00:00:35 +0000 2016-09-20 17:36:50 +0000 2016-09-20 01:12:28 +0000 2016-09-20 00:24:34 +0000 2016-09-19 19:31:59 +0000 2016-09-19 15:00:20 +0000 2016-09-19 01:42:24 +0000 2016-09-18 22:54:18 +0000 2016-09-18 21:33:11 +0000 2016-09-17 16:57:35 +0000 2016-09-16 16:24:19 +0000 2016-09-16 16:00:31 +0000 2016-09-15 17:48:25 +0000 2016-09-15 02:42:54 +0000 2016-09-15 00:36:55 +0000 2016-09-14 23:30:38 +0000 2016-09-14 17:40:06 +0000 2016-09-14 16:00:49 +0000 2016-09-14 03:27:11 +0000 2016-09-13 23:44:54 +0000 2016-09-13 16:30:07 +0000 2016-09-13 16:13:44 +0000 2016-09-12 16:05:54 +0000 2016-09-12 15:10:21 +0000 2016-09-11 22:20:06 +0000 2016-09-11 21:34:30 +0000 2016-09-10 23:54:11 +0000 2016-09-10 16:03:16 +0000 2016-09-09 18:31:54 +0000 2016-09-08 20:45:53 +0000 2016-09-08 16:33:46 +0000 2016-09-08 02:09:06 +0000 2016-09-07 23:52:41 +0000 2016-09-07 15:44:53 +0000 2016-09-07 01:47:12 +0000 2016-09-06 23:56:05 +0000 2016-09-06 19:52:39 +0000 2016-09-06 16:10:20 +0000 2016-09-05 19:22:09 +0000 2016-09-05 15:58:34 +0000 2016-09-05 02:00:22 +0000 2016-09-04 23:46:12 +0000 2016-09-03 22:02:38 +0000 2016-09-03 19:23:13 +0000 2016-09-03 17:02:54 +0000 2016-09-03 16:52:02 +0000 2016-09-03 16:04:27 +0000 2016-09-03 03:13:29 +0000 2016-09-02 18:03:10 +0000 2016-09-02 00:12:18 +0000 2016-09-01 16:14:48 +0000 2016-09-01 02:21:21 +0000 2016-09-01 00:04:38 +0000 2016-08-31 21:47:27 +0000 2016-08-31 15:58:28 +0000 2016-08-31 15:19:06 +0000 2016-08-31 00:58:39 +0000 2016-08-30 23:58:40 +0000 2016-08-30 22:04:05 +0000 2016-08-30 16:11:18 +0000 2016-08-30 00:14:12 +0000 2016-08-29 16:14:30 +0000 2016-08-29 03:00:36 +0000 2016-08-29 01:22:47 +0000 2016-08-28 16:51:16 +0000 2016-08-28 00:37:54 +0000 2016-08-27 00:47:53 +0000 2016-08-26 16:37:54 +0000 2016-08-26 00:38:52 +0000 2016-08-25 20:35:48 +0000 2016-08-25 16:58:45 +0000 2016-08-25 00:43:02 +0000 2016-08-24 23:50:10 +0000 2016-08-24 21:02:45 +0000 2016-08-24 15:43:39 +0000 2016-08-23 21:09:14 +0000 2016-08-23 00:40:31 +0000 2016-08-22 16:06:54 +0000 2016-08-21 23:15:55 +0000 2016-08-21 02:47:37 +0000 2016-08-20 22:12:29 +0000 2016-08-20 05:08:29 +0000 2016-08-20 00:26:19 +0000 2016-08-19 19:14:16 +0000 2016-08-19 17:47:52 +0000 2016-08-18 23:55:18 +0000 2016-08-18 16:38:26 +0000 2016-08-18 01:03:45 +0000 2016-08-18 00:28:24 +0000 2016-08-17 20:27:34 +0000 2016-08-17 01:20:27 +0000 2016-08-16 22:00:23 +0000 2016-08-16 03:52:26 +0000 2016-08-16 02:14:15 +0000 2016-08-15 16:22:20 +0000 2016-08-14 16:13:27 +0000 2016-08-13 00:38:30 +0000 2016-08-12 04:35:10 +0000 2016-08-11 20:40:41 +0000 2016-08-10 01:23:03 +0000 2016-08-10 00:16:21 +0000 2016-08-09 20:03:43 +0000 2016-08-08 17:19:51 +0000 2016-08-08 02:13:34 +0000 2016-08-08 01:44:46 +0000 2016-08-07 15:56:28 +0000 2016-08-06 21:20:40 +0000 2016-08-06 17:26:19 +0000 2016-08-06 02:27:27 +0000 2016-08-06 02:06:59 +0000 2016-08-05 21:19:27 +0000 2016-08-05 16:28:54 +0000 2016-08-05 01:19:35 +0000 2016-08-04 22:52:29 +0000 2016-08-04 20:09:17 +0000 2016-08-04 15:48:47 +0000 2016-08-04 01:03:17 +0000 2016-08-03 17:43:45 +0000 2016-08-03 02:02:14 +0000 2016-08-03 00:59:13 +0000 2016-08-02 18:14:06 +0000 2016-08-02 17:04:31 +0000 2016-08-02 01:44:48 +0000 2016-08-01 23:15:56 +0000 2016-08-01 19:07:17 +0000 2016-08-01 16:43:19 +0000 2016-08-01 02:45:22 +0000 2016-08-01 01:28:46 +0000 2016-07-31 20:21:02 +0000 2016-07-31 16:50:42 +0000 2016-07-31 01:50:18 +0000 2016-07-31 01:12:26 +0000 2016-07-30 17:56:51 +0000 2016-07-30 17:51:13 +0000 2016-07-30 01:22:17 +0000 2016-07-29 22:53:27 +0000 2016-07-29 18:53:24 +0000 2016-07-29 15:27:55 +0000 2016-07-29 02:40:28 +0000 2016-07-29 00:57:05 +0000 2016-07-28 19:06:01 +0000 2016-07-28 01:31:38 +0000 2016-07-28 01:00:57 +0000 2016-07-27 20:56:24 +0000 2016-07-27 17:35:10 +0000 2016-07-27 00:40:12 +0000 2016-07-26 20:47:17 +0000 2016-07-26 00:58:34 +0000 2016-07-26 00:08:05 +0000 2016-07-25 23:54:05 +0000 2016-07-25 16:21:11 +0000 2016-07-25 15:26:30 +0000 2016-07-25 15:19:12 +0000 2016-07-25 02:20:45 +0000 2016-07-25 01:52:43 +0000 2016-07-24 23:20:20 +0000 2016-07-23 23:42:53 +0000 2016-07-23 19:49:07 +0000 2016-07-23 00:46:50 +0000 2016-07-22 16:28:07 +0000 2016-07-22 01:42:09 +0000 2016-07-22 00:43:32 +0000 2016-07-21 23:53:04 +0000 2016-07-21 02:41:54 +0000 2016-07-19 01:04:16 +0000 2016-07-18 18:43:07 +0000 2016-07-18 03:06:01 +0000 2016-07-18 01:53:28 +0000 2016-07-17 18:38:22 +0000 2016-07-17 01:05:25 +0000 2016-07-16 22:55:55 +0000 2016-07-16 01:08:03 +0000 2016-07-15 17:56:40 +0000 2016-07-14 18:22:23 +0000 2016-07-14 02:47:04 +0000 2016-07-14 01:19:12 +0000 2016-07-13 23:48:51 +0000 2016-07-13 18:42:44 +0000 2016-07-13 18:26:16 +0000 2016-07-13 01:34:21 +0000 2016-07-13 00:43:15 +0000 2016-07-12 18:27:35 +0000 2016-07-12 17:27:23 +0000 2016-07-12 03:11:42 +0000 2016-07-12 01:52:49 +0000 2016-07-12 00:27:52 +0000 2016-07-11 18:20:21 +0000 2016-07-11 15:07:30 +0000 2016-07-11 02:51:40 +0000 2016-07-11 01:11:51 +0000 2016-07-10 16:10:29 +0000 2016-07-10 01:23:49 +0000 2016-07-10 00:32:46 +0000 2016-07-09 17:28:29 +0000 2016-07-09 15:02:31 +0000 2016-07-09 02:06:27 +0000 2016-07-09 01:08:47 +0000 2016-07-08 22:09:27 +0000 2016-07-08 16:44:23 +0000 2016-07-08 03:07:09 +0000 2016-07-08 00:04:50 +0000 2016-07-07 19:16:47 +0000 2016-07-07 01:47:22 +0000 2016-07-06 15:54:42 +0000 2016-07-06 01:46:38 +0000 2016-07-05 20:41:01 +0000 2016-07-05 17:38:41 +0000 2016-07-05 17:31:49 +0000 2016-07-05 02:00:06 +0000 2016-07-05 01:00:05 +0000 2016-07-05 00:00:18 +0000 2016-07-04 23:00:03 +0000 2016-07-04 22:00:12 +0000 2016-07-04 21:00:04 +0000 2016-07-04 20:00:23 +0000 2016-07-04 19:00:33 +0000 2016-07-04 18:00:41 +0000 2016-07-04 17:00:26 +0000 2016-07-04 16:00:22 +0000 2016-07-04 15:00:45 +0000 2016-07-04 01:17:51 +0000 2016-07-03 01:41:06 +0000 2016-07-03 00:43:15 +0000 2016-07-03 00:14:27 +0000 2016-07-02 19:01:20 +0000 2016-07-02 03:00:36 +0000 2016-07-02 02:17:13 +0000 2016-07-02 00:27:45 +0000 2016-07-01 20:31:43 +0000 2016-07-01 17:33:49 +0000 2016-07-01 02:31:39 +0000 2016-07-01 02:06:06 +0000 2016-07-01 01:40:41 +0000 2016-06-30 17:54:50 +0000 2016-06-30 17:28:39 +0000 2016-06-30 02:45:28 +0000 2016-06-30 02:10:24 +0000 2016-06-30 01:15:31 +0000 2016-06-30 00:09:04 +0000 2016-06-29 18:25:21 +0000 2016-06-29 01:23:16 +0000 2016-06-28 23:23:19 +0000 2016-06-28 20:14:22 +0000 2016-06-28 17:28:22 +0000 2016-06-28 15:40:07 +0000 2016-06-28 04:42:46 +0000 2016-06-28 04:31:44 +0000 2016-06-28 01:21:27 +0000 2016-06-28 00:54:46 +0000 2016-06-27 19:31:23 +0000 2016-06-27 16:08:30 +0000 2016-06-27 14:40:26 +0000 2016-06-27 01:37:04 +0000 2016-06-27 00:07:44 +0000 2016-06-26 23:05:29 +0000 2016-06-26 16:25:26 +0000 2016-06-26 03:22:31 +0000 2016-06-26 01:08:52 +0000 2016-06-25 21:34:37 +0000 2016-06-25 19:42:08 +0000 2016-06-25 17:31:25 +0000 2016-06-25 15:29:00 +0000 2016-06-25 03:17:46 +0000 2016-06-25 01:52:36 +0000 2016-06-25 00:56:43 +0000 2016-06-24 15:48:42 +0000 2016-06-24 00:04:36 +0000 2016-06-23 19:05:49 +0000 2016-06-23 01:25:06 +0000 2016-06-22 20:18:30 +0000 2016-06-22 01:50:58 +0000 2016-06-22 01:06:43 +0000 2016-06-21 17:58:09 +0000 2016-06-21 02:03:25 +0000 2016-06-21 00:54:33 +0000 2016-06-20 20:49:19 +0000 2016-06-20 19:11:53 +0000 2016-06-20 01:54:27 +0000 2016-06-19 01:02:50 +0000 2016-06-18 18:26:18 +0000 2016-06-18 17:41:06 +0000 2016-06-18 01:33:55 +0000 2016-06-17 19:59:26 +0000 2016-06-17 16:01:16 +0000 2016-06-17 01:00:24 +0000 2016-06-17 00:05:25 +0000 2016-06-16 20:47:36 +0000 2016-06-16 18:26:48 +0000 2016-06-16 01:25:36 +0000 2016-06-15 23:24:09 +0000 2016-06-15 22:36:19 +0000 2016-06-14 01:49:03 +0000 2016-06-14 01:24:27 +0000 2016-06-13 21:16:49 +0000 2016-06-13 18:27:32 +0000 2016-06-13 15:59:24 +0000 2016-06-13 01:06:33 +0000 2016-06-13 00:22:53 +0000 2016-06-12 00:44:30 +0000 2016-06-11 21:27:17 +0000 2016-06-11 01:13:51 +0000 2016-06-10 16:19:48 +0000 2016-06-10 02:48:49 +0000 2016-06-10 00:39:48 +0000 2016-06-09 19:52:53 +0000 2016-06-09 01:07:06 +0000 2016-06-09 00:19:04 +0000 2016-06-08 22:48:46 +0000 2016-06-08 02:41:38 +0000 2016-06-08 02:09:24 +0000 2016-06-08 01:45:19 +0000 2016-06-07 16:09:13 +0000 2016-06-07 00:36:02 +0000 2016-06-06 21:32:13 +0000 2016-06-06 15:40:26 +0000 2016-06-06 01:02:55 +0000 2016-06-05 23:53:41 +0000 2016-06-05 19:47:03 +0000 2016-06-05 15:54:48 +0000 2016-06-04 23:31:25 +0000 2016-06-04 00:32:32 +0000 2016-06-04 00:08:17 +0000 2016-06-04 00:01:35 +0000 2016-06-03 01:07:16 +0000 2016-06-02 16:10:29 +0000 2016-06-02 01:44:22 +0000 2016-06-02 00:32:39 +0000 2016-06-01 23:52:28 +0000 2016-06-01 02:00:04 +0000 2016-06-01 00:17:54 +0000 2016-05-31 16:14:39 +0000 2016-05-31 00:49:32 +0000 2016-05-30 16:40:14 +0000 2016-05-30 15:52:33 +0000 2016-05-29 01:49:16 +0000 2016-05-28 03:04:00 +0000 2016-05-28 01:18:00 +0000 2016-05-27 15:58:54 +0000 2016-05-27 01:47:23 +0000 2016-05-27 00:32:10 +0000 2016-05-26 01:47:51 +0000 2016-05-26 00:54:06 +0000 2016-05-25 01:03:06 +0000 2016-05-24 23:47:49 +0000 2016-05-24 15:55:00 +0000 2016-05-24 01:02:00 +0000 2016-05-23 16:46:51 +0000 2016-05-23 16:01:50 +0000 2016-05-23 01:40:38 +0000 2016-05-21 01:13:53 +0000 2016-05-21 00:50:46 +0000 2016-05-20 02:18:32 +0000 2016-05-20 00:51:30 +0000 2016-05-19 01:38:16 +0000 2016-05-18 00:39:02 +0000 2016-05-18 00:14:46 +0000 2016-05-17 14:57:41 +0000 2016-05-17 01:00:32 +0000 2016-05-16 00:31:53 +0000 2016-05-14 00:49:30 +0000 2016-05-13 16:15:54 +0000 2016-05-13 00:56:32 +0000 2016-05-12 01:40:42 +0000 2016-05-11 15:59:50 +0000 2016-05-11 01:44:07 +0000 2016-05-11 00:43:55 +0000 2016-05-10 02:05:03 +0000 2016-05-10 01:00:58 +0000 2016-05-10 00:01:12 +0000 2016-05-09 00:11:16 +0000 2016-05-08 00:59:46 +0000 2016-05-07 16:34:32 +0000 2016-05-07 01:37:30 +0000 2016-05-07 00:59:55 +0000 2016-05-06 18:33:34 +0000 2016-05-06 02:24:02 +0000 2016-05-06 00:53:27 +0000 2016-05-05 02:21:37 +0000 2016-05-05 01:35:26 +0000 2016-05-05 00:16:48 +0000 2016-05-04 02:26:00 +0000 2016-05-03 23:42:26 +0000 2016-05-03 15:46:33 +0000 2016-05-03 01:50:44 +0000 2016-05-02 23:59:09 +0000 2016-05-02 16:38:15 +0000 2016-05-02 15:20:13 +0000 2016-05-02 00:43:25 +0000 2016-05-01 21:32:40 +0000 2016-05-01 17:38:46 +0000 2016-04-30 01:41:23 +0000 2016-04-29 00:21:01 +0000 2016-04-28 20:40:11 +0000 2016-04-28 16:52:08 +0000 2016-04-27 22:57:10 +0000 2016-04-26 15:29:30 +0000 2016-04-26 01:26:53 +0000 2016-04-25 01:12:38 +0000 2016-04-24 01:38:33 +0000 2016-04-24 01:24:35 +0000 2016-04-23 22:38:43 +0000 2016-04-23 16:34:28 +0000 2016-04-23 01:41:59 +0000 2016-04-23 00:41:42 +0000 2016-04-21 16:00:57 +0000 2016-04-21 02:25:47 +0000 2016-04-20 02:30:23 +0000 2016-04-17 00:58:53 +0000 2016-04-15 15:44:11 +0000 2016-04-15 01:26:47 +0000 2016-04-15 00:46:48 +0000 2016-04-14 00:55:25 +0000 2016-04-13 23:15:21 +0000 2016-04-13 19:59:42 +0000 2016-04-13 01:22:10 +0000 2016-04-13 00:17:25 +0000 2016-04-12 20:50:42 +0000 2016-04-12 01:51:36 +0000 2016-04-11 15:43:12 +0000 2016-04-11 03:33:34 +0000 2016-04-11 01:41:07 +0000 2016-04-11 01:13:34 +0000 2016-04-10 01:20:33 +0000 2016-04-09 23:10:47 +0000 2016-04-09 02:47:55 +0000 2016-04-09 01:35:37 +0000 2016-04-08 20:46:50 +0000 2016-04-08 15:26:28 +0000 2016-04-08 15:05:29 +0000 2016-04-08 01:19:36 +0000 2016-04-08 00:30:51 +0000 2016-04-06 22:29:56 +0000 2016-04-06 19:04:14 +0000 2016-04-06 02:21:30 +0000 2016-04-05 19:09:17 +0000 2016-04-05 18:41:02 +0000 2016-04-04 17:53:31 +0000 2016-04-04 15:22:08 +0000 2016-04-04 01:41:58 +0000 2016-04-04 00:55:01 +0000 2016-04-03 20:53:33 +0000 2016-04-03 02:08:05 +0000 2016-04-03 01:36:11 +0000 2016-04-02 15:25:47 +0000 2016-04-02 01:52:38 +0000 2016-04-01 15:46:52 +0000 2016-04-01 04:30:16 +0000 2016-04-01 02:51:22 +0000 2016-04-01 00:58:13 +0000 2016-04-01 00:26:15 +0000 2016-03-31 23:22:53 +0000 2016-03-31 02:09:32 +0000 2016-03-31 00:58:29 +0000 2016-03-30 16:52:36 +0000 2016-03-30 15:34:51 +0000 2016-03-30 02:56:24 +0000 2016-03-30 01:07:18 +0000 2016-03-29 23:49:30 +0000 2016-03-29 23:29:14 +0000 2016-03-29 01:53:39 +0000 2016-03-29 00:12:05 +0000 2016-03-28 16:12:09 +0000 2016-03-28 01:10:13 +0000 2016-03-28 00:43:43 +0000 2016-03-27 22:14:49 +0000 2016-03-27 17:25:54 +0000 2016-03-27 02:43:58 +0000 2016-03-27 02:05:49 +0000 2016-03-27 01:29:02 +0000 2016-03-26 16:15:05 +0000 2016-03-25 17:03:49 +0000 2016-03-25 01:35:51 +0000 2016-03-25 01:29:21 +0000 2016-03-24 01:11:29 +0000 2016-03-23 19:09:09 +0000 2016-03-23 15:53:42 +0000 2016-03-23 00:37:48 +0000 2016-03-22 16:06:19 +0000 2016-03-22 02:03:52 +0000 2016-03-22 01:45:15 +0000 2016-03-22 01:16:55 +0000 2016-03-21 23:55:01 +0000 2016-03-21 19:31:59 +0000 2016-03-21 17:30:03 +0000 2016-03-21 02:38:34 +0000 2016-03-21 01:54:29 +0000 2016-03-20 23:23:54 +0000 2016-03-20 20:36:28 +0000 2016-03-20 01:28:47 +0000 2016-03-19 21:41:44 +0000 2016-03-19 01:54:56 +0000 2016-03-19 01:11:29 +0000 2016-03-18 15:05:29 +0000 2016-03-18 14:19:56 +0000 2016-03-18 02:46:49 +0000 2016-03-17 23:33:12 +0000 2016-03-17 22:09:38 +0000 2016-03-17 02:48:31 +0000 2016-03-17 01:55:02 +0000 2016-03-17 01:11:26 +0000 2016-03-17 00:58:46 +0000 2016-03-16 17:18:07 +0000 2016-03-16 16:29:35 +0000 2016-03-16 14:54:24 +0000 2016-03-16 01:46:45 +0000 2016-03-16 00:37:03 +0000 2016-03-15 21:24:41 +0000 2016-03-15 02:25:31 +0000 2016-03-15 01:48:55 +0000 2016-03-14 23:19:03 +0000 2016-03-14 18:42:20 +0000 2016-03-14 16:02:49 +0000 2016-03-14 03:50:21 +0000 2016-03-14 02:39:42 +0000 2016-03-14 02:04:08 +0000 2016-03-14 00:49:23 +0000 2016-03-13 23:24:56 +0000 2016-03-13 15:43:18 +0000 2016-03-13 03:13:29 +0000 2016-03-13 02:43:08 +0000 2016-03-13 01:57:25 +0000 2016-03-13 00:24:26 +0000 2016-03-12 19:35:15 +0000 2016-03-12 17:47:45 +0000 2016-03-12 02:28:06 +0000 2016-03-12 01:49:25 +0000 2016-03-11 21:15:02 +0000 2016-03-11 18:18:36 +0000 2016-03-11 17:50:48 +0000 2016-03-11 04:35:39 +0000 2016-03-11 03:22:23 +0000 2016-03-11 02:36:57 +0000 2016-03-11 01:56:49 +0000 2016-03-10 20:26:26 +0000 2016-03-10 18:25:30 +0000 2016-03-10 17:35:20 +0000 2016-03-10 16:42:10 +0000 2016-03-10 03:55:45 +0000 2016-03-10 01:35:01 +0000 2016-03-10 01:24:13 +0000 2016-03-09 22:24:31 +0000 2016-03-09 18:10:30 +0000 2016-03-09 16:56:11 +0000 2016-03-09 04:19:44 +0000 2016-03-09 03:45:22 +0000 2016-03-09 02:08:59 +0000 2016-03-09 01:26:57 +0000 2016-03-08 21:23:50 +0000 2016-03-08 20:09:54 +0000 2016-03-08 04:25:07 +0000 2016-03-08 03:00:15 +0000 2016-03-08 01:52:18 +0000 2016-03-08 01:25:10 +0000 2016-03-07 18:09:06 +0000 2016-03-07 17:58:08 +0000 2016-03-07 03:24:33 +0000 2016-03-07 00:57:27 +0000 2016-03-06 21:31:22 +0000 2016-03-06 17:52:42 +0000 2016-03-06 16:27:23 +0000 2016-03-06 05:11:12 +0000 2016-03-06 02:46:44 +0000 2016-03-06 01:31:11 +0000 2016-03-05 23:51:49 +0000 2016-03-05 17:26:40 +0000 2016-03-05 17:16:20 +0000 2016-03-05 16:24:01 +0000 2016-03-05 04:36:02 +0000 2016-03-05 04:17:02 +0000 2016-03-04 23:32:15 +0000 2016-03-04 16:06:36 +0000 2016-03-04 03:13:11 +0000 2016-03-03 19:32:29 +0000 2016-03-03 17:19:38 +0000 2016-03-03 16:23:38 +0000 2016-03-03 03:51:44 +0000 2016-03-03 02:49:06 +0000 2016-03-02 18:48:16 +0000 2016-03-02 16:23:36 +0000 2016-03-02 03:30:25 +0000 2016-03-02 02:43:09 +0000 2016-03-02 01:56:53 +0000 2016-03-02 00:05:17 +0000 2016-03-01 20:11:59 +0000 2016-03-01 02:53:32 +0000 2016-03-01 02:19:31 +0000 2016-03-01 01:36:14 +0000 2016-02-29 17:56:32 +0000 2016-02-29 16:47:42 +0000 2016-02-29 02:40:23 +0000 2016-02-29 01:17:46 +0000 2016-02-28 21:25:30 +0000 2016-02-28 02:50:28 +0000 2016-02-28 02:29:55 +0000 2016-02-27 17:24:05 +0000 2016-02-27 16:03:45 +0000 2016-02-27 03:42:44 +0000 2016-02-27 02:32:12 +0000 2016-02-27 00:55:11 +0000 2016-02-26 23:10:06 +0000 2016-02-26 17:20:56 +0000 2016-02-26 04:48:02 +0000 2016-02-26 02:20:37 +0000 2016-02-25 19:04:13 +0000 2016-02-25 16:53:11 +0000 2016-02-25 02:42:00 +0000 2016-02-25 01:47:04 +0000 2016-02-24 20:56:55 +0000 2016-02-24 17:04:07 +0000 2016-02-24 03:21:41 +0000 2016-02-24 02:36:23 +0000 2016-02-23 23:39:59 +0000 2016-02-23 19:44:20 +0000 2016-02-23 04:06:20 +0000 2016-02-23 02:12:47 +0000 2016-02-22 21:59:57 +0000 2016-02-22 16:27:58 +0000 2016-02-22 02:57:08 +0000 2016-02-22 00:53:31 +0000 2016-02-21 23:13:01 +0000 2016-02-21 01:19:47 +0000 2016-02-20 03:51:05 +0000 2016-02-20 02:06:50 +0000 2016-02-20 01:00:55 +0000 2016-02-19 21:39:54 +0000 2016-02-19 18:24:26 +0000 2016-02-19 03:11:35 +0000 2016-02-19 02:20:14 +0000 2016-02-18 23:28:52 +0000 2016-02-18 03:58:39 +0000 2016-02-18 02:54:41 +0000 2016-02-18 02:24:13 +0000 2016-02-17 21:02:13 +0000 2016-02-17 18:49:22 +0000 2016-02-17 17:01:14 +0000 2016-02-17 03:45:29 +0000 2016-02-17 02:54:04 +0000 2016-02-17 02:17:19 +0000 2016-02-17 02:02:25 +0000 2016-02-16 20:28:06 +0000 2016-02-16 04:15:05 +0000 2016-02-16 03:25:58 +0000 2016-02-16 02:42:52 +0000 2016-02-16 02:04:04 +0000 2016-02-15 23:13:03 +0000 2016-02-15 20:04:36 +0000 2016-02-15 04:31:20 +0000 2016-02-15 03:55:41 +0000 2016-02-15 03:27:04 +0000 2016-02-15 02:38:53 +0000 2016-02-15 01:05:02 +0000 2016-02-14 21:55:47 +0000 2016-02-14 19:35:46 +0000 2016-02-14 16:33:40 +0000 2016-02-14 03:29:49 +0000 2016-02-14 03:01:06 +0000 2016-02-13 22:29:29 +0000 2016-02-13 16:50:04 +0000 2016-02-13 03:59:01 +0000 2016-02-13 03:05:01 +0000 2016-02-12 21:49:15 +0000 2016-02-12 17:22:12 +0000 2016-02-12 16:16:41 +0000 2016-02-12 04:07:53 +0000 2016-02-12 03:47:39 +0000 2016-02-12 00:39:39 +0000 2016-02-11 20:34:41 +0000 2016-02-11 03:57:11 +0000 2016-02-11 03:02:54 +0000 2016-02-11 01:42:02 +0000 2016-02-11 00:18:49 +0000 2016-02-10 20:23:19 +0000 2016-02-10 18:11:03 +0000 2016-02-10 16:51:59 +0000 2016-02-10 04:06:43 +0000 2016-02-10 03:22:44 +0000 2016-02-10 03:05:46 +0000 2016-02-10 02:14:42 +0000 2016-02-09 03:35:31 +0000 2016-02-09 03:14:25 +0000 2016-02-09 02:40:05 +0000 2016-02-09 02:07:12 +0000 2016-02-08 17:58:03 +0000 2016-02-08 17:17:22 +0000 2016-02-08 15:14:57 +0000 2016-02-08 02:18:30 +0000 2016-02-08 00:27:39 +0000 2016-02-08 00:20:23 +0000 2016-02-07 18:51:43 +0000 2016-02-06 22:38:50 +0000 2016-02-06 03:50:33 +0000 2016-02-06 02:22:53 +0000 2016-02-06 00:35:13 +0000 2016-02-05 15:27:17 +0000 2016-02-05 03:18:42 +0000 2016-02-05 00:51:51 +0000 2016-02-04 18:35:39 +0000 2016-02-04 04:03:57 +0000 2016-02-04 02:40:08 +0000 2016-02-04 02:00:27 +0000 2016-02-04 01:07:39 +0000 2016-02-03 16:49:55 +0000 2016-02-03 15:30:43 +0000 2016-02-02 23:52:22 +0000 2016-02-02 03:08:26 +0000 2016-02-02 02:53:12 +0000 2016-02-02 02:10:14 +0000 2016-02-02 01:21:07 +0000 2016-02-01 17:11:59 +0000 2016-02-01 15:39:48 +0000 2016-02-01 03:38:15 +0000 2016-02-01 03:04:14 +0000 2016-01-31 23:42:03 +0000 2016-01-31 04:11:58 +0000 2016-01-31 03:57:23 +0000 2016-01-31 03:49:30 +0000 2016-01-31 03:00:47 +0000 2016-01-31 02:31:43 +0000 2016-01-31 00:25:18 +0000 2016-01-30 23:51:19 +0000 2016-01-30 17:31:20 +0000 2016-01-30 03:52:58 +0000 2016-01-30 02:58:42 +0000 2016-01-30 02:41:58 +0000 2016-01-30 00:38:37 +0000 2016-01-29 19:36:08 +0000 2016-01-29 16:30:45 +0000 2016-01-29 15:36:45 +0000 2016-01-29 03:56:12 +0000 2016-01-29 03:03:25 +0000 2016-01-29 02:46:29 +0000 2016-01-29 02:17:12 +0000 2016-01-28 21:54:41 +0000 2016-01-28 16:53:37 +0000 2016-01-28 04:44:32 +0000 2016-01-28 02:30:58 +0000 2016-01-28 02:12:04 +0000 2016-01-27 19:05:49 +0000 2016-01-27 18:42:06 +0000 2016-01-27 03:26:56 +0000 2016-01-27 01:33:08 +0000 2016-01-27 00:31:15 +0000 2016-01-26 17:50:29 +0000 2016-01-26 16:12:33 +0000 2016-01-26 03:09:55 +0000 2016-01-26 01:21:31 +0000 2016-01-25 22:58:05 +0000 2016-01-25 17:35:00 +0000 2016-01-25 04:49:38 +0000 2016-01-25 03:16:56 +0000 2016-01-25 02:17:57 +0000 2016-01-25 00:26:41 +0000 2016-01-24 18:09:23 +0000 2016-01-24 03:14:07 +0000 2016-01-24 02:48:07 +0000 2016-01-23 20:07:44 +0000 2016-01-23 18:09:53 +0000 2016-01-23 16:47:25 +0000 2016-01-23 16:22:17 +0000 2016-01-23 03:20:44 +0000 2016-01-23 02:53:03 +0000 2016-01-23 00:21:03 +0000 2016-01-22 21:39:24 +0000 2016-01-22 18:49:36 +0000 2016-01-22 18:09:28 +0000 2016-01-22 05:07:29 +0000 2016-01-22 03:24:22 +0000 2016-01-22 02:28:52 +0000 2016-01-22 01:40:58 +0000 2016-01-21 19:04:15 +0000 2016-01-21 04:03:58 +0000 2016-01-21 03:38:27 +0000 2016-01-21 02:56:40 +0000 2016-01-21 02:34:07 +0000 2016-01-21 02:10:37 +0000 2016-01-21 01:07:23 +0000 2016-01-20 20:21:00 +0000 2016-01-20 18:30:32 +0000 2016-01-20 15:44:48 +0000 2016-01-20 04:13:20 +0000 2016-01-20 04:03:02 +0000 2016-01-20 01:41:08 +0000 2016-01-20 00:03:21 +0000 2016-01-19 21:18:22 +0000 2016-01-19 18:39:13 +0000 2016-01-19 03:32:10 +0000 2016-01-19 03:10:43 +0000 2016-01-19 02:59:01 +0000 2016-01-19 02:36:42 +0000 2016-01-19 01:18:43 +0000 2016-01-18 18:36:07 +0000 2016-01-18 17:52:38 +0000 2016-01-18 02:49:58 +0000 2016-01-18 02:21:04 +0000 2016-01-18 01:38:15 +0000 2016-01-18 01:22:00 +0000 2016-01-17 21:01:41 +0000 2016-01-17 19:27:24 +0000 2016-01-17 18:27:32 +0000 2016-01-17 02:23:42 +0000 2016-01-17 00:32:18 +0000 2016-01-16 15:40:14 +0000 2016-01-16 04:11:31 +0000 2016-01-16 02:02:19 +0000 2016-01-15 21:52:49 +0000 2016-01-15 18:24:18 +0000 2016-01-15 03:39:15 +0000 2016-01-15 02:41:12 +0000 2016-01-15 02:08:05 +0000 2016-01-15 01:25:33 +0000 2016-01-14 20:24:55 +0000 2016-01-14 18:33:48 +0000 2016-01-14 15:57:26 +0000 2016-01-14 04:41:12 +0000 2016-01-14 03:45:57 +0000 2016-01-14 03:28:06 +0000 2016-01-14 02:25:31 +0000 2016-01-13 22:22:41 +0000 2016-01-13 16:56:30 +0000 2016-01-13 16:36:55 +0000 2016-01-13 04:23:58 +0000 2016-01-13 04:10:18 +0000 2016-01-13 03:12:26 +0000 2016-01-13 02:43:46 +0000 2016-01-13 02:17:20 +0000 2016-01-12 16:25:26 +0000 2016-01-12 04:01:58 +0000 2016-01-12 03:20:05 +0000 2016-01-12 02:06:41 +0000 2016-01-11 22:56:10 +0000 2016-01-11 18:39:05 +0000 2016-01-11 17:50:18 +0000 2016-01-11 03:47:50 +0000 2016-01-11 03:17:53 +0000 2016-01-11 02:40:19 +0000 2016-01-11 01:25:58 +0000 2016-01-10 20:41:33 +0000 2016-01-10 05:01:51 +0000 2016-01-10 04:04:10 +0000 2016-01-10 03:57:12 +0000 2016-01-10 02:13:27 +0000 2016-01-10 01:54:44 +0000 2016-01-09 23:55:38 +0000 2016-01-09 21:58:42 +0000 2016-01-09 19:31:20 +0000 2016-01-09 04:34:45 +0000 2016-01-09 03:40:16 +0000 2016-01-09 03:24:40 +0000 2016-01-09 01:59:19 +0000 2016-01-08 19:45:39 +0000 2016-01-08 18:43:29 +0000 2016-01-08 05:00:14 +0000 2016-01-08 04:46:13 +0000 2016-01-08 04:21:00 +0000 2016-01-08 03:50:03 +0000 2016-01-08 01:16:17 +0000 2016-01-07 20:39:06 +0000 2016-01-07 18:41:01 +0000 2016-01-07 05:28:35 +0000 2016-01-07 04:48:36 +0000 2016-01-07 03:30:07 +0000 2016-01-07 02:38:10 +0000 2016-01-07 01:49:14 +0000 2016-01-07 00:59:40 +0000 2016-01-06 23:33:58 +0000 2016-01-06 20:16:44 +0000 2016-01-06 18:14:31 +0000 2016-01-06 04:38:35 +0000 2016-01-06 04:11:43 +0000 2016-01-06 02:49:55 +0000 2016-01-06 00:54:18 +0000 2016-01-05 21:06:19 +0000 2016-01-05 19:42:51 +0000 2016-01-05 05:14:53 +0000 2016-01-05 04:11:44 +0000 2016-01-05 04:00:18 +0000 2016-01-05 02:30:55 +0000 2016-01-05 02:09:54 +0000 2016-01-05 01:44:52 +0000 2016-01-05 01:00:50 +0000 2016-01-04 23:02:22 +0000 2016-01-04 21:23:02 +0000 2016-01-04 19:43:10 +0000 2016-01-04 03:50:08 +0000 2016-01-04 03:28:54 +0000 2016-01-04 03:18:23 +0000 2016-01-04 02:18:42 +0000 2016-01-04 01:53:37 +0000 2016-01-03 22:14:26 +0000 2016-01-03 20:12:10 +0000 2016-01-03 05:11:12 +0000 2016-01-03 04:01:13 +0000 2016-01-03 02:53:17 +0000 2016-01-03 01:39:57 +0000 2016-01-03 00:47:59 +0000 2016-01-02 20:58:09 +0000 2016-01-02 18:43:31 +0000 2016-01-02 04:27:31 +0000 2016-01-02 02:23:45 +0000 2016-01-02 01:33:43 +0000 2016-01-02 00:14:32 +0000 2016-01-01 21:00:32 +0000 2016-01-01 16:30:13 +0000 2016-01-01 06:22:03 +0000 2016-01-01 05:00:24 +0000 2016-01-01 02:29:49 +0000 2015-12-31 22:57:47 +0000 2015-12-31 20:39:41 +0000 2015-12-31 19:05:54 +0000 2015-12-31 05:14:01 +0000 2015-12-31 03:43:31 +0000 2015-12-31 02:52:40 +0000 2015-12-31 02:33:29 +0000 2015-12-30 20:54:22 +0000 2015-12-30 17:58:40 +0000 2015-12-30 16:51:48 +0000 2015-12-30 06:37:25 +0000 2015-12-30 04:44:28 +0000 2015-12-30 03:55:29 +0000 2015-12-30 02:54:35 +0000 2015-12-30 01:00:03 +0000 2015-12-29 23:32:35 +0000 2015-12-29 17:36:07 +0000 2015-12-29 04:31:49 +0000 2015-12-29 03:33:58 +0000 2015-12-29 01:52:46 +0000 2015-12-28 23:00:52 +0000 2015-12-28 20:57:50 +0000 2015-12-28 17:12:42 +0000 2015-12-28 05:07:27 +0000 2015-12-28 05:02:37 +0000 2015-12-28 03:46:05 +0000 2015-12-28 02:35:15 +0000 2015-12-28 02:15:26 +0000 2015-12-28 01:12:59 +0000 2015-12-27 23:53:05 +0000 2015-12-27 22:37:04 +0000 2015-12-27 21:52:07 +0000 2015-12-27 19:22:30 +0000 2015-12-27 04:37:44 +0000 2015-12-27 03:51:18 +0000 2015-12-27 02:36:20 +0000 2015-12-27 02:15:25 +0000 2015-12-27 00:49:49 +0000 2015-12-26 23:15:17 +0000 2015-12-26 19:43:36 +0000 2015-12-26 17:41:07 +0000 2015-12-26 17:25:59 +0000 2015-12-26 17:12:55 +0000 2015-12-26 04:41:15 +0000 2015-12-26 03:00:19 +0000 2015-12-25 21:18:05 +0000 2015-12-25 21:06:00 +0000 2015-12-25 19:39:43 +0000 2015-12-25 17:30:01 +0000 2015-12-25 03:00:14 +0000 2015-12-25 02:01:30 +0000 2015-12-25 01:00:07 +0000 2015-12-25 00:00:11 +0000 2015-12-24 23:00:17 +0000 2015-12-24 22:00:10 +0000 2015-12-24 21:00:12 +0000 2015-12-24 20:00:22 +0000 2015-12-24 19:00:23 +0000 2015-12-24 18:00:19 +0000 2015-12-24 17:00:27 +0000 2015-12-24 16:00:30 +0000 2015-12-24 04:11:37 +0000 2015-12-24 03:55:21 +0000 2015-12-24 03:12:15 +0000 2015-12-24 02:42:51 +0000 2015-12-24 02:02:12 +0000 2015-12-24 00:58:27 +0000 2015-12-23 21:37:40 +0000 2015-12-23 18:51:56 +0000 2015-12-23 18:25:38 +0000 2015-12-23 17:55:32 +0000 2015-12-23 05:13:38 +0000 2015-12-23 05:03:47 +0000 2015-12-23 03:58:25 +0000 2015-12-23 03:26:43 +0000 2015-12-23 01:37:45 +0000 2015-12-23 00:45:35 +0000 2015-12-22 20:59:10 +0000 2015-12-22 04:35:49 +0000 2015-12-22 03:57:37 +0000 2015-12-22 02:52:45 +0000 2015-12-22 01:28:25 +0000 2015-12-21 22:15:18 +0000 2015-12-21 21:15:11 +0000 2015-12-21 18:10:50 +0000 2015-12-21 17:33:48 +0000 2015-12-21 16:04:13 +0000 2015-12-21 04:52:53 +0000 2015-12-21 04:44:55 +0000 2015-12-21 03:12:08 +0000 2015-12-21 02:41:11 +0000 2015-12-21 02:30:45 +0000 2015-12-21 01:53:54 +0000 2015-12-21 00:53:29 +0000 2015-12-20 22:46:44 +0000 2015-12-20 20:38:24 +0000 2015-12-20 18:29:43 +0000 2015-12-20 05:25:42 +0000 2015-12-20 03:58:55 +0000 2015-12-20 03:02:53 +0000 2015-12-20 02:20:55 +0000 2015-12-20 02:09:34 +0000 2015-12-20 01:38:42 +0000 2015-12-20 01:03:46 +0000 2015-12-19 22:28:09 +0000 2015-12-19 22:02:01 +0000 2015-12-19 18:19:51 +0000 2015-12-19 16:47:58 +0000 2015-12-19 01:25:31 +0000 2015-12-19 01:16:45 +0000 2015-12-18 21:20:32 +0000 2015-12-18 18:29:07 +0000 2015-12-18 16:56:01 +0000 2015-12-18 05:06:23 +0000 2015-12-18 04:00:46 +0000 2015-12-18 03:54:25 +0000 2015-12-18 03:11:30 +0000 2015-12-18 02:17:22 +0000 2015-12-18 01:31:14 +0000 2015-12-18 00:18:36 +0000 2015-12-17 19:39:03 +0000 2015-12-17 19:07:09 +0000 2015-12-17 18:34:46 +0000 2015-12-17 17:56:29 +0000 2015-12-17 16:45:31 +0000 2015-12-17 03:53:20 +0000 2015-12-17 03:48:51 +0000 2015-12-17 03:36:28 +0000 2015-12-17 03:26:04 +0000 2015-12-17 02:30:09 +0000 2015-12-17 01:35:24 +0000 2015-12-16 23:29:14 +0000 2015-12-16 20:48:40 +0000 2015-12-16 18:03:28 +0000 2015-12-16 04:01:59 +0000 2015-12-16 02:51:45 +0000 2015-12-16 02:19:04 +0000 2015-12-16 02:13:31 +0000 2015-12-16 02:08:04 +0000 2015-12-16 01:50:26 +0000 2015-12-16 01:27:03 +0000 2015-12-16 00:09:23 +0000 2015-12-15 22:52:02 +0000 2015-12-15 20:40:47 +0000 2015-12-15 17:51:44 +0000 2015-12-15 17:42:34 +0000 2015-12-15 17:11:09 +0000 2015-12-15 14:50:49 +0000 2015-12-15 04:19:18 +0000 2015-12-15 04:05:01 +0000 2015-12-15 03:36:42 +0000 2015-12-15 03:23:14 +0000 2015-12-15 02:43:33 +0000 2015-12-15 02:32:17 +0000 2015-12-15 02:23:26 +0000 2015-12-15 02:02:01 +0000 2015-12-15 01:32:24 +0000 2015-12-14 22:46:41 +0000 2015-12-14 20:17:59 +0000 2015-12-14 18:35:43 +0000 2015-12-14 16:34:00 +0000 2015-12-14 15:57:56 +0000 2015-12-14 04:52:55 +0000 2015-12-14 03:08:46 +0000 2015-12-14 01:58:31 +0000 2015-12-14 01:43:35 +0000 2015-12-14 00:07:50 +0000 2015-12-13 21:07:04 +0000 2015-12-13 19:30:01 +0000 2015-12-13 18:10:33 +0000 2015-12-13 17:57:57 +0000 2015-12-13 17:21:08 +0000 2015-12-13 04:40:46 +0000 2015-12-13 04:14:39 +0000 2015-12-13 04:02:03 +0000 2015-12-13 03:21:34 +0000 2015-12-13 02:51:51 +0000 2015-12-13 01:41:41 +0000 2015-12-13 01:25:37 +0000 2015-12-13 01:12:15 +0000 2015-12-12 23:41:18 +0000 2015-12-12 23:34:00 +0000 2015-12-12 22:04:39 +0000 2015-12-12 20:57:34 +0000 2015-12-12 18:13:51 +0000 2015-12-12 16:16:45 +0000 2015-12-12 16:02:36 +0000 2015-12-12 15:59:51 +0000 2015-12-12 04:35:48 +0000 2015-12-12 04:23:49 +0000 2015-12-12 03:47:46 +0000 2015-12-12 03:29:35 +0000 2015-12-12 02:23:01 +0000 2015-12-12 02:07:14 +0000 2015-12-12 01:38:53 +0000 2015-12-12 01:12:54 +0000 2015-12-11 21:51:30 +0000 2015-12-11 17:51:04 +0000 2015-12-11 17:12:48 +0000 2015-12-11 16:40:19 +0000 2015-12-11 16:20:15 +0000 2015-12-11 15:19:21 +0000 2015-12-11 04:14:49 +0000 2015-12-11 03:21:23 +0000 2015-12-11 03:05:37 +0000 2015-12-11 02:56:28 +0000 2015-12-11 02:54:12 +0000 2015-12-11 02:49:59 +0000 2015-12-11 02:08:58 +0000 2015-12-11 00:44:07 +0000 2015-12-11 00:35:44 +0000 2015-12-11 00:26:12 +0000 2015-12-10 20:19:52 +0000 2015-12-10 18:12:05 +0000 2015-12-10 17:37:00 +0000 2015-12-10 17:24:21 +0000 2015-12-10 17:11:09 +0000 2015-12-10 04:18:42 +0000 2015-12-10 03:59:15 +0000 2015-12-10 03:30:58 +0000 2015-12-10 03:19:24 +0000 2015-12-10 03:11:43 +0000 2015-12-10 02:44:43 +0000 2015-12-10 02:15:47 +0000 2015-12-10 01:49:36 +0000 2015-12-10 01:37:23 +0000 2015-12-10 00:54:28 +0000 2015-12-10 00:47:23 +0000 2015-12-10 00:10:43 +0000 2015-12-10 00:08:50 +0000 2015-12-09 23:58:35 +0000 2015-12-09 23:47:22 +0000 2015-12-09 20:40:38 +0000 2015-12-09 19:22:56 +0000 2015-12-09 18:59:46 +0000 2015-12-09 17:46:48 +0000 2015-12-09 17:38:19 +0000 2015-12-09 17:15:54 +0000 2015-12-09 16:52:27 +0000 2015-12-09 15:09:55 +0000 2015-12-09 06:01:26 +0000 2015-12-09 04:36:06 +0000 2015-12-09 03:54:22 +0000 2015-12-09 02:56:22 +0000 2015-12-09 02:34:18 +0000 2015-12-09 02:09:56 +0000 2015-12-09 01:07:00 +0000 2015-12-08 23:36:44 +0000 2015-12-08 20:53:11 +0000 2015-12-08 20:01:55 +0000 2015-12-08 19:19:32 +0000 2015-12-08 18:17:56 +0000 2015-12-08 16:56:51 +0000 2015-12-08 16:47:50 +0000 2015-12-08 16:33:36 +0000 2015-12-08 16:21:41 +0000 2015-12-08 15:52:13 +0000 2015-12-08 04:27:30 +0000 2015-12-08 03:57:26 +0000 2015-12-08 03:09:46 +0000 2015-12-08 02:29:37 +0000 2015-12-08 02:23:09 +0000 2015-12-08 01:57:39 +0000 2015-12-08 01:47:22 +0000 2015-12-08 01:30:12 +0000 2015-12-08 01:21:40 +0000 2015-12-08 00:37:11 +0000 2015-12-08 00:15:09 +0000 2015-12-07 23:55:26 +0000 2015-12-07 23:33:58 +0000 2015-12-07 20:07:04 +0000 2015-12-07 17:38:09 +0000 2015-12-07 16:46:21 +0000 2015-12-07 15:32:42 +0000 2015-12-07 04:11:02 +0000 2015-12-07 04:09:13 +0000 2015-12-07 03:51:47 +0000 2015-12-07 03:45:53 +0000 2015-12-07 03:40:24 +0000 2015-12-07 03:34:14 +0000 2015-12-07 03:28:45 +0000 2015-12-07 03:07:12 +0000 2015-12-07 02:58:09 +0000 2015-12-07 02:25:23 +0000 2015-12-07 02:21:29 +0000 2015-12-07 02:13:55 +0000 2015-12-07 01:47:30 +0000 2015-12-07 00:37:52 +0000 2015-12-07 00:12:23 +0000 2015-12-06 22:54:44 +0000 2015-12-06 21:19:54 +0000 2015-12-06 19:21:47 +0000 2015-12-06 19:13:01 +0000 2015-12-06 18:56:46 +0000 2015-12-06 04:49:31 +0000 2015-12-06 04:34:25 +0000 2015-12-06 04:18:46 +0000 2015-12-06 04:03:51 +0000 2015-12-06 03:56:12 +0000 2015-12-06 03:38:05 +0000 2015-12-06 03:28:27 +0000 2015-12-06 03:24:51 +0000 2015-12-06 01:56:44 +0000 2015-12-06 01:48:12 +0000 2015-12-06 00:17:55 +0000 2015-12-05 22:41:22 +0000 2015-12-05 20:41:29 +0000 2015-12-05 18:51:11 +0000 2015-12-05 14:35:56 +0000 2015-12-05 04:36:04 +0000 2015-12-05 04:25:50 +0000 2015-12-05 04:00:04 +0000 2015-12-05 03:41:37 +0000 2015-12-05 03:28:25 +0000 2015-12-05 03:05:49 +0000 2015-12-05 02:46:02 +0000 2015-12-05 02:37:35 +0000 2015-12-05 02:23:49 +0000 2015-12-04 22:17:55 +0000 2015-12-04 22:00:08 +0000 2015-12-04 21:05:23 +0000 2015-12-04 20:38:19 +0000 2015-12-04 17:46:12 +0000 2015-12-04 17:23:04 +0000 2015-12-04 04:56:09 +0000 2015-12-04 03:43:54 +0000 2015-12-04 03:13:46 +0000 2015-12-04 02:51:33 +0000 2015-12-04 02:31:10 +0000 2015-12-04 01:55:13 +0000 2015-12-04 01:42:26 +0000 2015-12-04 01:40:29 +0000 2015-12-03 22:09:14 +0000 2015-12-03 21:11:09 +0000 2015-12-03 18:52:12 +0000 2015-12-03 18:29:09 +0000 2015-12-03 18:23:34 +0000 2015-12-03 17:58:48 +0000 2015-12-03 17:23:00 +0000 2015-12-03 04:33:27 +0000 2015-12-03 04:14:13 +0000 2015-12-03 04:01:02 +0000 2015-12-03 03:30:19 +0000 2015-12-03 03:21:00 +0000 2015-12-03 02:56:30 +0000 2015-12-03 02:45:32 +0000 2015-12-03 02:21:48 +0000 2015-12-03 01:49:05 +0000 2015-12-03 01:16:17 +0000 2015-12-03 00:07:09 +0000 2015-12-02 21:45:16 +0000 2015-12-02 21:06:56 +0000 2015-12-02 19:44:43 +0000 2015-12-02 18:48:47 +0000 2015-12-02 16:49:14 +0000 2015-12-02 15:57:30 +0000 2015-12-02 15:01:33 +0000 2015-12-02 03:40:57 +0000 2015-12-02 03:20:45 +0000 2015-12-02 02:42:26 +0000 2015-12-02 02:30:43 +0000 2015-12-02 02:13:48 +0000 2015-12-02 01:39:53 +0000 2015-12-02 00:58:41 +0000 2015-12-01 20:35:22 +0000 2015-12-01 19:10:13 +0000 2015-12-01 18:50:38 +0000 2015-12-01 17:37:36 +0000 2015-12-01 17:30:22 +0000 2015-12-01 17:00:19 +0000 2015-12-01 16:37:44 +0000 2015-12-01 05:26:34 +0000 2015-12-01 04:44:10 +0000 2015-12-01 04:33:59 +0000 2015-12-01 04:22:29 +0000 2015-12-01 04:14:59 +0000 2015-12-01 03:56:22 +0000 2015-12-01 03:49:23 +0000 2015-12-01 03:39:03 +0000 2015-12-01 03:18:27 +0000 2015-12-01 02:46:33 +0000 2015-12-01 02:38:04 +0000 2015-12-01 02:09:16 +0000 2015-12-01 01:42:28 +0000 2015-12-01 01:14:35 +0000 2015-12-01 00:38:31 +0000 2015-12-01 00:30:04 +0000 2015-12-01 00:24:48 +0000 2015-11-30 18:07:47 +0000 2015-11-30 16:18:11 +0000 2015-11-30 15:59:17 +0000 2015-11-30 15:51:24 +0000 2015-11-30 15:18:34 +0000 2015-11-30 04:37:05 +0000 2015-11-30 04:22:44 +0000 2015-11-30 03:18:59 +0000 2015-11-30 03:06:07 +0000 2015-11-30 02:52:03 +0000 2015-11-30 02:31:34 +0000 2015-11-30 02:18:39 +0000 2015-11-30 02:01:49 +0000 2015-11-30 01:39:49 +0000 2015-11-30 01:28:28 +0000 2015-11-30 01:10:04 +0000 2015-11-30 00:22:57 +0000 2015-11-29 23:57:10 +0000 2015-11-29 23:30:32 +0000 2015-11-29 16:01:20 +0000 2015-11-29 05:52:33 +0000 2015-11-29 05:43:44 +0000 2015-11-29 05:34:25 +0000 2015-11-29 05:16:59 +0000 2015-11-29 05:11:35 +0000 2015-11-29 04:47:03 +0000 2015-11-29 04:37:03 +0000 2015-11-29 04:32:51 +0000 2015-11-29 04:04:12 +0000 2015-11-29 03:50:10 +0000 2015-11-29 03:33:17 +0000 2015-11-29 03:20:54 +0000 2015-11-29 03:16:46 +0000 2015-11-29 02:51:54 +0000 2015-11-29 02:33:32 +0000 2015-11-29 02:20:29 +0000 2015-11-29 02:07:44 +0000 2015-11-29 01:56:48 +0000 2015-11-29 01:52:48 +0000 2015-11-29 01:45:22 +0000 2015-11-29 01:35:26 +0000 2015-11-29 00:39:59 +0000 2015-11-29 00:06:39 +0000 2015-11-28 22:38:01 +0000 2015-11-28 22:15:21 +0000 2015-11-28 21:34:09 +0000 2015-11-28 20:43:53 +0000 2015-11-28 19:51:59 +0000 2015-11-28 19:04:19 +0000 2015-11-28 18:50:15 +0000 2015-11-28 18:19:37 +0000 2015-11-28 05:28:09 +0000 2015-11-28 05:05:47 +0000 2015-11-28 04:54:34 +0000 2015-11-28 04:03:11 +0000 2015-11-28 03:49:14 +0000 2015-11-28 03:31:48 +0000 2015-11-28 03:21:24 +0000 2015-11-28 02:55:30 +0000 2015-11-28 02:48:46 +0000 2015-11-28 02:45:17 +0000 2015-11-28 02:25:32 +0000 2015-11-28 02:20:27 +0000 2015-11-28 02:00:17 +0000 2015-11-28 01:54:54 +0000 2015-11-28 01:42:22 +0000 2015-11-28 01:18:21 +0000 2015-11-28 01:08:55 +0000 2015-11-28 00:48:35 +0000 2015-11-27 23:36:23 +0000 2015-11-27 22:51:19 +0000 2015-11-27 22:01:40 +0000 2015-11-27 20:30:30 +0000 2015-11-27 19:11:49 +0000 2015-11-27 18:09:09 +0000 2015-11-27 17:17:44 +0000 2015-11-27 04:16:59 +0000 2015-11-27 03:47:25 +0000 2015-11-27 03:20:20 +0000 2015-11-27 02:55:47 +0000 2015-11-27 02:38:14 +0000 2015-11-27 02:08:07 +0000 2015-11-27 01:42:24 +0000 2015-11-27 01:10:17 +0000 2015-11-27 00:43:49 +0000 2015-11-27 00:31:29 +0000 2015-11-26 22:16:09 +0000 2015-11-26 21:36:12 +0000 2015-11-26 20:12:29 +0000 2015-11-26 20:04:40 +0000 2015-11-26 18:16:16 +0000 2015-11-26 17:11:11 +0000 2015-11-26 16:59:01 +0000 2015-11-26 05:42:55 +0000 2015-11-26 05:28:02 +0000 2015-11-26 01:11:28 +0000 2015-11-26 01:07:38 +0000 2015-11-26 01:00:28 +0000 2015-11-26 00:52:45 +0000 2015-11-25 23:39:47 +0000 2015-11-25 21:17:12 +0000 2015-11-25 19:46:30 +0000 2015-11-25 19:25:57 +0000 2015-11-25 18:29:39 +0000 2015-11-25 17:49:14 +0000 2015-11-25 17:40:53 +0000 2015-11-25 17:25:28 +0000 2015-11-25 17:13:02 +0000 2015-11-25 05:52:43 +0000 2015-11-25 04:43:02 +0000 2015-11-25 04:26:12 +0000 2015-11-25 04:11:57 +0000 2015-11-25 03:56:01 +0000 2015-11-25 03:39:17 +0000 2015-11-25 03:18:15 +0000 2015-11-25 03:14:30 +0000 2015-11-25 03:06:32 +0000 2015-11-25 01:35:25 +0000 2015-11-25 01:30:16 +0000 2015-11-25 01:20:08 +0000 2015-11-24 18:11:04 +0000 2015-11-24 18:01:05 +0000 2015-11-24 17:19:36 +0000 2015-11-24 06:17:19 +0000 2015-11-24 04:52:37 +0000 2015-11-24 04:17:01 +0000 2015-11-24 03:51:38 +0000 2015-11-24 03:29:51 +0000 2015-11-24 03:19:43 +0000 2015-11-24 03:08:48 +0000 2015-11-24 03:03:06 +0000 2015-11-24 02:54:30 +0000 2015-11-24 02:38:07 +0000 2015-11-24 02:29:49 +0000 2015-11-24 02:13:25 +0000 2015-11-24 01:42:25 +0000 2015-11-24 01:11:27 +0000 2015-11-24 00:54:05 +0000 2015-11-23 23:23:31 +0000 2015-11-23 21:24:36 +0000 2015-11-23 20:42:48 +0000 2015-11-23 19:24:02 +0000 2015-11-23 18:02:38 +0000 2015-11-23 16:18:59 +0000 2015-11-23 15:35:39 +0000 2015-11-23 13:13:28 +0000 2015-11-23 04:59:42 +0000 2015-11-23 04:21:26 +0000 2015-11-23 04:13:37 +0000 2015-11-23 04:03:57 +0000 2015-11-23 03:46:18 +0000 2015-11-23 03:33:22 +0000 2015-11-23 03:25:17 +0000 2015-11-23 03:09:00 +0000 2015-11-23 03:02:14 +0000 2015-11-23 02:52:48 +0000 2015-11-23 02:41:01 +0000 2015-11-23 02:19:29 +0000 2015-11-23 00:30:28 +0000 2015-11-22 23:12:44 +0000 2015-11-22 21:41:02 +0000 2015-11-22 21:31:28 +0000 2015-11-22 21:13:35 +0000 2015-11-22 20:37:34 +0000 2015-11-22 19:13:05 +0000 2015-11-22 18:31:19 +0000 2015-11-22 17:40:27 +0000 2015-11-22 17:23:57 +0000 2015-11-22 16:31:42 +0000 2015-11-22 05:17:54 +0000 2015-11-22 04:56:43 +0000 2015-11-22 04:33:59 +0000 2015-11-22 03:46:11 +0000 2015-11-22 03:24:58 +0000 2015-11-22 02:34:57 +0000 2015-11-22 02:03:45 +0000 2015-11-22 01:20:44 +0000 2015-11-22 00:34:50 +0000 2015-11-22 00:15:33 +0000 2015-11-21 23:10:52 +0000 2015-11-21 22:14:07 +0000 2015-11-21 20:59:20 +0000 2015-11-21 19:50:53 +0000 2015-11-21 19:02:04 +0000 2015-11-21 17:05:31 +0000 2015-11-21 05:26:27 +0000 2015-11-21 04:37:59 +0000 2015-11-21 04:00:28 +0000 2015-11-21 03:44:27 +0000 2015-11-21 03:08:47 +0000 2015-11-21 02:07:05 +0000 2015-11-21 01:59:37 +0000 2015-11-21 01:34:35 +0000 2015-11-21 01:15:07 +0000 2015-11-21 00:46:50 +0000 2015-11-21 00:25:26 +0000 2015-11-20 22:30:44 +0000 2015-11-20 20:47:20 +0000 2015-11-20 20:25:43 +0000 2015-11-20 19:55:30 +0000 2015-11-20 19:12:01 +0000 2015-11-20 18:35:10 +0000 2015-11-20 18:09:16 +0000 2015-11-20 15:36:22 +0000 2015-11-20 15:20:54 +0000 2015-11-20 03:51:52 +0000 2015-11-20 03:51:47 +0000 2015-11-20 03:44:31 +0000 2015-11-20 03:35:20 +0000 2015-11-20 03:25:43 +0000 2015-11-20 03:04:08 +0000 2015-11-20 02:47:56 +0000 2015-11-20 02:32:25 +0000 2015-11-20 02:08:22 +0000 2015-11-20 01:39:42 +0000 2015-11-20 01:06:48 +0000 2015-11-20 00:40:05 +0000 2015-11-20 00:12:54 +0000 2015-11-19 23:53:52 +0000 2015-11-19 22:32:36 +0000 2015-11-19 21:32:34 +0000 2015-11-19 21:22:56 +0000 2015-11-19 20:44:47 +0000 2015-11-19 20:20:22 +0000 2015-11-19 20:14:03 +0000 2015-11-19 18:13:27 +0000 2015-11-19 17:26:08 +0000 2015-11-19 15:49:57 +0000 2015-11-19 05:24:37 +0000 2015-11-19 04:39:35 +0000 2015-11-19 04:05:59 +0000 2015-11-19 03:52:34 +0000 2015-11-19 03:29:07 +0000 2015-11-19 03:10:02 +0000 2015-11-19 03:02:47 +0000 2015-11-19 02:58:01 +0000 2015-11-19 02:43:18 +0000 2015-11-19 02:20:46 +0000 2015-11-19 01:59:39 +0000 2015-11-19 01:27:25 +0000 2015-11-19 00:32:12 +0000 2015-11-18 23:18:48 +0000 2015-11-18 21:23:57 +0000 2015-11-18 20:15:26 +0000 2015-11-18 20:02:51 +0000 2015-11-18 19:43:11 +0000 2015-11-18 19:29:52 +0000 2015-11-18 18:17:59 +0000 2015-11-18 16:12:51 +0000 2015-11-18 15:07:24 +0000 2015-11-18 14:18:59 +0000 2015-11-18 04:35:11 +0000 2015-11-18 04:27:09 +0000 2015-11-18 03:54:28 +0000 2015-11-18 03:18:55 +0000 2015-11-18 02:25:23 +0000 2015-11-18 01:12:41 +0000 2015-11-18 00:55:42 +0000 2015-11-18 00:36:17 +0000 2015-11-17 22:06:57 +0000 2015-11-17 19:35:19 +0000 2015-11-17 18:56:35 +0000 2015-11-17 16:09:56 +0000 2015-11-17 15:51:26 +0000 2015-11-17 03:16:00 +0000 2015-11-17 02:46:43 +0000 2015-11-17 02:06:42 +0000 2015-11-17 02:00:15 +0000 2015-11-17 01:40:41 +0000 2015-11-17 01:30:57 +0000 2015-11-17 01:02:40 +0000 2015-11-17 00:53:15 +0000 2015-11-17 00:24:19 +0000 2015-11-17 00:06:54 +0000 2015-11-16 23:23:41 +0000 2015-11-16 21:54:18 +0000 2015-11-16 21:10:36 +0000 2015-11-16 20:32:58 +0000 2015-11-16 20:01:42 +0000 2015-11-16 19:31:45 +0000 2015-11-16 16:37:02 +0000 2015-11-16 16:11:11 +0000 2015-11-16 15:14:19 +0000 2015-11-16 14:57:41 +0000 2015-11-16 04:02:55 +0000 2015-11-16 03:55:04 +0000 2015-11-16 03:44:34 +0000 2015-11-16 03:22:39 +0000 2015-11-16 02:38:37 +0000 2015-11-16 01:59:36 +0000 2015-11-16 01:52:02 +0000 2015-11-16 01:22:45 +0000 2015-11-16 01:01:59 +0000 2015-11-16 00:55:59 +0000 2015-11-16 00:49:46 +0000 2015-11-16 00:35:11 +0000 2015-11-16 00:30:50 +0000 2015-11-16 00:24:50 +0000 2015-11-16 00:04:52 +0000 2015-11-15 23:21:54 +0000 2015-11-15 23:05:30 +0000 2015-11-15 22:32:08 +0000
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK RT @dog_rates: This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O RT @Athletics: 12/10 #BATP https://t.co/WxwJmvjfxo Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk RT @dog_rates: This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 @RealKentMurphy 14/10 confirmed This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa RT @dog_rates: This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://… This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa RT @dog_rates: Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps:/… RT @dog_rates: Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/i… Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r RT @rachel2195: @dog_rates the boyfriend and his soaking wet pupper h*cking love his new hat 14/10 https://t.co/dJx4Gzc50G This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD RT @dog_rates: This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.c… This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V RT @dog_rates: This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n RT @dog_rates: This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps:/… This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 RT @loganamnosis: Penelope here is doing me quite a divertir. Well done, @dog_rates! Loving the pupdate. 14/10, je jouerais de nouveau. htt… This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw RT @dog_rates: This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/X… Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi @ComplicitOwl @ShopWeRateDogs &gt;10/10 is reserved for dogs This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju RT @dog_rates: We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10… This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF RT @dog_rates: Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://… Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go RT @rachaeleasler: these @dog_rates hats are 13/10 bean approved https://t.co/nRCdq4g9gG Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ RT @dog_rates: This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7T… He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c RT @dog_rates: Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK… Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop RT @dog_rates: Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://… This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd RT @dog_rates: "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 RT @dog_rates: Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t… RT @tallylott: h*ckin adorable promposal. 13/10 @dog_rates https://t.co/6n8hzNihJ9 Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG RT @dog_rates: Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.c… Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT RT @dog_rates: Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily… I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC @Marc_IRL pixelated af 12/10 RT @AaronChewning: First time wearing my @dog_rates hat on a flight and I get DOUBLE OPEN ROWS. Really makes you think. 13/10 https://t.co/… This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu RT @dog_rates: This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I… This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA RT @Jenna_Marbles: @dog_rates Thanks for rating my cermets 14/10 wow I'm so proud I watered them so much @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x RT @dog_rates: Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug… RT @frasercampbell_: oh my... what's that... beautiful scarf around your neck... 14/10 a h*ckin good dog in a h*ckin good game @GoodDogsGam… This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP RT @dog_rates: I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t… Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG RT @dog_rates: This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao RT @eddie_coe98: Thanks @dog_rates completed my laptop. 10/10 would buy again https://t.co/bO0rThDlXI Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT RT @dog_rates: This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https… This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 RT @dog_rates: This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.c… RT @basic_vacek_: I love my new mug easy 13/10 @dog_rates https://t.co/0bYtoL7Wwt This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo RT @dog_rates: Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://… Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk RT @dog_rates: This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t… PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL RT @dog_rates: This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs Meet Indie. She's not a fan of baths but she's definitely a fan of hide &amp; seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy RT @dog_rates: This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ RT @dog_rates: Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps:/… RT @dog_rates: This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://… @0_kelvin_0 &gt;10/10 is reserved for puppos sorry Kevin I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu RT @alexmartindawg: THE DRINK IS DR. PUPPER 10/10 good pun @matt___nelson @GoodDogsGame https://t.co/act3duiqbL This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv RT @KibaDva: I collected all the good dogs!! 15/10 @dog_rates #GoodDogs https://t.co/6UCGFczlOI RT @dog_rates: This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https:… This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI RT @dog_rates: Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EM… @markhoppus 182/10 @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B RT @KennyFromDaBlok: 14/10 h*ckin good hats. will wear daily @dog_rates https://t.co/rHLoU5gS30 This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs RT @SchafeBacon2016: @dog_rates Slightly disturbed by the outright profanity, but confident doggos were involved. 11/10, would tailgate aga… RT @dog_rates: This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https:/… This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE RT @dog_rates: This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/… This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q RT @dog_rates: Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://… RT @dog_rates: So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg RT @dog_rates: This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me… Meet Chester (bottom) &amp; Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY RT @rolltidered: This is Gabby. Now requests to be referred to as a guide dog, thanks to @dog_rates and @ShopWeRateDogs. 12/10 in my book.… This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 RT @EmilieGambril: 12/10 h*cking excited about my new shirt! @dog_rates https://t.co/zFEfMTaHqU This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz RT @dog_rates: This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wu… RT @dog_rates: This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 @docmisterio account started on 11/15/15 RT @dog_rates: This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT @UNC can confirm 12/10 Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 RT @dog_rates: This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionate… Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW RT @dog_rates: This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is RT @dog_rates: This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https… This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS Beebop and Doobert should start a band 12/10 would listen This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 RT @dog_rates: This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://… This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh RT @dog_rates: Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https:/… I was going to do 007/10, but the joke wasn't worth the &lt;10 rating This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD RT @dog_rates: Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps:/… Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc RT @dog_rates: This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw RT @dog_rates: This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U @HistoryInPics 13/10 This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 RT @dog_rates: We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS RT @dog_rates: This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 RT @dog_rates: This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https:… This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV RT @dog_rates: Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn RT @dog_rates: This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co… This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG @imgur for a polar bear tho I'd say 13/10 is appropriate This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu RT @dog_rates: This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5… Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd RT @dog_rates: We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t… RT @dog_rates: This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD RT @dog_rates: This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://… This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT RT @dog_rates: This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 RT @dog_rates: This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 RT @dog_rates: This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 RT @dog_rates: This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU RT @dog_rates: Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i… This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 Say hello to Eugene &amp; Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu RT @dog_rates: Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https:/… This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 RT @dog_rates: Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH RT @dog_rates: This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi RT @dog_rates: Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://… RT @dog_rates: This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k RT @dog_rates: Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets h… This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv RT @dog_rates: Meet Beau &amp; Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https:/… This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J RT @dog_rates: This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG RT @dog_rates: Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.c… This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy Meet Sam. She smiles 24/7 &amp; secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo RT @dog_rates: This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM RT @dog_rates: This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d RT @dog_rates: This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 RT @dog_rates: Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.c… Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h RT @dog_rates: This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi RT @dog_rates: This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 RT @dog_rates: This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd RT @dog_rates: This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt RT @dog_rates: I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n RT @dog_rates: This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb… This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh RT @dog_rates: "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze RT @dog_rates: Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 RT @ChinoChinako: They're good products, Brent\n\nMug holds drinks; hoodie is comfy af. 13/10 \n\nPuppy Aika h*cking agrees. @dog_rates https:/… This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe oh h*ck 10/10 https://t.co/bC69RrW559 This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey RT @dog_rates: This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://… This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets RT @Lin_Manuel: 11/10 would recommend. https://t.co/pnUF69K4xk Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca RT @dog_rates: This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 RT @dog_rates: This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://… This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I RT @dog_rates: This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ RT @dog_rates: I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpf… This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu RT @dog_rates: Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://… RT @dog_rates: We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t… RT @dog_rates: This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn RT @dog_rates: I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL RT @dog_rates: Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/Y… RT @dog_rates: Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.… RT @dog_rates: I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH RT @dog_rates: This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH RT @dog_rates: This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq RT @dog_rates: This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 RT @dog_rates: This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.… RT @dog_rates: Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/… RT @dog_rates: This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 RT @dog_rates: This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https:/… This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI RT @dog_rates: I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5d… Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 RT @dog_rates: This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E RT @dog_rates: This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH RT @dog_rates: This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 RT @dog_rates: When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu RT @dog_rates: This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p RT @dog_rates: I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE RT @dog_rates: This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK RT @dog_rates: This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI RT @dog_rates: This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 RT @dog_rates: This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3… This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v RT @dog_rates: This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.… This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM RT @dog_rates: This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t… This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq RT @dog_rates: Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc RT @dog_rates: This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp RT @dog_rates: This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj RT @dog_rates: This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.… This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh 13/10 for breakdancing puppo @shibbnbot RT @dog_rates: This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG Today, 10/10, should be National Dog Rates Day This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi RT @dog_rates: This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 RT @dog_rates: This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q RT @dog_rates: This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b RT @Patreon: Well. @dog_rates is on Patreon. \n\n12/10. \n\nhttps://t.co/rnKvzt6RJs https://t.co/v4e2ywe8iO This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni RT @dog_rates: This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.c… Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 RT @dog_rates: Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/… This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI RT @dog_rates: In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A RT @dog_rates: This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq RT @dog_rates: Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://… This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ RT @dog_rates: This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 RT @dog_rates: Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW RT @dog_rates: We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://… Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I RT @dog_rates: Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou RT @dog_rates: After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https:/… This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb RT @dog_rates: Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https:/… This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright &amp; licked position\n11/10 https://t.co/7CQkn3gHOQ RT @dog_rates: This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn RT @dog_rates: This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd RT @katieornah: @dog_rates learning a lot at college 12/10 for my professor thank u for the pupper slides https://t.co/nTFDr99hg0 This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo RT @dog_rates: Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t… We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw RT @dog_rates: This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v RT @dog_rates: Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs RT @dog_rates: When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https:/… This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH RT @dog_rates: This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.c… Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC RT @dog_rates: We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https:/… This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 RT @dog_rates: This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU RT @dog_rates: Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https:/… This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP RT @dog_rates: "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo RT @dog_rates: Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ RT @hownottodraw: The story/person behind @dog_rates is heckin adorable af. 11/10, probably would pet. https://t.co/AG5UnRrmzJ Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 Meet Maggie &amp; Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll RT @dog_rates: This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx This is Lilli Bee &amp; Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo RT @dog_rates: This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB RT @jon_hill987: @dog_rates There is a cunningly disguised pupper here mate! 11/10 at least. https://t.co/7boff8zojZ Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN RT @dog_rates: This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc RT @dog_rates: This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https:/… This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW RT @dog_rates: HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE RT @dog_rates: Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta 13/10 such a good doggo\n@spaghemily And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI Meet Jax &amp; Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR RT @dog_rates: This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://… This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd RT @dog_rates: This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https:/… This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 RT @dog_rates: Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0Dv… Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC @mount_alex3 13/10 This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS Meet Buckley. His family &amp; some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln Meet Sid &amp; Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate &amp; churlish. 11/10 would still pet https://t.co/h0trcJohYO There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 &amp; 8/10\nget it together Flurp https://t.co/Akzl5ynMmE This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt RT @twitter: @dog_rates Awesome Tweet! 12/10. Would Retweet. #LoveTwitter https://t.co/j6FQGhxYuN Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg From left to right:\nCletus, Jerome, Alejandro, Burp, &amp; Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc 13/10 hero af\n@ABC Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO Meet Rambo &amp; Kiwi. Rambo's the pup with the sharp toes &amp; rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp Take all my money. 10/10 https://t.co/B28ebc5LzQ Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD Meet Beau &amp; Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 Oh my god 10/10 for every little hot dog pupper After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me 12/10 revolutionary af https://t.co/zKzq4nIY86 This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random &amp; can't bark for shit. 10/10 &amp; 5/10 https://t.co/6NgsQJuSBJ It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 This is Sadie and her 2 pups Shebang &amp; Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn "Fuck the system" 10/10 https://t.co/N0OADmCnVV Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV When bae says they can't go out but you see them with someone else that same night. 5/10 &amp; 10/10 for heartbroken pup https://t.co/aenk0KpoWM Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP 12/10 @LightningHoltt This is Lolo. She's America af. Behind in science &amp; math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe Meet Fynn &amp; Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 &amp; 10/10 https://t.co/MuqHPvtL8c Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd Downright majestic af 12/10 https://t.co/WFh2FEbYzj This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP Meet Trooper &amp; Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c Another magnificent photo. 12/10 https://t.co/X5w387K5jr This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey &amp; parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL Meet Bruiser &amp; Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x Here we see a faulty pupper. Might need to replace batteries. Try turning off &amp; back on again. 9/10 would still pet https://t.co/O1E4AtHVxO Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu *collapses* 12/10 https://t.co/C7M8mnzHIK This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 Great picture here. Dog on the right panicked &amp; forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv Touching scene here. Really stirs up the emotions. The bond between father &amp; son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE Downright inspiring 12/10 https://t.co/vSLtYBWHcQ This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s Meet Tassy &amp; Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 &amp; 11/10 respectively https://t.co/fgORpmTN9C This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C Say hello to Penny &amp; Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx This is Godzilla pupper. He had a ruff childhood &amp; now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI &amp; this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 12/10 stay woke https://t.co/XDiQw4Akiw I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 holy shit 12/10 https://t.co/p6O8X93bTQ When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B I have found another. 13/10 https://t.co/HwroPYv8pY ER... MER... GERD 13/10 https://t.co/L1puJISV1a Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 &amp; 4/10 https://t.co/KNfLnYPmYh Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo Meet Jeb &amp; Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 &amp; 8/10 https://t.co/YPfw7oahbD When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi Meet Chesney. On the outside he stays calm &amp; collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc 13/10\n@ABC7 This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv This is life-changing. 12/10 https://t.co/SroTpI6psB This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk Meet Daisy. She has no eyes &amp; her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq When you try to recreate the scene from Lady &amp; The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt This is the best thing I've ever seen so spread it like wildfire &amp; maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 &amp; 8/10 https://t.co/RcksaUrGNu *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 Me running from commitment. 10/10 https://t.co/ycVJyFFkES Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn Say hello to Andy. He can balance on one foot, obliterate u in checkers, &amp; transform into a rug. 11/10 much talents https://t.co/idzH8JH06g Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 Say hello to Gin &amp; Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo Meet Herb. 12/10 https://t.co/tLRyYvCci3 This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 This is Ben &amp; Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 &amp; 7/10 https://t.co/Lh1BsJrWPp Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY 12/10 good shit Bubka\n@wane15 Meet Jaycob. He got scared of the vacuum. Hide &amp; seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf Say hello to Bobb. Bobb is a Golden High Fescue &amp; a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH This is Timofy. He's a pilot for Southwest. It's Christmas morning &amp; everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj Say hello to Kallie. There was a tornado in the area &amp; the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&amp;1/10 https://t.co/stEodX9Aba This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU I can't do better than he did. 10/10 https://t.co/fM0KXns7Or Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 These two dogs are Bo &amp; Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&amp;2/10 https://t.co/LvP1TTYSCN Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 OMIGOD 12/10 https://t.co/SVMF4Frf1w Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ RT @dogratingrating: Exceptional talent. Original humor. Cutting edge, Nova Scotian comedian. 12/10 https://t.co/uarnTjBeVA RT @dogratingrating: Unoriginal idea. Blatant plagiarism. Curious grammar. -5/10 https://t.co/r7XzeQZWzb Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm This is Dook &amp; Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx Ermergerd 12/10 https://t.co/PQni2sjPsm This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq After much debate this dog is being upgraded to 10/10. I repeat 10/10 Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA 12/10 gimme now https://t.co/QZAnwgnOMB This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 &amp; 10/10 https://t.co/ZnEMHBsAs1 12/10 simply brilliant pup https://t.co/V6ZzG45zzG This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK *internally screaming* 12/10 https://t.co/YMcrXC2Y6R This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv Can take selfies 11/10 https://t.co/ws2AMaNwPW Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj
retweeted_status_id NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.87474e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.86054e+17 NaN NaN NaN 8.30583e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.78058e+17 NaN NaN NaN NaN 8.78282e+17 6.69e+17 NaN NaN NaN 8.76851e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.66335e+17 NaN NaN NaN 8.6888e+17 NaN 8.73214e+17 NaN NaN NaN 8.72658e+17 NaN NaN NaN NaN NaN NaN NaN 8.41077e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.59197e+17 NaN NaN NaN NaN NaN 8.68552e+17 NaN NaN NaN NaN NaN 8.65013e+17 NaN 8.66451e+17 NaN NaN NaN NaN 8.3782e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.63062e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.06629e+17 NaN NaN NaN 8.60564e+17 8.60914e+17 NaN NaN NaN NaN 7.61673e+17 NaN NaN NaN NaN NaN 8.39549e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.57061e+17 NaN 8.44705e+17 NaN NaN 8.5633e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.42164e+17 8.55123e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.3165e+17 NaN NaN NaN NaN NaN NaN 8.29374e+17 8.48289e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.33125e+17 NaN NaN NaN NaN NaN NaN NaN 8.3237e+17 8.47971e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.56289e+17 NaN NaN 7.73309e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.07107e+17 NaN NaN NaN NaN NaN 8.17424e+17 NaN NaN NaN NaN NaN 8.40632e+17 6.67152e+17 NaN NaN NaN NaN NaN NaN NaN 8.3929e+17 NaN NaN NaN 8.38906e+17 7.8384e+17 NaN NaN 8.2075e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.37011e+17 NaN NaN NaN 8.36648e+17 8.17828e+17 NaN NaN NaN 7.86963e+17 NaN 8.35264e+17 7.5304e+17 NaN NaN NaN NaN NaN NaN NaN NaN 8.29502e+17 NaN NaN NaN NaN NaN NaN NaN 8.32434e+17 NaN NaN NaN NaN 8.32766e+17 NaN NaN NaN NaN NaN NaN NaN 7.86709e+17 7.93286e+17 NaN 7.6994e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.0922e+17 NaN 8.26959e+17 NaN NaN NaN NaN NaN NaN 8.10254e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.9467e+17 NaN NaN NaN 8.09921e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 8.25027e+17 NaN 7.95077e+17 NaN NaN NaN NaN NaN NaN 7.84058e+17 NaN NaN NaN NaN 8.22245e+17 NaN NaN NaN 8.22489e+17 NaN NaN NaN NaN 7.86234e+17 NaN 7.80601e+17 NaN NaN 7.82306e+17 NaN NaN NaN NaN NaN 8.19228e+17 NaN NaN 8.20315e+17 8.00141e+17 NaN NaN 8.19952e+17 NaN NaN NaN NaN NaN NaN NaN 8.19005e+17 8.19006e+17 NaN NaN 8.08345e+17 NaN NaN 7.73548e+17 NaN 8.16451e+17 NaN NaN NaN NaN NaN NaN 6.92417e+17 NaN NaN 8.15966e+17 NaN NaN NaN 7.90946e+17 NaN NaN NaN NaN NaN 8.15991e+17 7.32006e+17 NaN NaN 7.91407e+17 NaN NaN NaN NaN NaN 6.98195e+17 NaN NaN 7.90277e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.80055e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.93962e+17 NaN NaN NaN NaN NaN NaN NaN 8.01168e+17 NaN NaN NaN NaN 7.82969e+17 NaN NaN 7.81525e+17 NaN NaN 7.83335e+17 NaN 7.82723e+17 NaN NaN 7.84183e+17 NaN NaN NaN NaN NaN 7.84826e+17 NaN NaN 6.91417e+17 NaN NaN 7.67755e+17 NaN NaN 7.77684e+17 NaN NaN NaN NaN 7.79056e+17 NaN 8.00065e+17 NaN NaN NaN NaN NaN 7.75733e+17 NaN NaN 8.00854e+17 NaN NaN NaN 7.76113e+17 NaN 6.81694e+17 NaN NaN 7.75085e+17 NaN NaN 7.74314e+17 NaN NaN NaN NaN 7.40677e+17 7.18631e+17 7.12809e+17 7.01215e+17 6.83392e+17 6.76937e+17 6.75501e+17 6.71897e+17 6.70445e+17 6.67509e+17 6.67183e+17 6.66104e+17 7.7177e+17 NaN NaN NaN NaN NaN 6.87317e+17 NaN NaN 7.80932e+17 NaN NaN 7.9615e+17 NaN NaN NaN NaN NaN NaN NaN NaN 7.89531e+17 NaN 7.88766e+17 NaN NaN NaN NaN 7.91672e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.84831e+17 6.82088e+17 7.46758e+17 NaN NaN NaN NaN 7.63838e+17 NaN NaN 7.89986e+17 NaN NaN NaN NaN 7.627e+17 NaN 7.62465e+17 NaN NaN NaN NaN NaN 7.5072e+17 NaN NaN NaN NaN 7.36393e+17 NaN NaN NaN 7.61005e+17 NaN NaN NaN NaN NaN 7.52932e+17 NaN 7.59448e+17 NaN NaN NaN NaN NaN NaN NaN 7.79834e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.74292e+17 NaN NaN NaN NaN NaN NaN NaN 7.07611e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.42423e+17 7.80466e+17 NaN NaN 7.53376e+17 NaN NaN NaN 6.79463e+17 NaN NaN NaN 7.581e+17 NaN NaN NaN NaN NaN 7.03042e+17 NaN NaN NaN NaN 7.68193e+17 NaN NaN 7.50429e+17 NaN NaN 6.79828e+17 NaN NaN 7.00748e+17 NaN NaN NaN NaN 7.33109e+17 NaN NaN NaN NaN NaN 7.40373e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.71381e+17 NaN NaN NaN NaN NaN 7.65222e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.7332e+17 NaN NaN NaN 7.71002e+17 NaN NaN 7.39238e+17 NaN NaN NaN 7.41067e+17 NaN NaN NaN 7.06905e+17 NaN NaN 7.00144e+17 NaN NaN NaN 7.39979e+17 NaN NaN NaN NaN NaN NaN NaN 7.59924e+17 NaN NaN NaN NaN NaN 7.25842e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.73295e+17 NaN NaN NaN NaN NaN NaN NaN 6.85325e+17 NaN NaN NaN 7.11695e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.60154e+17 NaN NaN NaN NaN 7.39544e+17 NaN NaN NaN NaN 6.70319e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.79063e+17 NaN NaN 7.57597e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.79158e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.81523e+17 NaN NaN NaN NaN NaN 6.83516e+17 NaN NaN NaN NaN NaN 6.75354e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.04761e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.67867e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.67138e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.11998e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.67549e+17 6.67548e+17 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
retweeted_status_user_id NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.96074e+07 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 4.19698e+09 NaN NaN NaN 5.12805e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN 1.54767e+08 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 7.87462e+17 NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 3.63891e+08 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 5.87097e+07 NaN 4.19698e+09 NaN NaN 6.6699e+07 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 7.47554e+17 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN 4.19698e+09 3.41021e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 5.97064e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.11984e+07 NaN NaN NaN 8.11741e+08 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 7.26635e+08 NaN NaN NaN 7.12457e+17 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.46675e+07 NaN NaN NaN NaN 4.87198e+08 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN 2.48856e+07 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 7.99237e+07 NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 4.19698e+09 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 1.22833e+09 NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 1.73273e+09 NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.95037e+08 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN 2.8048e+08 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.19698e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 783214 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.29683e+09 4.29683e+09 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
retweeted_status_timestamp NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2017-07-19 00:47:34 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2017-07-15 02:44:07 +0000 NaN NaN NaN 2017-02-12 01:04:29 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2017-06-23 01:10:23 +0000 NaN NaN NaN NaN 2017-06-23 16:00:04 +0000 2015-11-24 03:51:38 +0000 NaN NaN NaN 2017-06-19 17:14:49 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2017-05-21 16:48:45 +0000 NaN NaN NaN 2017-05-28 17:23:24 +0000 NaN 2017-06-09 16:22:42 +0000 NaN NaN NaN 2017-06-08 03:32:35 +0000 NaN NaN NaN NaN NaN NaN NaN 2017-03-13 00:02:39 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-05-02 00:04:57 +0000 NaN NaN NaN NaN NaN 2017-05-27 19:39:34 +0000 NaN NaN NaN NaN NaN 2017-05-18 01:17:25 +0000 NaN 2017-05-22 00:28:40 +0000 NaN NaN NaN NaN 2017-03-04 00:21:08 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-05-12 16:05:02 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2016-12-07 22:38:52 +0000 NaN NaN NaN 2017-05-05 18:36:06 +0000 2017-05-06 17:49:42 +0000 NaN NaN NaN NaN 2016-08-05 21:19:27 +0000 NaN NaN NaN NaN NaN 2017-03-08 18:52:12 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-04-26 02:37:47 +0000 NaN 2017-03-23 00:18:10 +0000 NaN NaN 2017-04-24 02:13:14 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-03-16 00:00:07 +0000 2017-04-20 18:14:33 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-02-14 23:43:18 +0000 NaN NaN NaN NaN NaN NaN 2017-02-08 17:00:26 +0000 2017-04-01 21:42:03 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN 2017-02-19 01:23:00 +0000 NaN NaN NaN NaN NaN NaN NaN 2017-02-16 23:23:38 +0000 2017-04-01 00:36:55 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-07-22 00:43:32 +0000 NaN NaN 2016-09-06 23:56:05 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-12-09 06:17:20 +0000 NaN NaN NaN NaN NaN 2017-01-06 17:33:29 +0000 NaN NaN NaN NaN NaN 2017-03-11 18:35:42 +0000 2015-11-19 01:27:25 +0000 NaN NaN NaN NaN NaN NaN NaN 2017-03-08 01:41:24 +0000 NaN NaN NaN 2017-03-07 00:15:46 +0000 2016-10-06 01:23:05 +0000 NaN NaN 2017-01-15 21:49:15 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-03-01 18:47:10 +0000 NaN NaN NaN 2017-02-28 18:43:57 +0000 2017-01-07 20:18:46 +0000 NaN NaN NaN 2016-10-14 16:13:10 +0000 NaN 2017-02-24 23:04:14 +0000 2016-07-13 01:34:21 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2017-02-09 01:27:41 +0000 NaN NaN NaN NaN NaN NaN NaN 2017-02-17 03:39:51 +0000 NaN NaN NaN NaN 2017-02-18 01:39:12 +0000 NaN NaN NaN NaN NaN NaN NaN 2016-10-13 23:23:56 +0000 2016-11-01 03:00:09 +0000 NaN 2016-08-28 16:51:16 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-12-15 02:14:29 +0000 NaN 2017-02-02 01:01:21 +0000 NaN NaN NaN NaN NaN NaN 2016-12-17 22:43:27 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-02-02 23:52:22 +0000 NaN NaN NaN 2016-12-17 00:38:52 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2017-01-27 17:04:02 +0000 NaN 2016-11-06 01:33:58 +0000 NaN NaN NaN NaN NaN NaN 2016-10-06 15:49:14 +0000 NaN NaN NaN NaN 2017-01-20 00:50:15 +0000 NaN NaN NaN 2017-01-20 17:00:46 +0000 NaN NaN NaN NaN 2016-10-12 15:55:59 +0000 NaN 2016-09-27 02:53:48 +0000 NaN NaN 2016-10-01 19:47:08 +0000 NaN NaN NaN NaN NaN 2017-01-11 17:01:16 +0000 NaN NaN 2017-01-14 17:00:24 +0000 2016-11-20 00:59:15 +0000 NaN NaN 2017-01-13 17:00:21 +0000 NaN NaN NaN NaN NaN NaN NaN 2017-01-11 02:15:36 +0000 2017-01-11 02:21:57 +0000 NaN NaN 2016-12-12 16:16:49 +0000 NaN NaN 2016-09-07 15:44:53 +0000 NaN 2017-01-04 01:05:59 +0000 NaN NaN NaN NaN NaN NaN 2016-01-27 18:42:06 +0000 NaN NaN 2017-01-02 17:00:46 +0000 NaN NaN NaN 2016-10-25 16:00:09 +0000 NaN NaN NaN NaN NaN 2017-01-02 18:38:42 +0000 2016-05-16 00:31:53 +0000 NaN NaN 2016-10-26 22:31:36 +0000 NaN NaN NaN NaN NaN 2016-02-12 17:22:12 +0000 NaN NaN 2016-10-23 19:42:02 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-24 16:00:30 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-11-02 23:45:19 +0000 NaN NaN NaN NaN NaN NaN NaN 2016-11-22 20:58:07 +0000 NaN NaN NaN NaN 2016-10-03 15:42:44 +0000 NaN NaN 2016-09-29 16:03:01 +0000 NaN NaN 2016-10-04 15:55:06 +0000 NaN 2016-10-02 23:23:04 +0000 NaN NaN 2016-10-07 00:06:50 +0000 NaN NaN NaN NaN NaN 2016-10-08 18:41:19 +0000 NaN NaN 2016-01-25 00:26:41 +0000 NaN NaN 2016-08-22 16:06:54 +0000 NaN NaN 2016-09-19 01:42:24 +0000 NaN NaN NaN NaN 2016-09-22 20:33:42 +0000 NaN 2016-11-19 19:55:41 +0000 NaN NaN NaN NaN NaN 2016-09-13 16:30:07 +0000 NaN NaN 2016-11-22 00:10:52 +0000 NaN NaN NaN 2016-09-14 17:40:06 +0000 NaN 2015-12-29 04:31:49 +0000 NaN NaN 2016-09-11 21:34:30 +0000 NaN NaN 2016-09-09 18:31:54 +0000 NaN NaN NaN NaN 2016-06-08 22:48:46 +0000 2016-04-09 02:47:55 +0000 2016-03-24 01:11:29 +0000 2016-02-21 01:19:47 +0000 2016-01-02 20:58:09 +0000 2015-12-16 01:27:03 +0000 2015-12-12 02:23:01 +0000 2015-12-02 03:40:57 +0000 2015-11-28 03:31:48 +0000 2015-11-20 01:06:48 +0000 2015-11-19 03:29:07 +0000 2015-11-16 04:02:55 +0000 2016-09-02 18:03:10 +0000 NaN NaN NaN NaN NaN 2016-01-13 16:56:30 +0000 NaN NaN 2016-09-28 00:46:20 +0000 NaN NaN 2016-11-09 00:37:46 +0000 NaN NaN NaN NaN NaN NaN NaN NaN 2016-10-21 18:16:44 +0000 NaN 2016-10-19 15:37:03 +0000 NaN NaN NaN NaN 2016-10-27 16:06:04 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-01-06 20:16:44 +0000 2015-12-30 06:37:25 +0000 2016-06-25 17:31:25 +0000 NaN NaN NaN NaN 2016-08-11 20:40:41 +0000 NaN NaN 2016-10-23 00:27:05 +0000 NaN NaN NaN NaN 2016-08-08 17:19:51 +0000 NaN 2016-08-08 01:44:46 +0000 NaN NaN NaN NaN NaN 2016-07-06 15:54:42 +0000 NaN NaN NaN NaN 2016-05-28 03:04:00 +0000 NaN NaN NaN 2016-08-04 01:03:17 +0000 NaN NaN NaN NaN NaN 2016-07-12 18:27:35 +0000 NaN 2016-07-30 17:56:51 +0000 NaN NaN NaN NaN NaN NaN NaN 2016-09-25 00:06:08 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-08 18:17:56 +0000 NaN NaN NaN NaN NaN NaN NaN 2016-03-09 16:56:11 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-06-13 18:27:32 +0000 2016-09-26 17:55:00 +0000 NaN NaN 2016-07-13 23:48:51 +0000 NaN NaN NaN 2015-12-23 00:45:35 +0000 NaN NaN NaN 2016-07-27 00:40:12 +0000 NaN NaN NaN NaN NaN 2016-02-26 02:20:37 +0000 NaN NaN NaN NaN 2016-08-23 21:09:14 +0000 NaN NaN 2016-07-05 20:41:01 +0000 NaN NaN 2015-12-24 00:58:27 +0000 NaN NaN 2016-02-19 18:24:26 +0000 NaN NaN NaN NaN 2016-05-19 01:38:16 +0000 NaN NaN NaN NaN NaN 2016-06-08 02:41:38 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-09-01 16:14:48 +0000 NaN NaN NaN NaN NaN 2016-08-15 16:22:20 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-06 01:56:44 +0000 NaN NaN NaN 2016-08-31 15:10:07 +0000 NaN NaN 2016-06-04 23:31:25 +0000 NaN NaN NaN 2016-06-10 00:39:48 +0000 NaN NaN NaN 2016-03-07 18:09:06 +0000 NaN NaN 2016-02-18 02:24:13 +0000 NaN NaN NaN 2016-06-07 00:36:02 +0000 NaN NaN NaN NaN NaN NaN NaN 2016-08-01 01:28:46 +0000 NaN NaN NaN NaN NaN 2016-04-29 00:21:01 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-06 00:17:55 +0000 NaN NaN NaN NaN NaN NaN NaN 2016-01-08 05:00:14 +0000 NaN NaN NaN 2016-03-20 23:23:54 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-08-01 16:42:51 +0000 NaN NaN NaN NaN 2016-06-05 19:47:03 +0000 NaN NaN NaN NaN 2015-11-27 19:11:49 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-21 22:15:18 +0000 NaN NaN 2016-07-25 15:23:28 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-22 04:35:49 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-12-28 17:12:42 +0000 NaN NaN NaN NaN NaN 2016-01-03 05:11:12 +0000 NaN NaN NaN NaN NaN 2015-12-11 16:40:19 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-03-01 20:11:59 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-11-21 00:46:50 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-11-19 00:32:12 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2016-03-21 19:29:52 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2015-11-20 03:43:06 +0000 2015-11-20 03:41:59 +0000 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
expanded_urls https://twitter.com/dog_rates/status/892420643555336193/photo/1 https://twitter.com/dog_rates/status/892177421306343426/photo/1 https://twitter.com/dog_rates/status/891815181378084864/photo/1 https://twitter.com/dog_rates/status/891689557279858688/photo/1 https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 https://twitter.com/dog_rates/status/891087950875897856/photo/1 https://gofundme.com/ydvmve-surgery-for-jax,https://twitter.com/dog_rates/status/890971913173991426/photo/1 https://twitter.com/dog_rates/status/890729181411237888/photo/1,https://twitter.com/dog_rates/status/890729181411237888/photo/1 https://twitter.com/dog_rates/status/890609185150312448/photo/1 https://twitter.com/dog_rates/status/890240255349198849/photo/1 https://twitter.com/dog_rates/status/890006608113172480/photo/1,https://twitter.com/dog_rates/status/890006608113172480/photo/1 https://twitter.com/dog_rates/status/889880896479866881/photo/1 https://twitter.com/dog_rates/status/889665388333682689/photo/1 https://twitter.com/dog_rates/status/889638837579907072/photo/1,https://twitter.com/dog_rates/status/889638837579907072/photo/1 https://twitter.com/dog_rates/status/889531135344209921/photo/1 https://twitter.com/dog_rates/status/889278841981685760/video/1 https://twitter.com/dog_rates/status/888917238123831296/photo/1 https://twitter.com/dog_rates/status/888804989199671297/photo/1,https://twitter.com/dog_rates/status/888804989199671297/photo/1 https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1 https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 https://twitter.com/dog_rates/status/888078434458587136/photo/1,https://twitter.com/dog_rates/status/888078434458587136/photo/1 https://twitter.com/dog_rates/status/887705289381826560/photo/1 https://twitter.com/dog_rates/status/887517139158093824/video/1 https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 https://twitter.com/dog_rates/status/887343217045368832/video/1 https://twitter.com/dog_rates/status/887101392804085760/photo/1 https://twitter.com/dog_rates/status/886983233522544640/photo/1,https://twitter.com/dog_rates/status/886983233522544640/photo/1 https://www.gofundme.com/mingusneedsus,https://twitter.com/dog_rates/status/886736880519319552/photo/1,https://twitter.com/dog_rates/status/886736880519319552/photo/1 https://twitter.com/dog_rates/status/886680336477933568/photo/1 https://twitter.com/dog_rates/status/886366144734445568/photo/1,https://twitter.com/dog_rates/status/886366144734445568/photo/1 NaN https://twitter.com/dog_rates/status/886258384151887873/photo/1 https://twitter.com/dog_rates/status/886053434075471873,https://twitter.com/dog_rates/status/886053434075471873 https://twitter.com/dog_rates/status/885984800019947520/photo/1 https://twitter.com/dog_rates/status/885528943205470208/photo/1 https://twitter.com/4bonds2carbon/status/885517367337512960 https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1 https://twitter.com/dog_rates/status/884925521741709313/photo/1 https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1 https://twitter.com/dog_rates/status/884562892145688576/photo/1 https://twitter.com/dog_rates/status/884441805382717440/photo/1 https://twitter.com/kaijohnson_19/status/883965650754039809 https://twitter.com/dog_rates/status/884162670584377345/photo/1 https://twitter.com/dog_rates/status/883838122936631299/photo/1 https://twitter.com/dog_rates/status/883482846933004288/photo/1,https://twitter.com/dog_rates/status/883482846933004288/photo/1 https://twitter.com/dog_rates/status/883360690899218434/photo/1 https://twitter.com/dog_rates/status/883117836046086144/photo/1,https://twitter.com/dog_rates/status/883117836046086144/photo/1 https://twitter.com/dog_rates/status/882992080364220416/photo/1,https://twitter.com/dog_rates/status/882992080364220416/photo/1 https://twitter.com/dog_rates/status/882762694511734784/photo/1 https://twitter.com/dog_rates/status/882627270321602560/photo/1 https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1 https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1 https://twitter.com/dog_rates/status/881906580714921986/photo/1 https://twitter.com/dog_rates/status/881666595344535552/photo/1 NaN https://twitter.com/dog_rates/status/881536004380872706/video/1 https://twitter.com/dog_rates/status/881268444196462592/photo/1 https://twitter.com/dog_rates/status/880935762899988482/photo/1 https://twitter.com/dog_rates/status/880872448815771648/photo/1 https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1 https://twitter.com/dog_rates/status/880221127280381952/photo/1,https://twitter.com/dog_rates/status/880221127280381952/photo/1 https://twitter.com/dog_rates/status/880095782870896641/photo/1 https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1 NaN https://twitter.com/dog_rates/status/879492040517615616/photo/1 https://twitter.com/dog_rates/status/879415818425184262/video/1 https://twitter.com/dog_rates/status/879376492567855104/photo/1 https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 https://twitter.com/dog_rates/status/879050749262655488/photo/1 https://twitter.com/dog_rates/status/879008229531029506/photo/1 https://twitter.com/dog_rates/status/878776093423087618/photo/1,https://twitter.com/dog_rates/status/878776093423087618/photo/1 https://twitter.com/bbcworld/status/878599868507402241 https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 https://twitter.com/dog_rates/status/669000397445533696/photo/1 https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 https://twitter.com/dog_rates/status/877736472329191424/photo/1,https://twitter.com/dog_rates/status/877736472329191424/photo/1 https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1 https://twitter.com/dog_rates/status/877556246731214848/photo/1 https://twitter.com/dog_rates/status/877316821321428993/photo/1,https://twitter.com/dog_rates/status/877316821321428993/photo/1 https://twitter.com/dog_rates/status/877201837425926144/photo/1,https://twitter.com/dog_rates/status/877201837425926144/photo/1 https://twitter.com/dog_rates/status/876838120628539392/photo/1,https://twitter.com/dog_rates/status/876838120628539392/photo/1 https://twitter.com/mpstowerham/status/876162994446753793 https://twitter.com/dog_rates/status/876484053909872640/photo/1 https://twitter.com/dog_rates/status/876120275196170240/photo/1 https://twitter.com/dog_rates/status/875747767867523072/photo/1 https://twitter.com/dog_rates/status/875144289856114688/video/1 https://twitter.com/drboondoc/status/874413398133547008 https://twitter.com/dog_rates/status/875021211251597312/photo/1,https://twitter.com/dog_rates/status/875021211251597312/photo/1 https://twitter.com/dog_rates/status/874680097055178752/photo/1 https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 https://twitter.com/dog_rates/status/874296783580663808/photo/1 https://twitter.com/dog_rates/status/874057562936811520/photo/1 https://twitter.com/dog_rates/status/874012996292530176/photo/1,https://twitter.com/dog_rates/status/874012996292530176/photo/1 https://twitter.com/dog_rates/status/868880397819494401/photo/1,https://twitter.com/dog_rates/status/868880397819494401/photo/1 https://twitter.com/dog_rates/status/873580283840344065/photo/1 https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 https://twitter.com/dog_rates/status/872967104147763200/photo/1,https://twitter.com/dog_rates/status/872967104147763200/photo/1 https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1 https://twitter.com/loganamnosis/status/872657584259551233/photo/1 https://twitter.com/dog_rates/status/872620804844003328/photo/1 https://twitter.com/dog_rates/status/872486979161796608/photo/1 https://twitter.com/dog_rates/status/872261713294495745/photo/1,https://twitter.com/dog_rates/status/872261713294495745/photo/1 https://twitter.com/dog_rates/status/872122724285648897/photo/1,https://twitter.com/dog_rates/status/872122724285648897/photo/1 https://twitter.com/dog_rates/status/871879754684805121/photo/1,https://twitter.com/dog_rates/status/871879754684805121/photo/1 https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1 https://twitter.com/dog_rates/status/871515927908634625/photo/1,https://twitter.com/dog_rates/status/871515927908634625/photo/1 https://twitter.com/dog_rates/status/841077006473256960/photo/1 https://twitter.com/animalcog/status/871075758080503809 https://twitter.com/dog_rates/status/871032628920680449/photo/1 https://twitter.com/dog_rates/status/870804317367881728/photo/1 NaN https://www.gofundme.com/help-fix-codys-torn-acl,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1 https://twitter.com/dog_rates/status/870374049280663552/photo/1 https://twitter.com/dog_rates/status/870308999962521604/photo/1,https://twitter.com/dog_rates/status/870308999962521604/photo/1 https://twitter.com/dog_rates/status/870063196459192321/photo/1,https://twitter.com/dog_rates/status/870063196459192321/photo/1 https://twitter.com/dog_rates/status/859196978902773760/video/1 https://twitter.com/dog_rates/status/869772420881756160/photo/1 https://twitter.com/dog_rates/status/869702957897576449/photo/1 https://twitter.com/dog_rates/status/869596645499047938/photo/1,https://twitter.com/dog_rates/status/869596645499047938/photo/1 https://twitter.com/dog_rates/status/869227993411051520/photo/1 https://twitter.com/dog_rates/status/868880397819494401/photo/1 https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 https://twitter.com/dog_rates/status/868622495443632128/photo/1 https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 https://twitter.com/dog_rates/status/867900495410671616/photo/1 https://twitter.com/dog_rates/status/867774946302451713/photo/1,https://twitter.com/dog_rates/status/867774946302451713/photo/1 https://twitter.com/dog_rates/status/867421006826221569/photo/1 https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1 https://twitter.com/dog_rates/status/867051520902168576/photo/1 https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 https://twitter.com/nbcnews/status/866458718883467265 https://twitter.com/dog_rates/status/866686824827068416/photo/1,https://twitter.com/dog_rates/status/866686824827068416/photo/1 https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 https://twitter.com/dog_rates/status/865718153858494464/photo/1 https://twitter.com/dog_rates/status/865359393868664832/photo/1,https://twitter.com/dog_rates/status/865359393868664832/photo/1 https://twitter.com/dog_rates/status/865006731092295680/photo/1 https://twitter.com/dog_rates/status/864873206498414592/photo/1,https://twitter.com/dog_rates/status/864873206498414592/photo/1 https://twitter.com/dog_rates/status/864279568663928832/photo/1,https://twitter.com/dog_rates/status/864279568663928832/photo/1 https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1 https://twitter.com/dog_rates/status/863907417377173506/photo/1,https://twitter.com/dog_rates/status/863907417377173506/photo/1 https://twitter.com/dog_rates/status/863553081350529029/video/1 https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 https://twitter.com/dog_rates/status/863432100342583297/photo/1 NaN https://twitter.com/dog_rates/status/863079547188785154/photo/1 https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 https://twitter.com/dog_rates/status/862831371563274240/photo/1,https://twitter.com/dog_rates/status/862831371563274240/photo/1 https://twitter.com/dog_rates/status/862722525377298433/photo/1 https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1 https://twitter.com/dog_rates/status/862096992088072192/photo/1,https://twitter.com/dog_rates/status/862096992088072192/photo/1 https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 https://twitter.com/dog_rates/status/861383897657036800/photo/1 https://twitter.com/dog_rates/status/861288531465048066/video/1 https://twitter.com/dog_rates/status/861005113778896900/photo/1 https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1 https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 https://twitter.com/dog_rates/status/860524505164394496/photo/1 https://twitter.com/dog_rates/status/860276583193509888/photo/1 https://twitter.com/dog_rates/status/860184849394610176/photo/1 https://twitter.com/dog_rates/status/761672994376806400/video/1 https://twitter.com/dog_rates/status/859924526012018688/photo/1 https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1 https://twitter.com/dog_rates/status/859607811541651456/photo/1 https://twitter.com/dog_rates/status/859196978902773760/video/1 https://twitter.com/dog_rates/status/859074603037188101/photo/1 https://twitter.com/dog_rates/status/839549326359670784/photo/1 https://twitter.com/dog_rates/status/858843525470990336/photo/1 https://twitter.com/dog_rates/status/858471635011153920/photo/1 https://twitter.com/dog_rates/status/858107933456039936/photo/1 https://twitter.com/dog_rates/status/857989990357356544/photo/1 https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1 https://www.gofundme.com/meeko-needs-heart-surgery,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1 https://twitter.com/dog_rates/status/857263160327368704/photo/1 NaN https://twitter.com/AaronChewning/status/857061112319234050/photo/1 https://twitter.com/dog_rates/status/857029823797047296/photo/1,https://twitter.com/dog_rates/status/857029823797047296/photo/1 https://twitter.com/dog_rates/status/844704788403113984/photo/1 https://twitter.com/dog_rates/status/856543823941562368/photo/1 https://twitter.com/dog_rates/status/856526610513747968/photo/1 NaN NaN https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1 NaN NaN https://twitter.com/perfy/status/855857318168150016 https://twitter.com/dog_rates/status/855851453814013952/photo/1 https://twitter.com/markhalperin/status/855656431005061120 https://twitter.com/dog_rates/status/855459453768019968/photo/1,https://twitter.com/dog_rates/status/855459453768019968/photo/1 https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 https://twitter.com/frasercampbell_/status/855122533267460096/photo/1 https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1 https://twitter.com/dog_rates/status/854482394044301312/photo/1 https://twitter.com/dog_rates/status/854365224396361728/photo/1,https://twitter.com/dog_rates/status/854365224396361728/photo/1 https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1 https://twitter.com/dog_rates/status/854010172552949760/photo/1,https://twitter.com/dog_rates/status/854010172552949760/photo/1 https://twitter.com/dog_rates/status/853760880890318849/photo/1 https://twitter.com/dog_rates/status/853639147608842240/photo/1,https://twitter.com/dog_rates/status/853639147608842240/photo/1 https://twitter.com/dog_rates/status/853299958564483072/photo/1,https://twitter.com/dog_rates/status/853299958564483072/photo/1 http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 https://www.gofundme.com/bennys-medical-bills,https://twitter.com/dog_rates/status/852912242202992640/photo/1,https://twitter.com/dog_rates/status/852912242202992640/photo/1 https://twitter.com/dog_rates/status/852672615818899456/photo/1 https://twitter.com/dog_rates/status/852553447878664193/photo/1,https://twitter.com/dog_rates/status/852553447878664193/photo/1 https://twitter.com/dog_rates/status/852311364735569921/photo/1 https://twitter.com/dog_rates/status/852226086759018497/video/1 https://twitter.com/dog_rates/status/852189679701164033/photo/1 https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 https://twitter.com/eddie_coe98/status/848289382176100353/photo/1,https://twitter.com/eddie_coe98/status/848289382176100353/photo/1 https://twitter.com/dog_rates/status/851591660324737024/photo/1 https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1 https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1 https://twitter.com/dog_rates/status/850753642995093505/photo/1,https://twitter.com/dog_rates/status/850753642995093505/photo/1 https://twitter.com/dog_rates/status/850380195714523136/video/1 NaN https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1 https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1 https://twitter.com/dog_rates/status/849776966551130114/photo/1,https://twitter.com/dog_rates/status/849776966551130114/photo/1 https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1 https://twitter.com/dog_rates/status/849336543269576704/photo/1 https://twitter.com/dog_rates/status/849051919805034497/photo/1 https://twitter.com/dog_rates/status/848690551926992896/photo/1 https://twitter.com/dog_rates/status/848324959059550208/photo/1 NaN https://twitter.com/dog_rates/status/848212111729840128/photo/1 https://twitter.com/dog_rates/status/832369877331693569/photo/1 https://twitter.com/basic_vacek_/status/847971000004354048/photo/1,https://twitter.com/basic_vacek_/status/847971000004354048/photo/1 https://twitter.com/dog_rates/status/847962785489326080/photo/1 https://www.gofundme.com/help-save-rontu,https://twitter.com/dog_rates/status/847842811428974592/photo/1 NaN https://twitter.com/dog_rates/status/847606175596138505/photo/1 https://twitter.com/dog_rates/status/847251039262605312/photo/1,https://twitter.com/dog_rates/status/847251039262605312/photo/1 https://www.petfinder.com/petdetail/37334596,https://twitter.com/dog_rates/status/847157206088847362/photo/1,https://twitter.com/dog_rates/status/847157206088847362/photo/1 https://twitter.com/dog_rates/status/847116187444137987/photo/1 https://twitter.com/dog_rates/status/846874817362120707/photo/1,https://twitter.com/dog_rates/status/846874817362120707/photo/1 https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1 https://twitter.com/shomaristone/status/846484798663245829 https://twitter.com/dog_rates/status/846153765933735936/photo/1,https://twitter.com/dog_rates/status/846153765933735936/photo/1 https://twitter.com/csncapitals/status/846088479142531073 https://twitter.com/dog_rates/status/846042936437604353/photo/1 https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1 https://twitter.com/dog_rates/status/845677943972139009/photo/1 https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 https://www.gofundme.com/help-save-a-pup,https://twitter.com/dog_rates/status/845397057150107648/photo/1,https://twitter.com/dog_rates/status/845397057150107648/photo/1 https://twitter.com/dog_rates/status/845306882940190720/photo/1 https://twitter.com/dog_rates/status/773308824254029826/photo/1 https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1 https://twitter.com/dog_rates/status/844973813909606400/photo/1 https://twitter.com/dog_rates/status/844704788403113984/photo/1 https://twitter.com/dog_rates/status/844580511645339650/photo/1 https://twitter.com/dog_rates/status/844223788422217728/photo/1 https://twitter.com/brianstack153/status/796796054100471809 https://twitter.com/dog_rates/status/843856843873095681/photo/1 https://twitter.com/dog_rates/status/843604394117681152/photo/1 https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1 https://twitter.com/dog_rates/status/807106840509214720/video/1,https://twitter.com/dog_rates/status/807106840509214720/video/1 https://twitter.com/dog_rates/status/842846295480000512/photo/1 https://www.gofundme.com/get-indie-home/,https://twitter.com/dog_rates/status/842765311967449089/photo/1,https://twitter.com/dog_rates/status/842765311967449089/photo/1 https://twitter.com/dog_rates/status/842535590457499648/photo/1 https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1 https://twitter.com/dog_rates/status/817423860136083457/video/1,https://twitter.com/dog_rates/status/817423860136083457/video/1 https://twitter.com/dog_rates/status/841680585030541313/photo/1 https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1 https://twitter.com/abc/status/841311395547250688 https://twitter.com/dog_rates/status/841314665196081154/video/1 https://twitter.com/dog_rates/status/841077006473256960/photo/1 https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 https://twitter.com/dog_rates/status/667152164079423490/photo/1 NaN https://twitter.com/dog_rates/status/840696689258311684/photo/1 https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 https://twitter.com/dog_rates/status/840370681858686976/photo/1 https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1 https://twitter.com/dog_rates/status/839990271299457024/photo/1,https://twitter.com/dog_rates/status/839990271299457024/photo/1 https://twitter.com/dog_rates/status/839549326359670784/photo/1 https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1 https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1 https://twitter.com/ktla/status/838948714227998720 https://twitter.com/dog_rates/status/838921590096166913/photo/1 https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1 https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 https://twitter.com/dog_rates/status/838561493054533637/photo/1 https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1 https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 NaN NaN https://twitter.com/dog_rates/status/838083903487373313/photo/1,https://twitter.com/dog_rates/status/838083903487373313/photo/1 https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 https://twitter.com/dog_rates/status/837482249356513284/photo/1,https://twitter.com/dog_rates/status/837482249356513284/photo/1 https://twitter.com/dog_rates/status/837471256429613056/photo/1,https://twitter.com/dog_rates/status/837471256429613056/photo/1 https://twitter.com/dog_rates/status/837366284874571778/photo/1 https://twitter.com/dog_rates/status/837110210464448512/photo/1 https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1,https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1 https://twitter.com/dog_rates/status/836989968035819520/photo/1 https://twitter.com/dog_rates/status/836753516572119041/photo/1 https://twitter.com/dog_rates/status/836677758902222849/photo/1,https://twitter.com/dog_rates/status/836677758902222849/photo/1 https://twitter.com/SchafeBacon2016/status/836648149003485187/photo/1 https://twitter.com/dog_rates/status/817827839487737858/video/1 https://twitter.com/dog_rates/status/836380477523124226/photo/1 https://twitter.com/dog_rates/status/836260088725786625/photo/1 https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1 https://twitter.com/dog_rates/status/786963064373534720/photo/1 https://twitter.com/dog_rates/status/835574547218894849/photo/1,https://twitter.com/dog_rates/status/835574547218894849/photo/1 https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 https://vine.co/v/5W2Dg3XPX7a,https://vine.co/v/5W2Dg3XPX7a https://twitter.com/dog_rates/status/835297930240217089/photo/1 https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 NaN https://twitter.com/dog_rates/status/835172783151792128/photo/1,https://twitter.com/dog_rates/status/835172783151792128/photo/1 https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1 https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1 https://twitter.com/dog_rates/status/834786237630337024/photo/1 https://twitter.com/dog_rates/status/834574053763584002/photo/1 https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 https://twitter.com/dog_rates/status/834458053273591808/photo/1 https://twitter.com/dog_rates/status/834209720923721728/photo/1,https://twitter.com/dog_rates/status/834209720923721728/photo/1 https://twitter.com/dog_rates/status/834167344700198914/photo/1 https://twitter.com/stevekopack/status/834086676934836224 https://twitter.com/dog_rates/status/834086379323871233/photo/1 https://twitter.com/dog_rates/status/833863086058651648/photo/1,https://twitter.com/dog_rates/status/833863086058651648/photo/1 https://twitter.com/dog_rates/status/833826103416520705/photo/1,https://twitter.com/dog_rates/status/833826103416520705/photo/1 https://twitter.com/rolltidered/status/832434358292209665/photo/1 https://twitter.com/dog_rates/status/833722901757046785/photo/1,https://twitter.com/dog_rates/status/833722901757046785/photo/1 https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1 https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 https://twitter.com/dog_rates/status/832998151111966721/photo/1,https://twitter.com/dog_rates/status/832998151111966721/photo/1 https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1 https://twitter.com/dog_rates/status/832757312314028032/photo/1,https://twitter.com/dog_rates/status/832757312314028032/photo/1 https://twitter.com/telegraph/status/832268302944579584 http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ https://twitter.com/dog_rates/status/832636094638288896/photo/1 https://twitter.com/dog_rates/status/832397543355072512/photo/1,https://twitter.com/dog_rates/status/832397543355072512/photo/1 https://twitter.com/dog_rates/status/832369877331693569/photo/1 https://twitter.com/dog_rates/status/832273440279240704/video/1 https://twitter.com/dog_rates/status/786709082849828864/photo/1 https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 NaN https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 https://www.petfinder.com/petdetail/34918210,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1 https://twitter.com/dog_rates/status/831939777352105988/photo/1 NaN https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1 https://twitter.com/dog_rates/status/831670449226514432/photo/1 http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 https://twitter.com/dog_rates/status/831552930092285952/photo/1 https://twitter.com/dog_rates/status/831322785565769729/photo/1 https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1 https://twitter.com/dog_rates/status/831309418084069378/photo/1 https://twitter.com/dog_rates/status/831262627380748289/photo/1 https://twitter.com/dog_rates/status/830956169170665475/video/1 https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 https://www.gofundme.com/sick-baby-samson,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1 https://twitter.com/dog_rates/status/826958653328592898/photo/1,https://twitter.com/dog_rates/status/826958653328592898/photo/1 https://twitter.com/dog_rates/status/829861396166877184/photo/1 https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 https://twitter.com/dog_rates/status/829449946868879360/photo/1 https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 https://twitter.com/dog_rates/status/829141528400556032/photo/1,https://twitter.com/dog_rates/status/829141528400556032/photo/1 https://twitter.com/dog_rates/status/829011960981237760/photo/1,https://twitter.com/dog_rates/status/829011960981237760/photo/1 https://twitter.com/dog_rates/status/810254108431155201/photo/1 https://twitter.com/dog_rates/status/828770345708580865/photo/1 https://twitter.com/dog_rates/status/828708714936930305/photo/1,https://twitter.com/dog_rates/status/828708714936930305/photo/1 https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1 https://twitter.com/dog_rates/status/828409743546925057/photo/1 https://twitter.com/dog_rates/status/828408677031882754/photo/1 https://twitter.com/dog_rates/status/828381636999917570/photo/1 https://twitter.com/dog_rates/status/828376505180889089/photo/1 https://twitter.com/dog_rates/status/828372645993398273/photo/1 NaN https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1 https://twitter.com/dog_rates/status/828011680017821696/photo/1,https://twitter.com/dog_rates/status/828011680017821696/photo/1 https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1 https://twitter.com/dog_rates/status/827653905312006145/photo/1 https://twitter.com/dog_rates/status/827600520311402496/photo/1 https://twitter.com/dog_rates/status/827324948884643840/photo/1 https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1 https://twitter.com/dog_rates/status/826958653328592898/photo/1 https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1 https://twitter.com/dog_rates/status/809920764300447744/photo/1 NaN https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1 https://twitter.com/dog_rates/status/826476773533745153/photo/1 https://twitter.com/dog_rates/status/826240494070030336/photo/1 http://us.blastingnews.com/news/2017/01/kentucky-teen-helps-lost-yellow-labrador-and-gets-a-huge-surprise-001431969.html?sbdht=_pM1QUzk3wsenGU1giO7UnJ5NGGiKRW9AD5xs2MkaDpYY13JxbtKE4w2_,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1 https://twitter.com/dog_rates/status/826115272272650244/photo/1 https://twitter.com/dog_rates/status/825876512159186944/photo/1 https://twitter.com/dog_rates/status/825829644528148480/photo/1,https://twitter.com/dog_rates/status/825829644528148480/photo/1 https://twitter.com/dog_rates/status/825535076884762624/photo/1 https://twitter.com/dog_rates/status/825147591692263424/photo/1 https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 https://twitter.com/dog_rates/status/824775126675836928/photo/1,https://twitter.com/dog_rates/status/824775126675836928/photo/1 https://twitter.com/dog_rates/status/824663926340194305/photo/1 https://twitter.com/dog_rates/status/824325613288833024/photo/1 https://twitter.com/dog_rates/status/824297048279236611/photo/1,https://twitter.com/dog_rates/status/824297048279236611/photo/1 https://twitter.com/badlandsnps/status/823966201328046080 https://twitter.com/dog_rates/status/823939628516474880/photo/1 https://vine.co/v/5gKxeUpuKEr,https://vine.co/v/5gKxeUpuKEr https://twitter.com/dog_rates/status/823699002998870016/photo/1 https://twitter.com/dog_rates/status/823581115634085888/photo/1 NaN https://twitter.com/dog_rates/status/823322678127919110/photo/1,https://twitter.com/dog_rates/status/823322678127919110/photo/1 https://twitter.com/dog_rates/status/822244816520155136/photo/1,https://twitter.com/dog_rates/status/822244816520155136/photo/1 https://twitter.com/dog_rates/status/822975315408461824/photo/1 https://twitter.com/dog_rates/status/822872901745569793/photo/1 https://twitter.com/dog_rates/status/822859134160621569/photo/1 https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 https://twitter.com/dog_rates/status/822610361945911296/photo/1 https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1 https://twitter.com/dog_rates/status/822244816520155136/photo/1 https://twitter.com/dog_rates/status/786233965241827333/photo/1 https://twitter.com/dog_rates/status/821886076407029760/photo/1 https://twitter.com/dog_rates/status/780601303617732608/photo/1,https://twitter.com/dog_rates/status/780601303617732608/photo/1 https://twitter.com/dog_rates/status/821765923262631936/photo/1 https://twitter.com/dog_rates/status/821522889702862852/photo/1 https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 https://twitter.com/dog_rates/status/821407182352777218/video/1 NaN https://twitter.com/dog_rates/status/821149554670182400/video/1 https://twitter.com/dog_rates/status/821107785811234820/photo/1 https://twitter.com/dog_rates/status/821044531881721856/photo/1 https://twitter.com/dog_rates/status/819227688460238848/photo/1 https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1 https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1 https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 https://twitter.com/dog_rates/status/819924195358416896/video/1 https://twitter.com/dog_rates/status/819711362133872643/photo/1,https://twitter.com/dog_rates/status/819711362133872643/photo/1 https://twitter.com/dog_rates/status/819588359383371776/photo/1 https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1 http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_ https://twitter.com/dog_rates/status/819227688460238848/photo/1 https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 https://vine.co/v/5QWd3LZqXxd,https://vine.co/v/5QWd3LZqXxd https://twitter.com/dog_rates/status/818627210458333184/photo/1 https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1 https://twitter.com/dog_rates/status/773547596996571136/photo/1,https://twitter.com/dog_rates/status/773547596996571136/photo/1 https://twitter.com/dog_rates/status/818536468981415936/photo/1 https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 https://twitter.com/dog_rates/status/818259473185828864/photo/1 https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1 https://twitter.com/micahgrimes/status/817902080979599361 https://twitter.com/dog_rates/status/817827839487737858/video/1 https://twitter.com/dog_rates/status/817777686764523521/video/1 https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1 https://twitter.com/dog_rates/status/692417313023332352/photo/1 https://twitter.com/dog_rates/status/817423860136083457/video/1 https://www.gofundme.com/help-strudel-walk-again?rcid=ec2be8b6f825461f8ee0fd5dcdf43fea,https://twitter.com/dog_rates/status/817415592588222464/photo/1 https://twitter.com/dog_rates/status/815966073409433600/video/1,https://twitter.com/dog_rates/status/815966073409433600/video/1 https://twitter.com/dog_rates/status/817171292965273600/photo/1 https://twitter.com/dog_rates/status/817120970343411712/photo/1 https://twitter.com/dog_rates/status/817056546584727552/photo/1 https://twitter.com/dog_rates/status/790946055508652032/photo/1,https://twitter.com/dog_rates/status/790946055508652032/photo/1 https://twitter.com/dog_rates/status/816816676327063552/photo/1 https://twitter.com/dog_rates/status/816697700272001025/photo/1,https://twitter.com/dog_rates/status/816697700272001025/photo/1 https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 https://twitter.com/dog_rates/status/816336735214911488/photo/1 https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1 https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 https://twitter.com/dog_rates/status/815966073409433600/video/1 https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1 https://twitter.com/dog_rates/status/815639385530101762/photo/1 https://twitter.com/dog_rates/status/815390420867969024/photo/1 https://twitter.com/dog_rates/status/814986499976527872/photo/1 https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1 https://twitter.com/dog_rates/status/698195409219559425/photo/1 https://twitter.com/dog_rates/status/814530161257443328/photo/1 https://twitter.com/dog_rates/status/814153002265309185/photo/1 https://twitter.com/dog_rates/status/790277117346975746/photo/1,https://twitter.com/dog_rates/status/790277117346975746/photo/1 https://twitter.com/dog_rates/status/813910438903693312/photo/1 https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1 https://twitter.com/dog_rates/status/813800681631023104/photo/1 https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1 https://twitter.com/dog_rates/status/813202720496779264/photo/1 https://twitter.com/dog_rates/status/813187593374461952/photo/1 https://twitter.com/dog_rates/status/813172488309972993/photo/1 https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1 https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1 NaN https://twitter.com/dog_rates/status/813127251579564032/photo/1,https://twitter.com/dog_rates/status/813127251579564032/photo/1 https://twitter.com/dog_rates/status/813112105746448384/photo/1 https://twitter.com/dog_rates/status/813096984823349248/photo/1 https://twitter.com/dog_rates/status/813081950185472002/photo/1,https://twitter.com/dog_rates/status/813081950185472002/photo/1 https://twitter.com/dog_rates/status/813066809284972545/photo/1 https://twitter.com/dog_rates/status/813051746834595840/photo/1 https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1 https://twitter.com/dog_rates/status/680055455951884288/photo/1 https://twitter.com/dog_rates/status/812709060537683968/photo/1 https://m.facebook.com/story.php?story_fbid=1888712391349242&id=1506300642923754&refsrc=http%3A%2F%2Ft.co%2FURVffYPPjY&_rdr,https://twitter.com/dog_rates/status/812503143955202048/photo/1,https://twitter.com/dog_rates/status/812503143955202048/photo/1 https://twitter.com/dog_rates/status/812466873996607488/photo/1 https://twitter.com/dog_rates/status/812372279581671427/photo/1,https://twitter.com/dog_rates/status/812372279581671427/photo/1 https://twitter.com/dog_rates/status/811985624773361665/photo/1 https://twitter.com/dog_rates/status/811744202451197953/photo/1 NaN https://twitter.com/dog_rates/status/811627233043480576/photo/1 https://twitter.com/dog_rates/status/811386762094317568/photo/1 https://www.gofundme.com/sams-smile,https://twitter.com/dog_rates/status/810984652412424192/photo/1 https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1 https://twitter.com/dog_rates/status/810657578271330305/photo/1 https://twitter.com/dog_rates/status/810284430598270976/photo/1,https://twitter.com/dog_rates/status/810284430598270976/photo/1 https://twitter.com/dog_rates/status/810254108431155201/photo/1 https://twitter.com/dog_rates/status/809920764300447744/photo/1 https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 https://twitter.com/dog_rates/status/809448704142938112/photo/1 https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 https://twitter.com/dog_rates/status/809084759137812480/photo/1 https://twitter.com/dog_rates/status/808838249661788160/photo/1 https://twitter.com/dog_rates/status/808733504066486276/photo/1 https://twitter.com/dog_rates/status/808501579447930884/photo/1,https://twitter.com/dog_rates/status/808501579447930884/photo/1 https://vine.co/v/5QWd3LZqXxd https://twitter.com/dog_rates/status/801167903437357056/photo/1,https://twitter.com/dog_rates/status/801167903437357056/photo/1 https://twitter.com/dog_rates/status/808106460588765185/photo/1 https://twitter.com/dog_rates/status/808001312164028416/photo/1,https://twitter.com/dog_rates/status/808001312164028416/photo/1 https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1 https://twitter.com/dog_rates/status/807106840509214720/video/1 https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 https://twitter.com/dog_rates/status/807010152071229440/photo/1 https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 https://twitter.com/dog_rates/status/781524693396357120/photo/1 https://twitter.com/deadspin/status/806570933175652352 https://twitter.com/dog_rates/status/806542213899489280/photo/1 https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 https://twitter.com/dog_rates/status/806219024703037440/photo/1 https://twitter.com/dog_rates/status/782722598790725632/photo/1,https://twitter.com/dog_rates/status/782722598790725632/photo/1 https://twitter.com/dog_rates/status/805932879469572096/photo/1 https://twitter.com/dog_rates/status/805826884734976000/video/1 https://vine.co/v/5ghHLBMMdlV,https://vine.co/v/5ghHLBMMdlV https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1 https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1 https://twitter.com/dog_rates/status/805207613751304193/photo/1 https://twitter.com/dog_rates/status/804738756058218496/photo/1 https://twitter.com/bvuepd/status/804417859124273152 https://twitter.com/dog_rates/status/784826020293709826/photo/1,https://twitter.com/dog_rates/status/784826020293709826/photo/1 https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1 https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1 https://twitter.com/dog_rates/status/691416866452082688/photo/1,https://twitter.com/dog_rates/status/691416866452082688/photo/1 https://twitter.com/dog_rates/status/803638050916102144/video/1 https://twitter.com/dog_rates/status/803380650405482500/photo/1 https://twitter.com/dog_rates/status/767754930266464257/photo/1 https://twitter.com/dog_rates/status/803276597545603072/photo/1 https://twitter.com/dog_rates/status/802952499103731712/photo/1 https://twitter.com/dog_rates/status/777684233540206592/photo/1,https://twitter.com/dog_rates/status/777684233540206592/photo/1 https://vine.co/v/5FwUWjYaW0Y https://twitter.com/dog_rates/status/802572683846291456/photo/1 https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1 https://twitter.com/dog_rates/status/802265048156610565/photo/1 https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 https://twitter.com/dog_rates/status/802239329049477120/photo/1,https://twitter.com/dog_rates/status/802239329049477120/photo/1 https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1 https://twitter.com/dog_rates/status/801958328846974976/photo/1 NaN https://twitter.com/dog_rates/status/801538201127157760/photo/1 https://twitter.com/dog_rates/status/801285448605831168/photo/1 https://twitter.com/dog_rates/status/801167903437357056/photo/1 https://twitter.com/dog_rates/status/775733305207554048/photo/1 https://twitter.com/dog_rates/status/801115127852503040/photo/1,https://twitter.com/dog_rates/status/801115127852503040/photo/1 NaN https://twitter.com/littlewiewel/status/800852955880628224,https://twitter.com/littlewiewel/status/800852955880628224 https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1 https://twitter.com/dog_rates/status/800513324630806528/photo/1 https://twitter.com/dog_rates/status/800459316964663297/photo/1 https://twitter.com/dog_rates/status/776113305656188928/photo/1,https://twitter.com/dog_rates/status/776113305656188928/photo/1 https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1 https://twitter.com/dog_rates/status/681694085539872773/photo/1 https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 https://twitter.com/dog_rates/status/800018252395122689/video/1 https://twitter.com/dog_rates/status/775085132600442880/photo/1,https://twitter.com/dog_rates/status/775085132600442880/photo/1 https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1 https://twitter.com/dog_rates/status/799422933579902976/photo/1 https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 https://twitter.com/dog_rates/status/799297110730567681/photo/1,https://twitter.com/dog_rates/status/799297110730567681/photo/1 https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1 https://twitter.com/dog_rates/status/798933969379225600/photo/1,https://twitter.com/dog_rates/status/798933969379225600/photo/1 https://twitter.com/dog_rates/status/798925684722855936/photo/1 https://twitter.com/dog_rates/status/740676976021798912/photo/1 https://twitter.com/dog_rates/status/718631497683582976/photo/1 https://twitter.com/dog_rates/status/712809025985978368/photo/1,https://twitter.com/dog_rates/status/712809025985978368/photo/1 https://twitter.com/dog_rates/status/701214700881756160/photo/1,https://twitter.com/dog_rates/status/701214700881756160/photo/1 https://twitter.com/dog_rates/status/683391852557561860/photo/1 https://twitter.com/dog_rates/status/676936541936185344/photo/1 https://twitter.com/dog_rates/status/675501075957489664/photo/1,https://twitter.com/dog_rates/status/675501075957489664/photo/1 https://twitter.com/dog_rates/status/671896809300709376/photo/1,https://twitter.com/dog_rates/status/671896809300709376/photo/1 https://twitter.com/dog_rates/status/670444955656130560/photo/1,https://twitter.com/dog_rates/status/670444955656130560/photo/1 https://twitter.com/dog_rates/status/667509364010450944/photo/1,https://twitter.com/dog_rates/status/667509364010450944/photo/1 https://twitter.com/dog_rates/status/667182792070062081/photo/1 https://twitter.com/dog_rates/status/666104133288665088/photo/1 https://twitter.com/dog_rates/status/771770456517009408/photo/1,https://twitter.com/dog_rates/status/771770456517009408/photo/1 https://twitter.com/dog_rates/status/798209839306514432/photo/1 https://twitter.com/dog_rates/status/797971864723324932/photo/1,https://twitter.com/dog_rates/status/797971864723324932/photo/1 https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1 https://twitter.com/dog_rates/status/797236660651966464/photo/1,https://twitter.com/dog_rates/status/797236660651966464/photo/1 NaN https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 https://twitter.com/dog_rates/status/796865951799083009/photo/1 https://twitter.com/dog_rates/status/796759840936919040/photo/1,https://twitter.com/dog_rates/status/796759840936919040/photo/1 https://twitter.com/dog_rates/status/780931614150983680/photo/1 https://twitter.com/dog_rates/status/796484825502875648/photo/1 https://twitter.com/dog_rates/status/796387464403357696/photo/1,https://twitter.com/dog_rates/status/796387464403357696/photo/1 https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 https://twitter.com/king5seattle/status/796123679771897856 https://twitter.com/dog_rates/status/796116448414461957/photo/1 https://twitter.com/dog_rates/status/796080075804475393/photo/1 https://twitter.com/dog_rates/status/796031486298386433/photo/1 https://twitter.com/dog_rates/status/795464331001561088/video/1 https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1 https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 https://twitter.com/dog_rates/status/794926597468000259/photo/1 https://twitter.com/dog_rates/status/788765914992902144/photo/1,https://twitter.com/dog_rates/status/788765914992902144/photo/1 https://twitter.com/dog_rates/status/794332329137291264/photo/1 https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1 https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 https://twitter.com/dog_rates/status/793845145112371200/photo/1 https://twitter.com/dog_rates/status/791672322847637504/photo/1,https://twitter.com/dog_rates/status/791672322847637504/photo/1 https://twitter.com/dog_rates/status/793601777308463104/photo/1 https://twitter.com/dog_rates/status/793500921481273345/photo/1,https://twitter.com/dog_rates/status/793500921481273345/photo/1 https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 https://twitter.com/dog_rates/status/793271401113350145/photo/1 https://twitter.com/dog_rates/status/793256262322548741/photo/1 https://twitter.com/dog_rates/status/793241302385262592/photo/1 https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1 https://twitter.com/dog_rates/status/793210959003287553/photo/1 https://twitter.com/dog_rates/status/793195938047070209/photo/1,https://twitter.com/dog_rates/status/793195938047070209/photo/1 https://twitter.com/dog_rates/status/793180763617361921/photo/1 https://twitter.com/dog_rates/status/793165685325201412/photo/1 https://twitter.com/dog_rates/status/793150605191548928/photo/1 https://twitter.com/dog_rates/status/793135492858580992/photo/1,https://twitter.com/dog_rates/status/793135492858580992/photo/1 https://twitter.com/dog_rates/status/793120401413079041/photo/1 https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1 https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1 https://twitter.com/dog_rates/status/792773781206999040/photo/1 https://twitter.com/dog_rates/status/792394556390137856/photo/1,https://twitter.com/dog_rates/status/792394556390137856/photo/1 https://twitter.com/dog_rates/status/792050063153438720/photo/1,https://twitter.com/dog_rates/status/792050063153438720/photo/1 https://vine.co/v/eEZXZI1rqxX,https://vine.co/v/eEZXZI1rqxX https://vine.co/v/iqMjlxULzbn,https://vine.co/v/iqMjlxULzbn https://vine.co/v/5BYq6hmrEI3,https://vine.co/v/5BYq6hmrEI3 https://vine.co/v/ea0OwvPTx9l https://twitter.com/dog_rates/status/791672322847637504/photo/1 https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1 https://twitter.com/dog_rates/status/763837565564780549/photo/1,https://twitter.com/dog_rates/status/763837565564780549/photo/1 https://twitter.com/dog_rates/status/790987426131050500/photo/1 https://twitter.com/dog_rates/status/790946055508652032/photo/1 https://twitter.com/dog_rates/status/789986466051088384/photo/1,https://twitter.com/dog_rates/status/789986466051088384/photo/1 https://twitter.com/dog_rates/status/790698755171364864/photo/1 https://twitter.com/dog_rates/status/790581949425475584/photo/1,https://twitter.com/dog_rates/status/790581949425475584/photo/1 https://twitter.com/dog_rates/status/790337589677002753/photo/1 https://twitter.com/dog_rates/status/790277117346975746/photo/1 https://twitter.com/dog_rates/status/762699858130116608/photo/1 https://twitter.com/dog_rates/status/789986466051088384/photo/1 https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 https://vine.co/v/5wPT1aBxPQZ https://twitter.com/dog_rates/status/789628658055020548/photo/1 https://twitter.com/dog_rates/status/789599242079838210/photo/1,https://twitter.com/dog_rates/status/789599242079838210/photo/1 https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 https://twitter.com/sebscat/status/788818328538099712 https://twitter.com/dog_rates/status/750719632563142656/photo/1 https://twitter.com/dog_rates/status/789268448748703744/photo/1 https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1 https://twitter.com/dog_rates/status/788908386943430656/photo/1 https://twitter.com/dog_rates/status/788765914992902144/photo/1 https://vine.co/v/iEggaEOiLO3,https://vine.co/v/iEggaEOiLO3 https://twitter.com/dog_rates/status/788412144018661376/photo/1,https://twitter.com/dog_rates/status/788412144018661376/photo/1 https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1 https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1 https://twitter.com/dog_rates/status/761004547850530816/photo/1,https://twitter.com/dog_rates/status/761004547850530816/photo/1 https://twitter.com/dog_rates/status/788039637453406209/photo/1,https://twitter.com/dog_rates/status/788039637453406209/photo/1 https://twitter.com/dog_rates/status/787810552592695296/photo/1,https://twitter.com/dog_rates/status/787810552592695296/photo/1 https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1 https://twitter.com/dog_rates/status/787397959788929025/photo/1 https://twitter.com/dog_rates/status/787322443945877504/photo/1 https://vine.co/v/OEppMFbejFz,https://vine.co/v/OEppMFbejFz https://twitter.com/dog_rates/status/786963064373534720/photo/1 https://twitter.com/dog_rates/status/759447681597108224/photo/1 https://twitter.com/dog_rates/status/786709082849828864/photo/1 https://twitter.com/dog_rates/status/786664955043049472/photo/1 https://twitter.com/dog_rates/status/786595970293370880/photo/1 https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1 https://vine.co/v/5XH0WqHwiFp https://twitter.com/dog_rates/status/786233965241827333/photo/1 NaN https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 https://twitter.com/dog_rates/status/785927819176054784/photo/1 https://twitter.com/dog_rates/status/785872687017132033/video/1 https://twitter.com/dog_rates/status/785639753186217984/photo/1,https://twitter.com/dog_rates/status/785639753186217984/photo/1 https://twitter.com/dog_rates/status/785533386513321988/photo/1,https://twitter.com/dog_rates/status/785533386513321988/photo/1 NaN https://twitter.com/dog_rates/status/785264754247995392/photo/1 https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1 https://twitter.com/dog_rates/status/784826020293709826/photo/1 https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1 https://twitter.com/dog_rates/status/784431430411685888/photo/1 https://vine.co/v/5ghHLBMMdlV https://vine.co/v/5gKxeUpuKEr https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 https://twitter.com/dog_rates/status/783821107061198850/photo/1,https://twitter.com/dog_rates/status/783821107061198850/photo/1 https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1 https://twitter.com/dog_rates/status/783466772167098368/photo/1,https://twitter.com/dog_rates/status/783466772167098368/photo/1 https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1 https://twitter.com/dog_rates/status/674291837063053312/photo/1,https://twitter.com/dog_rates/status/674291837063053312/photo/1 https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 https://twitter.com/dog_rates/status/783085703974514689/photo/1,https://twitter.com/dog_rates/status/783085703974514689/photo/1 https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 https://twitter.com/dog_rates/status/782747134529531904/photo/1 https://twitter.com/dog_rates/status/782722598790725632/photo/1 https://twitter.com/dog_rates/status/782598640137187329/photo/1 https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 https://twitter.com/dog_rates/status/707610948723478529/photo/1,https://twitter.com/dog_rates/status/707610948723478529/photo/1 https://twitter.com/dog_rates/status/781955203444699136/photo/1 https://twitter.com/dog_rates/status/781661882474196992/photo/1 https://vine.co/v/5rt6T3qm7hL https://twitter.com/dog_rates/status/781524693396357120/photo/1 https://vine.co/v/5rgu2Law2ut https://twitter.com/dog_rates/status/781251288990355457/photo/1,https://twitter.com/dog_rates/status/781251288990355457/photo/1 https://twitter.com/dog_rates/status/781163403222056960/photo/1 https://twitter.com/dog_rates/status/780931614150983680/photo/1 https://twitter.com/dog_rates/status/780858289093574656/photo/1 https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1 https://twitter.com/dog_rates/status/780601303617732608/photo/1 https://twitter.com/dog_rates/status/780543529827336192/photo/1 https://twitter.com/dog_rates/status/742423170473463808/photo/1,https://twitter.com/dog_rates/status/742423170473463808/photo/1 https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1,https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1 https://twitter.com/dog_rates/status/780459368902959104/photo/1 https://twitter.com/dog_rates/status/780192070812196864/photo/1 https://twitter.com/dog_rates/status/753375668877008896/photo/1 https://vine.co/v/5nzYBpl0TY2 https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 https://twitter.com/dog_rates/status/779377524342161408/video/1 https://twitter.com/dog_rates/status/679462823135686656/photo/1 https://twitter.com/dog_rates/status/779123168116150273/photo/1 https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 https://twitter.com/dog_rates/status/778990705243029504/photo/1,https://twitter.com/dog_rates/status/778990705243029504/photo/1 https://vine.co/v/hQJbaj1VpIz,https://vine.co/v/hQJbaj1VpIz https://m.youtube.com/watch?v=idKxCMsS3FQ&feature=youtu.be https://twitter.com/dog_rates/status/778748913645780993/photo/1 https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1 https://twitter.com/dog_rates/status/778624900596654080/photo/1,https://twitter.com/dog_rates/status/778624900596654080/photo/1 https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1 https://twitter.com/dog_rates/status/703041949650034688/photo/1,https://twitter.com/dog_rates/status/703041949650034688/photo/1 https://twitter.com/dog_rates/status/778383385161035776/photo/1 https://twitter.com/dog_rates/status/778286810187399168/photo/1,https://twitter.com/dog_rates/status/778286810187399168/photo/1 https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1 https://twitter.com/dog_rates/status/778027034220126208/photo/1 https://twitter.com/dog_rates/status/768193404517830656/photo/1 https://twitter.com/dog_rates/status/777885040357281792/photo/1,https://twitter.com/dog_rates/status/777885040357281792/photo/1 https://twitter.com/dog_rates/status/777684233540206592/photo/1 https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 https://twitter.com/dog_rates/status/777621514455814149/photo/1 https://twitter.com/dog_rates/status/777189768882946048/photo/1,https://twitter.com/dog_rates/status/777189768882946048/photo/1 https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 https://twitter.com/dog_rates/status/776813020089548800/photo/1,https://twitter.com/dog_rates/status/776813020089548800/photo/1 https://twitter.com/dog_rates/status/776477788987613185/photo/1,https://twitter.com/dog_rates/status/776477788987613185/photo/1 https://twitter.com/dog_rates/status/700747788515020802/photo/1 https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1 https://twitter.com/dog_rates/status/776201521193218049/photo/1 https://twitter.com/dog_rates/status/776113305656188928/photo/1 https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1 https://twitter.com/dog_rates/status/733109485275860992/photo/1,https://twitter.com/dog_rates/status/733109485275860992/photo/1 https://twitter.com/dog_rates/status/775842724423557120/photo/1,https://twitter.com/dog_rates/status/775842724423557120/photo/1 https://twitter.com/dog_rates/status/775733305207554048/photo/1 https://twitter.com/dog_rates/status/775729183532220416/photo/1 https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1 https://vine.co/v/ijmv0PD0XXD https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 https://twitter.com/dog_rates/status/775085132600442880/photo/1 https://twitter.com/dog_rates/status/774757898236878852/photo/1 https://twitter.com/dog_rates/status/774639387460112384/photo/1,https://twitter.com/dog_rates/status/774639387460112384/photo/1 https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1 https://twitter.com/dog_rates/status/773922284943896577/photo/1 https://twitter.com/dog_rates/status/773704687002451968/photo/1,https://twitter.com/dog_rates/status/773704687002451968/photo/1 https://twitter.com/dog_rates/status/773670353721753600/photo/1 https://twitter.com/dog_rates/status/773547596996571136/photo/1 https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 https://twitter.com/dog_rates/status/773308824254029826/photo/1 https://twitter.com/dog_rates/status/773247561583001600/photo/1 https://twitter.com/dog_rates/status/773191612633579521/photo/1,https://twitter.com/dog_rates/status/773191612633579521/photo/1 https://twitter.com/dog_rates/status/772877495989305348/video/1 https://twitter.com/dog_rates/status/772826264096874500/photo/1 https://twitter.com/dog_rates/status/765222098633691136/photo/1,https://twitter.com/dog_rates/status/765222098633691136/photo/1 https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1 https://twitter.com/dog_rates/status/772193107915964416/photo/1 https://twitter.com/dog_rates/status/772152991789019136/photo/1,https://twitter.com/dog_rates/status/772152991789019136/photo/1 https://twitter.com/dog_rates/status/772117678702071809/photo/1 https://twitter.com/dog_rates/status/772114945936949249/photo/1 https://twitter.com/dog_rates/status/772102971039580160/photo/1 https://twitter.com/yahoonews/status/771905568600719360 https://twitter.com/dog_rates/status/771770456517009408/photo/1 https://twitter.com/dog_rates/status/771500966810099713/photo/1 https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 https://twitter.com/dog_rates/status/771136648247640064/photo/1 https://twitter.com/dog_rates/status/771102124360998913/photo/1 https://twitter.com/dog_rates/status/771014301343748096/photo/1 https://twitter.com/katieornah/status/771002130450743296/photo/1,https://twitter.com/katieornah/status/771002130450743296/photo/1 https://twitter.com/dog_rates/status/770787852854652928/photo/1 https://twitter.com/dog_rates/status/770772759874076672/photo/1 https://twitter.com/dog_rates/status/739238157791694849/video/1 https://twitter.com/dog_rates/status/770655142660169732/photo/1 https://twitter.com/dog_rates/status/770414278348247044/photo/1 https://twitter.com/dog_rates/status/770293558247038976/photo/1 https://twitter.com/dog_rates/status/741067306818797568/photo/1,https://twitter.com/dog_rates/status/741067306818797568/photo/1 https://twitter.com/dog_rates/status/770069151037685760/photo/1 https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 https://twitter.com/dog_rates/status/769695466921623552/photo/1 https://vine.co/v/iXQAm5Lrgrh,https://vine.co/v/iXQAm5Lrgrh https://twitter.com/dog_rates/status/769212283578875904/photo/1 https://twitter.com/dog_rates/status/768970937022709760/video/1 https://twitter.com/dog_rates/status/700143752053182464/photo/1 https://twitter.com/dog_rates/status/768855141948723200/photo/1 https://twitter.com/dog_rates/status/768609597686943744/photo/1 https://twitter.com/dog_rates/status/768596291618299904/photo/1 https://twitter.com/dog_rates/status/739979191639244800/photo/1 https://twitter.com/dog_rates/status/768473857036525572/photo/1 https://twitter.com/dog_rates/status/768193404517830656/photo/1 https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1 https://twitter.com/dog_rates/status/767754930266464257/photo/1 https://twitter.com/dog_rates/status/767500508068192258/photo/1 https://twitter.com/dog_rates/status/767191397493538821/photo/1 https://twitter.com/dog_rates/status/767122157629476866/photo/1,https://twitter.com/dog_rates/status/767122157629476866/photo/1 https://twitter.com/dog_rates/status/759923798737051648/photo/1 https://twitter.com/dog_rates/status/766793450729734144/photo/1 NaN https://twitter.com/dog_rates/status/766693177336135680/photo/1 https://twitter.com/dog_rates/status/766423258543644672/photo/1,https://twitter.com/dog_rates/status/766423258543644672/photo/1 https://twitter.com/dog_rates/status/766313316352462849/photo/1 https://twitter.com/dog_rates/status/725842289046749185/photo/1,https://twitter.com/dog_rates/status/725842289046749185/photo/1 https://twitter.com/dog_rates/status/766069199026450432/photo/1 https://twitter.com/dog_rates/status/766008592277377025/photo/1 https://twitter.com/dog_rates/status/765719909049503744/photo/1 https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1 https://twitter.com/dog_rates/status/765395769549590528/photo/1 https://twitter.com/dog_rates/status/765371061932261376/photo/1,https://twitter.com/dog_rates/status/765371061932261376/photo/1 https://twitter.com/dog_rates/status/765222098633691136/photo/1 https://twitter.com/dog_rates/status/764857477905154048/photo/1 https://twitter.com/dog_rates/status/764259802650378240/photo/1,https://twitter.com/dog_rates/status/764259802650378240/photo/1 NaN https://twitter.com/dog_rates/status/763837565564780549/photo/1 https://twitter.com/dog_rates/status/763183847194451968/photo/1 https://twitter.com/dog_rates/status/673295268553605120/photo/1 https://twitter.com/dog_rates/status/763103485927849985/photo/1,https://twitter.com/dog_rates/status/763103485927849985/photo/1 https://twitter.com/dog_rates/status/762699858130116608/photo/1 https://twitter.com/dog_rates/status/762471784394268675/video/1 https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 https://twitter.com/dog_rates/status/762316489655476224/photo/1 https://twitter.com/dog_rates/status/762035686371364864/video/1 https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1 https://twitter.com/dog_rates/status/685325112850124800/photo/1,https://twitter.com/dog_rates/status/685325112850124800/photo/1 https://twitter.com/dog_rates/status/761745352076779520/photo/1 https://twitter.com/dog_rates/status/761672994376806400/video/1 https://twitter.com/dog_rates/status/761599872357261312/photo/1 https://twitter.com/dog_rates/status/711694788429553666/photo/1,https://twitter.com/dog_rates/status/711694788429553666/photo/1 https://twitter.com/dog_rates/status/761334018830917632/photo/1 https://twitter.com/dog_rates/status/761292947749015552/photo/1 https://twitter.com/dog_rates/status/761227390836215808/photo/1 https://twitter.com/dog_rates/status/761004547850530816/photo/1 https://twitter.com/dog_rates/status/760893934457552897/photo/1 https://twitter.com/dog_rates/status/760656994973933572/photo/1,https://twitter.com/dog_rates/status/760656994973933572/photo/1 https://twitter.com/dog_rates/status/760641137271070720/photo/1 https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1 https://vine.co/v/5ApKetxzmTB https://twitter.com/dog_rates/status/760290219849637889/video/1 https://twitter.com/dog_rates/status/760252756032651264/photo/1 https://twitter.com/dog_rates/status/760190180481531904/photo/1 https://weratedogs.com/pages/about-us,https://weratedogs.com/pages/about-us https://vine.co/v/5AJm5pq7Kav https://twitter.com/dog_rates/status/759923798737051648/photo/1 https://twitter.com/dog_rates/status/759846353224826880/photo/1 https://twitter.com/dog_rates/status/759793422261743616/photo/1,https://twitter.com/dog_rates/status/759793422261743616/photo/1 https://twitter.com/dog_rates/status/739544079319588864/photo/1,https://twitter.com/dog_rates/status/739544079319588864/photo/1 https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1 https://twitter.com/dog_rates/status/759447681597108224/photo/1 https://twitter.com/wsaznews/status/759167558763196416 https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1 https://twitter.com/dog_rates/status/670319130621435904/photo/1,https://twitter.com/dog_rates/status/670319130621435904/photo/1 https://twitter.com/dog_rates/status/759099523532779520/photo/1 https://twitter.com/dog_rates/status/759047813560868866/photo/1,https://twitter.com/dog_rates/status/759047813560868866/photo/1 https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1 https://twitter.com/dog_rates/status/758828659922702336/photo/1 https://twitter.com/dog_rates/status/758740312047005698/photo/1 https://twitter.com/dog_rates/status/758474966123810816/photo/1 https://twitter.com/dog_rates/status/758467244762497024/video/1 https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1 https://twitter.com/dog_rates/status/758355060040593408/photo/1 https://vine.co/v/hQJbaj1VpIz https://twitter.com/dog_rates/status/758041019896193024/photo/1 https://twitter.com/dog_rates/status/757741869644341248/photo/1,https://twitter.com/dog_rates/status/757741869644341248/photo/1 https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 https://twitter.com/dog_rates/status/757725642876129280/photo/1,https://twitter.com/dog_rates/status/757725642876129280/photo/1 https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1 https://twitter.com/jon_hill987/status/757597141099548672/photo/1,https://twitter.com/jon_hill987/status/757597141099548672/photo/1 https://twitter.com/dog_rates/status/757596066325864448/photo/1 https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1 https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1 https://twitter.com/dog_rates/status/757354760399941633/photo/1,https://twitter.com/dog_rates/status/757354760399941633/photo/1 https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1 https://twitter.com/dog_rates/status/756939218950160384/photo/1 https://twitter.com/dog_rates/status/756651752796094464/photo/1 https://twitter.com/dog_rates/status/756526248105566208/photo/1 https://twitter.com/dog_rates/status/756303284449767430/photo/1 https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 https://twitter.com/dog_rates/status/756275833623502848/photo/1,https://twitter.com/dog_rates/status/756275833623502848/photo/1 https://twitter.com/dog_rates/status/755955933503782912/video/1 https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1 https://twitter.com/dog_rates/status/755110668769038337/video/1 https://twitter.com/dog_rates/status/679158373988876288/photo/1,https://twitter.com/dog_rates/status/679158373988876288/photo/1 https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1 https://twitter.com/dog_rates/status/754747087846248448/photo/1 https://twitter.com/dog_rates/status/754482103782404096/video/1 https://twitter.com/dog_rates/status/754449512966619136/photo/1 https://twitter.com/dog_rates/status/754120377874386944/photo/1 https://twitter.com/dog_rates/status/754011816964026368/photo/1,https://twitter.com/dog_rates/status/754011816964026368/photo/1 https://twitter.com/dog_rates/status/753655901052166144/photo/1 https://twitter.com/dog_rates/status/753420520834629632/video/1 https://twitter.com/dog_rates/status/753398408988139520/video/1 https://twitter.com/dog_rates/status/753375668877008896/photo/1 https://twitter.com/dog_rates/status/681523177663676416/photo/1 https://twitter.com/dog_rates/status/753294487569522689/photo/1 https://vine.co/v/5W2Dg3XPX7a https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1 https://vine.co/v/OEppMFbejFz https://twitter.com/dog_rates/status/752917284578922496/photo/1 https://vine.co/v/ibvnzrauFuV,https://vine.co/v/ibvnzrauFuV https://twitter.com/dog_rates/status/752682090207055872/photo/1,https://twitter.com/dog_rates/status/752682090207055872/photo/1 https://twitter.com/dog_rates/status/752660715232722944/photo/1,https://twitter.com/dog_rates/status/752660715232722944/photo/1 https://vine.co/v/5W0bdhEUUVT https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1 https://twitter.com/dog_rates/status/752334515931054080/video/1 https://twitter.com/dog_rates/status/675354435921575936/video/1,https://twitter.com/dog_rates/status/675354435921575936/video/1 https://twitter.com/dog_rates/status/752173152931807232/photo/1,https://twitter.com/dog_rates/status/752173152931807232/photo/1 https://vine.co/v/5WrjaYAMvMO https://twitter.com/dog_rates/status/751937170840121344/photo/1 https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1 https://vine.co/v/5W5YHdTJvaV https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1 https://twitter.com/dog_rates/status/751583847268179968/photo/1 https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1 https://twitter.com/dog_rates/status/751456908746354688/video/1 https://twitter.com/dog_rates/status/751251247299190784/video/1 https://twitter.com/dog_rates/status/751205363882532864/photo/1,https://twitter.com/dog_rates/status/751205363882532864/photo/1 https://twitter.com/dog_rates/status/751132876104687617/photo/1,https://twitter.com/dog_rates/status/751132876104687617/photo/1 https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1 https://twitter.com/dog_rates/status/750719632563142656/photo/1 https://twitter.com/dog_rates/status/750506206503038976/photo/1 https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 https://twitter.com/dog_rates/status/750383411068534784/photo/1 NaN https://twitter.com/dog_rates/status/750147208377409536/photo/1 https://twitter.com/dog_rates/status/750132105863102464/photo/1 https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1 https://twitter.com/dog_rates/status/750101899009982464/photo/1,https://twitter.com/dog_rates/status/750101899009982464/photo/1 https://twitter.com/dog_rates/status/750086836815486976/photo/1 https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1 https://twitter.com/dog_rates/status/750056684286914561/photo/1 https://twitter.com/dog_rates/status/750041628174217216/photo/1 https://twitter.com/dog_rates/status/750026558547456000/photo/1 https://twitter.com/dog_rates/status/750011400160841729/photo/1 https://twitter.com/dog_rates/status/749996283729883136/photo/1 https://twitter.com/dog_rates/status/749981277374128128/photo/1 https://twitter.com/dog_rates/status/749774190421639168/photo/1 https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1 https://twitter.com/dog_rates/status/749403093750648834/photo/1 https://twitter.com/dog_rates/status/749395845976588288/photo/1,https://twitter.com/dog_rates/status/749395845976588288/photo/1 https://twitter.com/dog_rates/status/749317047558017024/video/1 https://vine.co/v/5ztZvHgI17r https://twitter.com/dog_rates/status/749064354620928000/photo/1,https://twitter.com/dog_rates/status/749064354620928000/photo/1 https://twitter.com/dog_rates/status/749036806121881602/photo/1 https://twitter.com/dog_rates/status/748977405889503236/photo/1 https://twitter.com/dog_rates/status/748932637671223296/photo/1 https://twitter.com/dog_rates/status/748705597323898880/video/1 https://twitter.com/dog_rates/status/748699167502000129/photo/1,https://twitter.com/dog_rates/status/748699167502000129/photo/1 https://twitter.com/dog_rates/status/748692773788876800/photo/1 https://twitter.com/dog_rates/status/748575535303884801/photo/1 https://twitter.com/dog_rates/status/748568946752774144/video/1 https://twitter.com/dog_rates/status/748346686624440324/photo/1 https://vine.co/v/h5aDaFthX6O https://twitter.com/dog_rates/status/748324050481647620/photo/1,https://twitter.com/dog_rates/status/748324050481647620/photo/1 https://twitter.com/dog_rates/status/748307329658011649/photo/1,https://twitter.com/dog_rates/status/748307329658011649/photo/1 https://vine.co/v/iiLjKuYJpr6 https://twitter.com/dog_rates/status/747963614829678593/photo/1 https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1 https://twitter.com/dog_rates/status/747885874273214464/photo/1,https://twitter.com/dog_rates/status/747885874273214464/photo/1 https://twitter.com/dog_rates/status/747844099428986880/photo/1 https://twitter.com/dog_rates/status/747816857231626240/photo/1 NaN https://vine.co/v/iqIZFtOxEMB https://twitter.com/dog_rates/status/747600769478692864/photo/1,https://twitter.com/dog_rates/status/747600769478692864/photo/1 https://twitter.com/dog_rates/status/747594051852075008/photo/1 https://twitter.com/dog_rates/status/747512671126323200/photo/1 https://twitter.com/dog_rates/status/747461612269887489/photo/1 https://vine.co/v/5uTVXWvn3Ip https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 https://twitter.com/dog_rates/status/747219827526344708/photo/1,https://twitter.com/dog_rates/status/747219827526344708/photo/1 https://twitter.com/dog_rates/status/747204161125646336/photo/1,https://twitter.com/dog_rates/status/747204161125646336/photo/1 https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1 https://twitter.com/dog_rates/status/746906459439529985/photo/1 https://twitter.com/dog_rates/status/746872823977771008/photo/1,https://twitter.com/dog_rates/status/746872823977771008/photo/1 https://twitter.com/dog_rates/status/746818907684614144/photo/1 https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1 https://vine.co/v/5BYq6hmrEI3 https://twitter.com/dog_rates/status/746726898085036033/photo/1 https://vine.co/v/5uZYwqmuDeT https://twitter.com/dog_rates/status/667866724293877760/photo/1 https://twitter.com/dog_rates/status/746507379341139972/photo/1,https://twitter.com/dog_rates/status/746507379341139972/photo/1 https://twitter.com/dog_rates/status/746369468511756288/photo/1 https://twitter.com/dog_rates/status/746131877086527488/photo/1 https://twitter.com/dog_rates/status/746056683365994496/photo/1,https://twitter.com/dog_rates/status/746056683365994496/photo/1 https://twitter.com/dog_rates/status/745789745784041472/photo/1 https://twitter.com/dog_rates/status/745712589599014916/photo/1 https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1 https://twitter.com/dog_rates/status/745422732645535745/photo/1 https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1 https://vine.co/v/iQm3JAXuFmv https://twitter.com/dog_rates/status/745057283344719872/photo/1,https://twitter.com/dog_rates/status/745057283344719872/photo/1 https://twitter.com/dog_rates/status/744995568523612160/photo/1,https://twitter.com/dog_rates/status/744995568523612160/photo/1 https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1 https://twitter.com/dog_rates/status/744709971296780288/photo/1 https://twitter.com/dog_rates/status/744334592493166593/photo/1 https://twitter.com/dog_rates/status/744234799360020481/video/1 https://twitter.com/strange_animals/status/672108316018024452 https://twitter.com/dog_rates/status/743980027717509120/photo/1 https://twitter.com/dog_rates/status/743895849529389061/photo/1 https://twitter.com/dog_rates/status/667138269671505920/photo/1 https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1 https://twitter.com/dog_rates/status/743595368194129920/photo/1 https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1 https://twitter.com/dog_rates/status/743510151680958465/video/1 https://twitter.com/dog_rates/status/743253157753532416/photo/1 https://twitter.com/dog_rates/status/743222593470234624/photo/1 https://twitter.com/dog_rates/status/743210557239623680/photo/1 https://vine.co/v/iLTZmtE1FTB https://twitter.com/dog_rates/status/742528092657332225/photo/1,https://twitter.com/dog_rates/status/742528092657332225/photo/1 https://twitter.com/dog_rates/status/742465774154047488/photo/1,https://twitter.com/dog_rates/status/742465774154047488/photo/1 https://twitter.com/dog_rates/status/742423170473463808/photo/1 https://twitter.com/dog_rates/status/742385895052087300/photo/1 https://twitter.com/dog_rates/status/742161199639494656/photo/1 https://twitter.com/dog_rates/status/742150209887731712/photo/1 https://twitter.com/dog_rates/status/741793263812808706/photo/1,https://twitter.com/dog_rates/status/741793263812808706/photo/1 https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1 https://twitter.com/dog_rates/status/741438259667034112/photo/1 https://twitter.com/dog_rates/status/741303864243200000/photo/1 https://vine.co/v/ixHYvdxUx1L https://twitter.com/dog_rates/status/741067306818797568/photo/1 https://twitter.com/dog_rates/status/740995100998766593/photo/1 https://twitter.com/dog_rates/status/740711788199743490/photo/1 https://twitter.com/dog_rates/status/740699697422163968/photo/1 https://twitter.com/dog_rates/status/740676976021798912/photo/1 https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 https://twitter.com/dog_rates/status/740365076218183684/photo/1 https://twitter.com/dog_rates/status/740359016048689152/photo/1 https://twitter.com/dog_rates/status/740214038584557568/photo/1 https://twitter.com/dog_rates/status/739979191639244800/photo/1 https://twitter.com/dog_rates/status/739932936087216128/photo/1 https://twitter.com/dog_rates/status/739844404073074688/photo/1 https://vine.co/v/iY9Fr1I31U6 https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1 https://twitter.com/dog_rates/status/739544079319588864/photo/1 https://twitter.com/dog_rates/status/739485634323156992/photo/1,https://twitter.com/dog_rates/status/739485634323156992/photo/1 https://twitter.com/dog_rates/status/739238157791694849/video/1 NaN https://twitter.com/dog_rates/status/738885046782832640/photo/1 https://twitter.com/dog_rates/status/738883359779196928/photo/1,https://twitter.com/dog_rates/status/738883359779196928/photo/1 https://twitter.com/dog_rates/status/738537504001953792/photo/1,https://twitter.com/dog_rates/status/738537504001953792/photo/1 https://twitter.com/dog_rates/status/738402415918125056/photo/1 https://twitter.com/dog_rates/status/738184450748633089/photo/1 https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1 https://twitter.com/dog_rates/status/738156290900254721/photo/1 https://twitter.com/dog_rates/status/737826014890496000/photo/1,https://twitter.com/dog_rates/status/737826014890496000/photo/1 https://twitter.com/dog_rates/status/737800304142471168/photo/1 https://twitter.com/dog_rates/status/737678689543020544/photo/1 https://twitter.com/dog_rates/status/737445876994609152/photo/1 https://twitter.com/dog_rates/status/737322739594330112/photo/1 https://twitter.com/dog_rates/status/737310737551491075/video/1 https://twitter.com/dog_rates/status/736736130620620800/photo/1 https://vine.co/v/iEggaEOiLO3 https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1 https://twitter.com/dog_rates/status/736225175608430592/photo/1 https://twitter.com/dog_rates/status/736010884653420544/photo/1,https://twitter.com/dog_rates/status/736010884653420544/photo/1 https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1 https://twitter.com/dog_rates/status/735648611367784448/photo/1 https://twitter.com/dog_rates/status/735635087207878657/photo/1,https://twitter.com/dog_rates/status/735635087207878657/photo/1 https://twitter.com/dog_rates/status/735274964362878976/photo/1,https://twitter.com/dog_rates/status/735274964362878976/photo/1 https://twitter.com/dog_rates/status/735256018284875776/photo/1 https://twitter.com/dog_rates/status/735137028879360001/photo/1 https://twitter.com/dog_rates/status/734912297295085568/photo/1 https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1 https://twitter.com/dog_rates/status/734776360183431168/photo/1 https://vine.co/v/iExiLXiiHvX https://twitter.com/dog_rates/status/733828123016450049/photo/1,https://twitter.com/dog_rates/status/733828123016450049/photo/1 https://twitter.com/dog_rates/status/733822306246479872/photo/1 https://twitter.com/dog_rates/status/733482008106668032/photo/1 https://twitter.com/dog_rates/status/733460102733135873/photo/1 https://twitter.com/dog_rates/status/733109485275860992/photo/1 https://twitter.com/dog_rates/status/732732193018155009/photo/1 https://twitter.com/dog_rates/status/732726085725589504/photo/1 https://twitter.com/dog_rates/status/732585889486888962/photo/1,https://twitter.com/dog_rates/status/732585889486888962/photo/1 https://twitter.com/dog_rates/status/732375214819057664/photo/1 https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 https://twitter.com/dog_rates/status/731285275100512256/photo/1 https://twitter.com/dog_rates/status/731156023742988288/photo/1 https://twitter.com/dog_rates/status/730924654643314689/photo/1 https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1 https://twitter.com/dog_rates/status/730427201120833536/photo/1 https://twitter.com/dog_rates/status/730211855403241472/photo/1 https://twitter.com/dog_rates/status/730196704625098752/photo/1 https://twitter.com/dog_rates/status/729854734790754305/photo/1 https://twitter.com/dog_rates/status/729838605770891264/video/1 https://twitter.com/dog_rates/status/729823566028484608/photo/1 https://twitter.com/dog_rates/status/729463711119904772/photo/1 https://twitter.com/dog_rates/status/729113531270991872/photo/1,https://twitter.com/dog_rates/status/729113531270991872/photo/1 https://twitter.com/dog_rates/status/728986383096946689/photo/1,https://twitter.com/dog_rates/status/728986383096946689/photo/1 https://twitter.com/dog_rates/status/728760639972315136/photo/1,https://twitter.com/dog_rates/status/728760639972315136/photo/1 https://twitter.com/dog_rates/status/728751179681943552/photo/1 https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1 https://twitter.com/dog_rates/status/728409960103686147/photo/1 https://twitter.com/dog_rates/status/728387165835677696/photo/1 https://twitter.com/dog_rates/status/728046963732717569/photo/1 https://twitter.com/dog_rates/status/728035342121635841/photo/1,https://twitter.com/dog_rates/status/728035342121635841/photo/1 https://twitter.com/dog_rates/status/728015554473250816/photo/1 https://twitter.com/dog_rates/status/727685679342333952/photo/1 https://twitter.com/dog_rates/status/727644517743104000/photo/1,https://twitter.com/dog_rates/status/727644517743104000/photo/1 https://twitter.com/dog_rates/status/727524757080539137/photo/1,https://twitter.com/dog_rates/status/727524757080539137/photo/1 https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1 https://twitter.com/dog_rates/status/727286334147182592/photo/1 https://twitter.com/dog_rates/status/727175381690781696/photo/1,https://twitter.com/dog_rates/status/727175381690781696/photo/1 https://vine.co/v/ixa1ejbXiM7 https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1 https://twitter.com/dog_rates/status/726887082820554753/photo/1 https://twitter.com/dog_rates/status/726828223124897792/photo/1 https://twitter.com/dog_rates/status/726224900189511680/photo/1 https://twitter.com/dog_rates/status/725842289046749185/photo/1 https://twitter.com/dog_rates/status/725786712245440512/photo/1 https://twitter.com/dog_rates/status/725729321944506368/photo/1 https://twitter.com/foxdeportes/status/725136065078521856 https://twitter.com/dog_rates/status/724983749226668032/photo/1 https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1 https://twitter.com/dog_rates/status/724405726123311104/photo/1 https://twitter.com/dog_rates/status/724049859469295616/photo/1 https://twitter.com/dog_rates/status/724046343203856385/photo/1 https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1 https://twitter.com/dog_rates/status/723912936180330496/photo/1 https://twitter.com/dog_rates/status/723688335806480385/photo/1,https://twitter.com/dog_rates/status/723688335806480385/photo/1 https://twitter.com/dog_rates/status/723673163800948736/photo/1 https://twitter.com/dog_rates/status/723179728551723008/photo/1 https://twitter.com/dog_rates/status/722974582966214656/photo/1 https://twitter.com/dog_rates/status/722613351520608256/photo/1 https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1 https://twitter.com/dog_rates/status/721001180231503872/photo/1 https://twitter.com/dog_rates/status/720785406564900865/photo/1 https://twitter.com/dog_rates/status/720775346191278080/photo/1 https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1 https://twitter.com/dog_rates/status/720389942216527872/photo/1 https://twitter.com/dog_rates/status/720340705894408192/photo/1 https://twitter.com/dog_rates/status/720059472081784833/photo/1 https://twitter.com/dog_rates/status/720043174954147842/photo/1 https://twitter.com/dog_rates/status/719991154352222208/photo/1,https://twitter.com/dog_rates/status/719991154352222208/photo/1 https://twitter.com/dog_rates/status/719704490224398336/photo/1 https://twitter.com/dog_rates/status/719551379208073216/photo/1 https://twitter.com/dog_rates/status/719367763014393856/photo/1 https://twitter.com/dog_rates/status/719339463458033665/photo/1 https://twitter.com/dog_rates/status/719332531645071360/photo/1 https://twitter.com/dog_rates/status/718971898235854848/photo/1 https://twitter.com/dog_rates/status/718939241951195136/photo/1 https://twitter.com/dog_rates/status/718631497683582976/photo/1 https://twitter.com/dog_rates/status/718613305783398402/photo/1 https://twitter.com/dog_rates/status/718540630683709445/photo/1,https://twitter.com/dog_rates/status/718540630683709445/photo/1 https://twitter.com/dog_rates/status/718460005985447936/photo/1 https://twitter.com/dog_rates/status/718454725339934721/photo/1 https://twitter.com/dog_rates/status/718246886998687744/photo/1 https://twitter.com/dog_rates/status/718234618122661888/photo/1 https://twitter.com/dog_rates/status/717841801130979328/photo/1 https://twitter.com/dog_rates/status/717790033953034240/photo/1 https://twitter.com/dog_rates/status/717537687239008257/photo/1 https://vine.co/v/iIhEU2lVqxz https://twitter.com/dog_rates/status/717421804990701568/photo/1,https://twitter.com/dog_rates/status/717421804990701568/photo/1 https://twitter.com/dog_rates/status/717047459982213120/photo/1 https://twitter.com/dog_rates/status/717009362452090881/photo/1 https://twitter.com/dog_rates/status/716802964044845056/photo/1,https://twitter.com/dog_rates/status/716802964044845056/photo/1 https://twitter.com/dog_rates/status/716791146589110272/photo/1 https://twitter.com/chpsanfrancisco/status/716637124322177024 https://vine.co/v/eMmXVPn5eQK https://twitter.com/dog_rates/status/716439118184652801/photo/1 https://twitter.com/dog_rates/status/716285507865542656/photo/1,https://twitter.com/dog_rates/status/716285507865542656/photo/1 https://twitter.com/dog_rates/status/716080869887381504/photo/1,https://twitter.com/dog_rates/status/716080869887381504/photo/1 https://twitter.com/dog_rates/status/715928423106027520/photo/1 https://vine.co/v/hYdLVKDpAFu https://twitter.com/dog_rates/status/715733265223708672/photo/1 https://vine.co/v/ijAlDnuOD0l https://twitter.com/dog_rates/status/715696743237730304/photo/1 https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1 https://twitter.com/dog_rates/status/715360349751484417/photo/1 https://twitter.com/dog_rates/status/715342466308784130/photo/1,https://twitter.com/dog_rates/status/715342466308784130/photo/1 https://twitter.com/dog_rates/status/715220193576927233/photo/1 https://twitter.com/dog_rates/status/715200624753819648/photo/1 https://twitter.com/dog_rates/status/715009755312439296/photo/1 https://twitter.com/dog_rates/status/714982300363173890/photo/1 https://vine.co/v/inVtemLt9tE https://twitter.com/dog_rates/status/714957620017307648/photo/1 https://twitter.com/dog_rates/status/714631576617938945/photo/1 https://twitter.com/dog_rates/status/714606013974974464/photo/1 https://vine.co/v/iDrOvVqq0A6 https://twitter.com/dog_rates/status/714258258790387713/photo/1 https://twitter.com/dog_rates/status/714251586676113411/photo/1,https://twitter.com/dog_rates/status/714251586676113411/photo/1 https://twitter.com/dog_rates/status/714214115368108032/photo/1 https://twitter.com/dog_rates/status/714141408463036416/photo/1 https://twitter.com/dog_rates/status/713919462244790272/photo/1 https://vine.co/v/iDWlapaXWmm https://twitter.com/dog_rates/status/713900603437621249/photo/1 https://twitter.com/dog_rates/status/713761197720473600/photo/1,https://twitter.com/dog_rates/status/713761197720473600/photo/1 https://twitter.com/dog_rates/status/713411074226274305/photo/1 https://twitter.com/dog_rates/status/713177543487135744/photo/1 https://twitter.com/dog_rates/status/713175907180089344/photo/1 https://twitter.com/dog_rates/status/712809025985978368/photo/1 https://twitter.com/dog_rates/status/712717840512598017/photo/1 https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1 https://twitter.com/dog_rates/status/712438159032893441/photo/1 https://twitter.com/stickergrub/status/709919141004595201 https://twitter.com/dog_rates/status/712097430750289920/photo/1 https://twitter.com/dog_rates/status/712092745624633345/photo/1 https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1 https://twitter.com/dog_rates/status/712065007010385924/photo/1 https://twitter.com/twitter/status/711998279773347841/photo/1,https://twitter.com/twitter/status/711998279773347841/photo/1 https://twitter.com/dog_rates/status/711968124745228288/photo/1 https://twitter.com/dog_rates/status/711743778164514816/photo/1 https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1 https://twitter.com/dog_rates/status/711694788429553666/photo/1 https://twitter.com/dog_rates/status/711652651650457602/photo/1 https://twitter.com/dog_rates/status/711363825979756544/photo/1,https://twitter.com/dog_rates/status/711363825979756544/photo/1 https://twitter.com/dog_rates/status/711306686208872448/photo/1,https://twitter.com/dog_rates/status/711306686208872448/photo/1 https://twitter.com/dog_rates/status/711008018775851008/photo/1 https://twitter.com/dog_rates/status/710997087345876993/photo/1 https://twitter.com/dog_rates/status/710844581445812225/photo/1 https://twitter.com/dog_rates/status/710833117892898816/photo/1 https://twitter.com/dog_rates/status/710658690886586372/photo/1 https://vine.co/v/idaTpwH5TgU https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1 https://vine.co/v/iw9hUFAMerV https://twitter.com/dog_rates/status/710283270106132480/photo/1,https://twitter.com/dog_rates/status/710283270106132480/photo/1 https://twitter.com/dog_rates/status/710272297844797440/photo/1 https://twitter.com/dog_rates/status/710269109699739648/photo/1 https://twitter.com/dog_rates/status/710153181850935296/photo/1,https://twitter.com/dog_rates/status/710153181850935296/photo/1 https://twitter.com/dog_rates/status/710140971284037632/photo/1 https://twitter.com/dog_rates/status/710117014656950272/photo/1,https://twitter.com/dog_rates/status/710117014656950272/photo/1 https://twitter.com/dog_rates/status/709918798883774466/photo/1,https://twitter.com/dog_rates/status/709918798883774466/photo/1 http://goo.gl/ArWZfi,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1 https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1 https://twitter.com/dog_rates/status/709566166965075968/photo/1 https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1 https://twitter.com/dog_rates/status/709519240576036864/photo/1 https://twitter.com/dog_rates/status/709449600415961088/photo/1,https://twitter.com/dog_rates/status/709449600415961088/photo/1 https://twitter.com/dog_rates/status/709409458133323776/photo/1 https://twitter.com/dog_rates/status/709225125749587968/photo/1 https://twitter.com/dog_rates/status/709207347839836162/photo/1 https://twitter.com/dog_rates/status/709198395643068416/photo/1 https://vine.co/v/iwAjdlEjwMl https://twitter.com/dog_rates/status/709158332880297985/photo/1 https://twitter.com/dog_rates/status/709042156699303936/photo/1 https://vine.co/v/iHl2UDEBZ95 https://twitter.com/dog_rates/status/708845821941387268/photo/1,https://twitter.com/dog_rates/status/708845821941387268/photo/1 https://twitter.com/dog_rates/status/708834316713893888/photo/1 https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1 https://twitter.com/dog_rates/status/708738143638450176/photo/1 https://twitter.com/dog_rates/status/708711088997666817/photo/1,https://twitter.com/dog_rates/status/708711088997666817/photo/1 https://twitter.com/dog_rates/status/708479650088034305/photo/1 https://twitter.com/dog_rates/status/708469915515297792/photo/1 https://vine.co/v/iHFqnjKVbIQ https://twitter.com/dog_rates/status/708356463048204288/photo/1,https://twitter.com/dog_rates/status/708356463048204288/photo/1 https://twitter.com/dog_rates/status/708349470027751425/photo/1 https://twitter.com/dog_rates/status/708149363256774660/photo/1 https://twitter.com/dog_rates/status/708130923141795840/photo/1 https://twitter.com/dog_rates/status/708119489313951744/photo/1 https://twitter.com/dog_rates/status/708109389455101952/photo/1 https://twitter.com/dog_rates/status/708026248782585858/video/1 https://twitter.com/dog_rates/status/707995814724026368/photo/1 NaN https://twitter.com/dog_rates/status/707969809498152960/photo/1 https://twitter.com/dog_rates/status/707776935007539200/photo/1 https://twitter.com/dog_rates/status/707741517457260545/photo/1 https://vine.co/v/hUvHKYrdb1d https://twitter.com/dog_rates/status/707693576495472641/photo/1 https://vine.co/v/iHhBOTl5p9z https://twitter.com/dog_rates/status/707610948723478529/photo/1 https://twitter.com/dog_rates/status/707420581654872064/photo/1 https://twitter.com/dog_rates/status/707411934438625280/photo/1 https://twitter.com/dog_rates/status/707387676719185920/photo/1 https://twitter.com/dog_rates/status/707377100785885184/photo/1,https://twitter.com/dog_rates/status/707377100785885184/photo/1 https://twitter.com/dog_rates/status/707315916783140866/photo/1,https://twitter.com/dog_rates/status/707315916783140866/photo/1 https://twitter.com/dog_rates/status/707297311098011648/photo/1,https://twitter.com/dog_rates/status/707297311098011648/photo/1 https://twitter.com/dog_rates/status/707059547140169728/photo/1,https://twitter.com/dog_rates/status/707059547140169728/photo/1 https://twitter.com/dog_rates/status/707038192327901184/photo/1,https://twitter.com/dog_rates/status/707038192327901184/photo/1 https://twitter.com/dog_rates/status/707021089608753152/photo/1,https://twitter.com/dog_rates/status/707021089608753152/photo/1 https://twitter.com/dog_rates/status/707014260413456384/photo/1 https://vine.co/v/iXQAm5Lrgrh https://twitter.com/dog_rates/status/706901761596989440/photo/1 https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1 https://twitter.com/dog_rates/status/706644897839910912/video/1 https://twitter.com/dog_rates/status/706593038911545345/photo/1 https://twitter.com/dog_rates/status/706538006853918722/photo/1 https://twitter.com/dog_rates/status/706516534877929472/photo/1 https://twitter.com/dog_rates/status/706346369204748288/photo/1,https://twitter.com/dog_rates/status/706346369204748288/photo/1 https://twitter.com/dog_rates/status/706310011488698368/photo/1,https://twitter.com/dog_rates/status/706310011488698368/photo/1 https://twitter.com/dog_rates/status/706291001778950144/photo/1,https://twitter.com/dog_rates/status/706291001778950144/photo/1 https://twitter.com/dog_rates/status/706265994973601792/photo/1 https://twitter.com/wgnnews/status/706165920809492480 https://twitter.com/dog_rates/status/706166467411222528/photo/1 https://vine.co/v/iXidJXBJ3P9 https://twitter.com/dog_rates/status/705975130514706432/photo/1,https://twitter.com/dog_rates/status/705975130514706432/photo/1 https://twitter.com/dog_rates/status/705970349788291072/photo/1 https://twitter.com/dog_rates/status/705898680587526145/photo/1,https://twitter.com/dog_rates/status/705898680587526145/photo/1 https://twitter.com/dog_rates/status/705786532653883392/photo/1 https://twitter.com/dog_rates/status/705591895322394625/photo/1 https://twitter.com/dog_rates/status/705475953783398401/photo/1,https://twitter.com/dog_rates/status/705475953783398401/photo/1 https://twitter.com/dog_rates/status/705442520700944385/photo/1 https://twitter.com/dog_rates/status/705428427625635840/photo/1 https://twitter.com/dog_rates/status/705239209544720384/photo/1 https://twitter.com/dog_rates/status/705223444686888960/photo/1 https://twitter.com/dog_rates/status/705102439679201280/photo/1 https://twitter.com/dog_rates/status/705066031337840642/photo/1 https://twitter.com/dog_rates/status/704871453724954624/photo/1 https://twitter.com/dog_rates/status/704859558691414016/photo/1 https://twitter.com/dog_rates/status/704847917308362754/photo/1 https://twitter.com/dog_rates/status/704819833553219584/photo/1 https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 https://twitter.com/dog_rates/status/704499785726889984/photo/1 NaN https://twitter.com/dog_rates/status/704480331685040129/photo/1 https://twitter.com/dog_rates/status/704364645503647744/photo/1,https://twitter.com/dog_rates/status/704364645503647744/photo/1 https://twitter.com/dog_rates/status/704347321748819968/photo/1 https://vine.co/v/igW2OEwu9vg https://twitter.com/dog_rates/status/704113298707505153/photo/1,https://twitter.com/dog_rates/status/704113298707505153/photo/1 https://twitter.com/dog_rates/status/704054845121142784/photo/1 https://twitter.com/dog_rates/status/703774238772166656/photo/1 https://twitter.com/dog_rates/status/703769065844768768/photo/1,https://twitter.com/dog_rates/status/703769065844768768/photo/1 https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1 https://twitter.com/dog_rates/status/703611486317502464/photo/1 https://twitter.com/dog_rates/status/703425003149250560/photo/1 https://twitter.com/dog_rates/status/703407252292673536/photo/1 https://twitter.com/dog_rates/status/703382836347330562/photo/1,https://twitter.com/dog_rates/status/703382836347330562/photo/1 https://twitter.com/dog_rates/status/703356393781329922/photo/1 https://twitter.com/dog_rates/status/703268521220972544/photo/1 https://twitter.com/dog_rates/status/703079050210877440/photo/1,https://twitter.com/dog_rates/status/703079050210877440/photo/1 https://twitter.com/dog_rates/status/703041949650034688/photo/1 https://twitter.com/dog_rates/status/702932127499816960/photo/1 https://vine.co/v/i6iIrBwnTFI https://twitter.com/dog_rates/status/702684942141153280/photo/1 https://twitter.com/dog_rates/status/702671118226825216/photo/1 https://twitter.com/dog_rates/status/702598099714314240/photo/1 https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1 https://vine.co/v/irlDujgwOjd https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1 https://twitter.com/dog_rates/status/702276748847800320/photo/1 https://twitter.com/dog_rates/status/702217446468493312/photo/1 https://twitter.com/dog_rates/status/701981390485725185/photo/1 https://twitter.com/dog_rates/status/701952816642965504/photo/1 https://twitter.com/dog_rates/status/701889187134500865/photo/1 https://vine.co/v/ivV6Y37mH5Z https://twitter.com/dog_rates/status/701601587219795968/photo/1 https://twitter.com/dog_rates/status/701570477911896070/photo/1,https://twitter.com/dog_rates/status/701570477911896070/photo/1 https://twitter.com/dog_rates/status/701545186879471618/photo/1 https://twitter.com/dog_rates/status/701214700881756160/photo/1 https://twitter.com/dog_rates/status/700890391244103680/photo/1 https://twitter.com/dog_rates/status/700864154249383937/photo/1 https://twitter.com/dog_rates/status/700847567345688576/photo/1 https://twitter.com/dog_rates/status/700796979434098688/photo/1 https://twitter.com/dog_rates/status/700747788515020802/photo/1 https://twitter.com/dog_rates/status/700518061187723268/photo/1 https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1 https://twitter.com/dog_rates/status/700462010979500032/photo/1 https://twitter.com/dog_rates/status/700167517596164096/photo/1 https://twitter.com/dog_rates/status/700151421916807169/photo/1 https://twitter.com/dog_rates/status/700143752053182464/photo/1 https://twitter.com/dog_rates/status/700062718104104960/photo/1 https://twitter.com/dog_rates/status/700029284593901568/photo/1 https://twitter.com/dog_rates/status/700002074055016451/photo/1 https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1 https://twitter.com/dog_rates/status/699788877217865730/photo/1 https://twitter.com/dog_rates/status/699779630832685056/photo/1,https://twitter.com/dog_rates/status/699779630832685056/photo/1 https://twitter.com/dog_rates/status/699775878809702401/photo/1 https://twitter.com/dog_rates/status/699691744225525762/photo/1 https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1 https://twitter.com/dog_rates/status/699434518667751424/photo/1 https://twitter.com/dog_rates/status/699423671849451520/photo/1 https://twitter.com/dog_rates/status/699413908797464576/photo/1 https://twitter.com/dog_rates/status/699370870310113280/photo/1 https://twitter.com/dog_rates/status/699323444782047232/photo/1 https://twitter.com/dog_rates/status/699088579889332224/photo/1 https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1 https://twitter.com/dog_rates/status/699072405256409088/video/1 https://vine.co/v/inlmMHxtqDD https://twitter.com/dog_rates/status/699036661657767936/photo/1 https://twitter.com/dog_rates/status/698989035503689728/photo/1 https://twitter.com/dog_rates/status/698953797952008193/photo/1 https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1 https://twitter.com/dog_rates/status/698710712454139905/photo/1 https://twitter.com/dog_rates/status/698703483621523456/photo/1 https://twitter.com/dog_rates/status/698635131305795584/video/1 https://twitter.com/dog_rates/status/698549713696649216/photo/1 https://twitter.com/dog_rates/status/698355670425473025/photo/1 https://twitter.com/dog_rates/status/698342080612007937/video/1 https://twitter.com/dog_rates/status/698262614669991936/photo/1 https://twitter.com/dog_rates/status/698195409219559425/photo/1 https://twitter.com/dog_rates/status/698178924120031232/photo/1 https://twitter.com/dog_rates/status/697995514407682048/photo/1 https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1 https://twitter.com/dog_rates/status/697943111201378304/photo/1 https://twitter.com/dog_rates/status/697881462549430272/photo/1 https://vine.co/v/in7ZzHPKzWz https://twitter.com/dog_rates/status/697616773278015490/photo/1,https://twitter.com/dog_rates/status/697616773278015490/photo/1 https://twitter.com/dog_rates/status/697596423848730625/photo/1 https://twitter.com/dog_rates/status/697575480820686848/photo/1 https://vine.co/v/i1LriMBmX6W https://twitter.com/dog_rates/status/697482927769255936/photo/1 https://twitter.com/dog_rates/status/697463031882764288/photo/1 https://twitter.com/dog_rates/status/697270446429966336/photo/1 https://twitter.com/dog_rates/status/697259378236399616/photo/1 https://twitter.com/dog_rates/status/697255105972801536/photo/1 https://twitter.com/dog_rates/status/697242256848379904/photo/1 https://twitter.com/dog_rates/status/696900204696625153/photo/1 https://twitter.com/dog_rates/status/696894894812565505/photo/1 https://twitter.com/dog_rates/status/696886256886657024/photo/1 https://twitter.com/dog_rates/status/696877980375769088/photo/1 https://twitter.com/dog_rates/status/696754882863349760/photo/1 https://vine.co/v/i1wrljBUjAu https://twitter.com/dog_rates/status/696713835009417216/photo/1 NaN NaN https://twitter.com/dog_rates/status/696488710901260288/photo/1 https://twitter.com/dog_rates/status/696405997980676096/photo/1 https://vine.co/v/i1KWj0vbvA9 https://twitter.com/dog_rates/status/695816827381944320/photo/1 https://twitter.com/dog_rates/status/695794761660297217/photo/1 https://twitter.com/dog_rates/status/695767669421768709/photo/1 https://twitter.com/dog_rates/status/695629776980148225/photo/1,https://twitter.com/dog_rates/status/695629776980148225/photo/1 https://twitter.com/dog_rates/status/695446424020918272/photo/1 https://twitter.com/dog_rates/status/695409464418041856/photo/1 https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1 https://twitter.com/dog_rates/status/695095422348574720/photo/1 https://twitter.com/dog_rates/status/695074328191332352/photo/1 https://twitter.com/dog_rates/status/695064344191721472/video/1 https://twitter.com/dog_rates/status/695051054296211456/photo/1,https://twitter.com/dog_rates/status/695051054296211456/photo/1 https://vine.co/v/iJvUqWQ166L https://twitter.com/dog_rates/status/694905863685980160/photo/1 https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 https://twitter.com/dog_rates/status/694356675654983680/photo/1 https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1 https://vine.co/v/iJWKejYdLlh https://twitter.com/dog_rates/status/694329668942569472/photo/1 https://twitter.com/dog_rates/status/694206574471057408/photo/1 https://twitter.com/dog_rates/status/694183373896572928/photo/1,https://twitter.com/dog_rates/status/694183373896572928/photo/1 https://twitter.com/dog_rates/status/694001791655137281/photo/1,https://twitter.com/dog_rates/status/694001791655137281/photo/1 https://vine.co/v/i5ETazP5hrm https://twitter.com/dog_rates/status/693942351086120961/photo/1 https://twitter.com/dog_rates/status/693647888581312512/photo/1 NaN https://twitter.com/dog_rates/status/693642232151285760/photo/1 https://twitter.com/dog_rates/status/693629975228977152/photo/1,https://twitter.com/dog_rates/status/693629975228977152/photo/1 https://twitter.com/dog_rates/status/693622659251335168/photo/1 https://twitter.com/dog_rates/status/693590843962331137/photo/1 NaN https://twitter.com/dog_rates/status/693486665285931008/video/1 https://twitter.com/dog_rates/status/693280720173801472/photo/1 https://vine.co/v/i5n2irFUYWv https://twitter.com/dog_rates/status/693262851218264065/photo/1 https://twitter.com/dog_rates/status/693231807727280129/photo/1 https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1 https://twitter.com/dog_rates/status/693109034023534592/video/1 https://twitter.com/dog_rates/status/693095443459342336/photo/1 https://twitter.com/dog_rates/status/692919143163629568/photo/1 https://twitter.com/dog_rates/status/692905862751522816/photo/1 https://twitter.com/dog_rates/status/692901601640583168/photo/1 https://twitter.com/dog_rates/status/692894228850999298/photo/1 https://twitter.com/dog_rates/status/692828166163931137/photo/1 https://twitter.com/dog_rates/status/692752401762250755/photo/1 https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1 https://twitter.com/dog_rates/status/692535307825213440/photo/1 https://twitter.com/dog_rates/status/692530551048294401/photo/1 NaN https://twitter.com/dog_rates/status/692417313023332352/photo/1 https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1 https://twitter.com/dog_rates/status/692158366030913536/photo/1 https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1 https://vine.co/v/iiI3wmqXYmA https://twitter.com/dog_rates/status/692017291282812928/photo/1 https://twitter.com/dog_rates/status/691820333922455552/photo/1 https://vine.co/v/OTTVAKw6YlW https://twitter.com/dog_rates/status/691756958957883396/photo/1 https://twitter.com/dog_rates/status/691675652215414786/photo/1 https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1 https://twitter.com/dog_rates/status/691459709405118465/photo/1,https://twitter.com/dog_rates/status/691459709405118465/photo/1 https://twitter.com/dog_rates/status/691444869282295808/photo/1,https://twitter.com/dog_rates/status/691444869282295808/photo/1 https://twitter.com/dog_rates/status/691416866452082688/photo/1 https://twitter.com/dog_rates/status/691321916024623104/photo/1 https://twitter.com/dog_rates/status/691096613310316544/photo/1 https://twitter.com/dog_rates/status/691090071332753408/photo/1 https://vine.co/v/iOZKZEU2nHq https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1 https://twitter.com/dog_rates/status/690938899477221376/photo/1 https://twitter.com/dog_rates/status/690932576555528194/photo/1 https://twitter.com/dog_rates/status/690735892932222976/photo/1,https://twitter.com/dog_rates/status/690735892932222976/photo/1 https://twitter.com/dog_rates/status/690728923253055490/photo/1 https://twitter.com/dog_rates/status/690690673629138944/photo/1 https://twitter.com/dog_rates/status/690649993829576704/photo/1 NaN https://twitter.com/dog_rates/status/690597161306841088/photo/1 https://twitter.com/dog_rates/status/690400367696297985/photo/1 https://twitter.com/dog_rates/status/690374419777196032/photo/1 https://twitter.com/dog_rates/status/690360449368465409/photo/1 https://vine.co/v/iejBWerY9X2 https://twitter.com/dog_rates/status/690248561355657216/photo/1 https://twitter.com/dog_rates/status/690021994562220032/photo/1 https://twitter.com/dog_rates/status/690015576308211712/photo/1,https://twitter.com/dog_rates/status/690015576308211712/photo/1 https://twitter.com/dog_rates/status/690005060500217858/photo/1 https://twitter.com/dog_rates/status/689999384604450816/photo/1 https://vine.co/v/ienexVMZgi5 https://twitter.com/dog_rates/status/689977555533848577/photo/1 https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1 https://twitter.com/dog_rates/status/689877686181715968/photo/1 https://twitter.com/dog_rates/status/689835978131935233/photo/1 https://twitter.com/dog_rates/status/689661964914655233/photo/1 https://twitter.com/dog_rates/status/689659372465688576/photo/1 https://twitter.com/dog_rates/status/689623661272240129/photo/1,https://twitter.com/dog_rates/status/689623661272240129/photo/1 https://twitter.com/dog_rates/status/689599056876867584/photo/1 https://twitter.com/dog_rates/status/689557536375177216/photo/1 https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1 https://twitter.com/dog_rates/status/689289219123089408/video/1 https://twitter.com/dog_rates/status/689283819090870273/photo/1 https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1 https://twitter.com/dog_rates/status/689275259254616065/photo/1 https://vine.co/v/iOL792n5hz2 https://twitter.com/dog_rates/status/689154315265683456/photo/1 https://twitter.com/dog_rates/status/689143371370250240/photo/1 https://twitter.com/dog_rates/status/688916208532455424/photo/1,https://twitter.com/dog_rates/status/688916208532455424/photo/1 https://twitter.com/dog_rates/status/688908934925697024/photo/1 https://twitter.com/dog_rates/status/688898160958271489/photo/1,https://twitter.com/dog_rates/status/688898160958271489/photo/1 https://twitter.com/dog_rates/status/688894073864884227/photo/1 https://twitter.com/dog_rates/status/688828561667567616/photo/1 https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1 https://twitter.com/dog_rates/status/688789766343622656/photo/1 https://twitter.com/dog_rates/status/688547210804498433/photo/1 https://twitter.com/dog_rates/status/688519176466644993/photo/1 https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1 https://twitter.com/dog_rates/status/688211956440801280/video/1 https://twitter.com/dog_rates/status/688179443353796608/photo/1 https://twitter.com/dog_rates/status/688116655151435777/photo/1 https://twitter.com/dog_rates/status/688064179421470721/photo/1 https://vine.co/v/iOWwUPH1hrw https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1 https://twitter.com/dog_rates/status/687818504314159109/photo/1 https://twitter.com/dog_rates/status/687807801670897665/photo/1 https://vine.co/v/iOuMphL5DBY https://twitter.com/dog_rates/status/687704180304273409/photo/1 https://twitter.com/dog_rates/status/687664829264453632/photo/1 https://twitter.com/dog_rates/status/687494652870668288/photo/1 https://twitter.com/dog_rates/status/687480748861947905/photo/1 https://twitter.com/dog_rates/status/687476254459715584/photo/1 https://twitter.com/dog_rates/status/687460506001633280/photo/1 https://vine.co/v/iM2hLu9LU5i https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 https://twitter.com/dog_rates/status/687312378585812992/photo/1 https://twitter.com/dog_rates/status/687127927494963200/photo/1 https://twitter.com/dog_rates/status/687124485711986689/photo/1 https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1 https://twitter.com/dog_rates/status/687102708889812993/photo/1 https://twitter.com/dog_rates/status/687096057537363968/photo/1 https://twitter.com/dog_rates/status/686947101016735744/photo/1 https://vine.co/v/iMvubwT260D https://twitter.com/dog_rates/status/686749460672679938/photo/1 https://twitter.com/dog_rates/status/686730991906516992/photo/1 https://twitter.com/dog_rates/status/686683045143953408/photo/1 https://twitter.com/dog_rates/status/686618349602762752/photo/1 https://twitter.com/dog_rates/status/686606069955735556/photo/1 https://vine.co/v/iMqBebnOvav https://twitter.com/dog_rates/status/686386521809772549/photo/1 https://twitter.com/dog_rates/status/686377065986265092/photo/1 https://twitter.com/dog_rates/status/686358356425093120/photo/1 https://vine.co/v/iMZx6aDbExn https://twitter.com/dog_rates/status/686050296934563840/photo/1 NaN https://twitter.com/dog_rates/status/686034024800862208/photo/1 https://twitter.com/dog_rates/status/686007916130873345/photo/1 https://twitter.com/dog_rates/status/686003207160610816/photo/1 https://twitter.com/dog_rates/status/685973236358713344/photo/1 https://twitter.com/dog_rates/status/685943807276412928/video/1 https://twitter.com/dog_rates/status/685906723014619143/photo/1,https://twitter.com/dog_rates/status/685906723014619143/photo/1 NaN https://twitter.com/dog_rates/status/685667379192414208/photo/1 https://twitter.com/dog_rates/status/685663452032069632/video/1 https://twitter.com/dog_rates/status/685641971164143616/photo/1 https://twitter.com/dog_rates/status/685547936038666240/photo/1,https://twitter.com/dog_rates/status/685547936038666240/photo/1 https://twitter.com/dog_rates/status/685532292383666176/photo/1 https://twitter.com/dog_rates/status/685325112850124800/photo/1 https://twitter.com/dog_rates/status/685321586178670592/photo/1 https://twitter.com/dog_rates/status/685315239903100929/photo/1,https://twitter.com/dog_rates/status/685315239903100929/photo/1 https://twitter.com/dog_rates/status/685307451701334016/photo/1 https://twitter.com/dog_rates/status/685268753634967552/photo/1 https://twitter.com/dog_rates/status/685198997565345792/photo/1 https://twitter.com/dog_rates/status/685169283572338688/photo/1 NaN https://twitter.com/dog_rates/status/684959798585110529/photo/1 https://twitter.com/dog_rates/status/684940049151070208/photo/1,https://twitter.com/dog_rates/status/684940049151070208/photo/1 https://twitter.com/dog_rates/status/684926975086034944/photo/1 https://twitter.com/dog_rates/status/684914660081053696/photo/1 https://twitter.com/dog_rates/status/684902183876321280/photo/1 https://twitter.com/dog_rates/status/684880619965411328/photo/1 https://vine.co/v/eEZXZI1rqxX https://twitter.com/dog_rates/status/684800227459624960/photo/1 https://twitter.com/dog_rates/status/684594889858887680/photo/1 https://vine.co/v/ihWIxntjtO7 https://twitter.com/dog_rates/status/684567543613382656/photo/1 https://twitter.com/dog_rates/status/684538444857667585/video/1 https://twitter.com/dog_rates/status/684481074559381504/photo/1 https://twitter.com/dog_rates/status/684460069371654144/photo/1 https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1 https://twitter.com/dog_rates/status/684225744407494656/photo/1,https://twitter.com/dog_rates/status/684225744407494656/photo/1 https://twitter.com/dog_rates/status/684222868335505415/photo/1 https://twitter.com/dog_rates/status/684200372118904832/photo/1 https://twitter.com/dog_rates/status/684195085588783105/photo/1 https://twitter.com/dog_rates/status/684188786104872960/photo/1 https://twitter.com/dog_rates/status/684177701129875456/photo/1 https://vine.co/v/ib2nTOEuuOI https://twitter.com/dog_rates/status/684122891630342144/photo/1 https://twitter.com/dog_rates/status/684097758874210310/photo/1 https://twitter.com/dog_rates/status/683857920510050305/photo/1 https://twitter.com/dog_rates/status/683852578183077888/photo/1 https://twitter.com/dog_rates/status/683849932751646720/photo/1 https://twitter.com/dog_rates/status/683834909291606017/video/1 https://twitter.com/dog_rates/status/683828599284170753/photo/1 https://twitter.com/dog_rates/status/683773439333797890/photo/1 https://twitter.com/dog_rates/status/683742671509258241/photo/1 https://vine.co/v/ibvnzrauFuV https://twitter.com/dog_rates/status/683498322573824003/photo/1 https://twitter.com/dog_rates/status/683481228088049664/photo/1 https://twitter.com/dog_rates/status/683462770029932544/photo/1 https://twitter.com/dog_rates/status/683449695444799489/photo/1 https://twitter.com/dog_rates/status/683391852557561860/photo/1 https://twitter.com/dog_rates/status/683357973142474752/photo/1 https://twitter.com/dog_rates/status/683142553609318400/photo/1 https://twitter.com/dog_rates/status/683111407806746624/photo/1 https://twitter.com/dog_rates/status/683098815881154561/photo/1 https://twitter.com/dog_rates/status/683078886620553216/photo/1 https://twitter.com/dog_rates/status/683030066213818368/photo/1 https://twitter.com/dog_rates/status/682962037429899265/photo/1 NaN https://twitter.com/dog_rates/status/682788441537560576/photo/1 https://twitter.com/dog_rates/status/682750546109968385/photo/1 https://twitter.com/dog_rates/status/682697186228989953/photo/1 https://twitter.com/dog_rates/status/682662431982772225/photo/1 https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1 https://twitter.com/dog_rates/status/682429480204398592/photo/1 https://twitter.com/dog_rates/status/682406705142087680/photo/1 https://twitter.com/dog_rates/status/682393905736888321/photo/1 https://twitter.com/dog_rates/status/682389078323662849/photo/1 https://twitter.com/dog_rates/status/682303737705140231/photo/1 https://twitter.com/dog_rates/status/682259524040966145/photo/1 https://twitter.com/dog_rates/status/682242692827447297/photo/1 https://vine.co/v/iqMjlxULzbn https://twitter.com/dog_rates/status/682059653698686977/photo/1,https://twitter.com/dog_rates/status/682059653698686977/photo/1 https://twitter.com/dog_rates/status/682047327939461121/photo/1 https://twitter.com/dog_rates/status/682032003584274432/photo/1 https://twitter.com/dog_rates/status/682003177596559360/photo/1 https://twitter.com/dog_rates/status/681981167097122816/photo/1 https://twitter.com/dog_rates/status/681891461017812993/photo/1 https://twitter.com/dog_rates/status/681694085539872773/photo/1 https://twitter.com/dog_rates/status/681679526984871937/photo/1 https://twitter.com/dog_rates/status/681654059175129088/photo/1 https://twitter.com/dog_rates/status/681610798867845120/photo/1 https://twitter.com/dog_rates/status/681579835668455424/photo/1 https://twitter.com/dog_rates/status/681523177663676416/photo/1 NaN https://twitter.com/dog_rates/status/681339448655802368/photo/1 https://twitter.com/dog_rates/status/681320187870711809/photo/1 https://twitter.com/dog_rates/status/681302363064414209/photo/1 https://twitter.com/dog_rates/status/681297372102656000/photo/1 https://twitter.com/dog_rates/status/681281657291280384/photo/1 https://twitter.com/dog_rates/status/681261549936340994/photo/1 https://twitter.com/dog_rates/status/681242418453299201/photo/1 https://twitter.com/dog_rates/status/681231109724700672/photo/1 https://twitter.com/dog_rates/status/681193455364796417/photo/1,https://twitter.com/dog_rates/status/681193455364796417/photo/1 https://twitter.com/dog_rates/status/680970795137544192/photo/1 https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1 https://twitter.com/dog_rates/status/680940246314430465/photo/1 https://twitter.com/dog_rates/status/680934982542561280/photo/1 https://twitter.com/dog_rates/status/680913438424612864/photo/1 https://twitter.com/dog_rates/status/680889648562991104/photo/1 https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1 https://vine.co/v/iAP0Ugzi2PO https://twitter.com/dog_rates/status/680801747103793152/photo/1 https://twitter.com/dog_rates/status/680798457301471234/photo/1 https://twitter.com/dog_rates/status/680609293079592961/photo/1 https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1 https://twitter.com/dog_rates/status/680497766108381184/photo/1 https://twitter.com/dog_rates/status/680494726643068929/photo/1 https://twitter.com/dog_rates/status/680473011644985345/photo/1 https://twitter.com/dog_rates/status/680440374763077632/video/1 https://twitter.com/dog_rates/status/680221482581123072/photo/1 https://twitter.com/dog_rates/status/680206703334408192/photo/1 https://twitter.com/dog_rates/status/680191257256136705/photo/1 https://twitter.com/dog_rates/status/680176173301628928/photo/1 https://twitter.com/dog_rates/status/680161097740095489/photo/1 https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1 https://twitter.com/dog_rates/status/680130881361686529/photo/1 https://twitter.com/dog_rates/status/680115823365742593/photo/1 https://twitter.com/dog_rates/status/680100725817409536/photo/1 https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1 https://twitter.com/dog_rates/status/680070545539371008/photo/1 https://twitter.com/dog_rates/status/680055455951884288/photo/1 https://twitter.com/dog_rates/status/679877062409191424/photo/1 https://vine.co/v/iAAxTbj1UAM https://twitter.com/dog_rates/status/679862121895714818/photo/1 https://twitter.com/dog_rates/status/679854723806179328/photo/1 https://twitter.com/dog_rates/status/679844490799091713/photo/1 https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 https://twitter.com/dog_rates/status/679777920601223168/photo/1 https://twitter.com/dog_rates/status/679736210798047232/photo/1 https://twitter.com/dog_rates/status/679729593985699840/photo/1 https://twitter.com/dog_rates/status/679722016581222400/photo/1 https://twitter.com/dog_rates/status/679530280114372609/photo/1 https://twitter.com/dog_rates/status/679527802031484928/photo/1 https://twitter.com/dog_rates/status/679511351870550016/photo/1 https://twitter.com/dog_rates/status/679503373272485890/photo/1 https://twitter.com/dog_rates/status/679475951516934144/photo/1 https://twitter.com/dog_rates/status/679462823135686656/photo/1 https://vine.co/v/iKVFEigMLxP https://twitter.com/dog_rates/status/679158373988876288/photo/1 https://twitter.com/dog_rates/status/679148763231985668/photo/1 https://twitter.com/dog_rates/status/679132435750195208/photo/1 https://twitter.com/dog_rates/status/679111216690831360/video/1 https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 https://twitter.com/dog_rates/status/679047485189439488/photo/1 https://vine.co/v/iKIwAzEatd6 https://twitter.com/dog_rates/status/678991772295516161/photo/1 https://twitter.com/dog_rates/status/678969228704284672/photo/1 https://twitter.com/dog_rates/status/678800283649069056/photo/1 https://twitter.com/dog_rates/status/678798276842360832/photo/1 https://twitter.com/dog_rates/status/678774928607469569/photo/1 https://twitter.com/dog_rates/status/678767140346941444/photo/1 https://twitter.com/dog_rates/status/678764513869611008/photo/1 https://twitter.com/dog_rates/status/678755239630127104/photo/1 https://twitter.com/dog_rates/status/678740035362037760/photo/1 https://vine.co/v/eQjxxYaQ60K https://twitter.com/dog_rates/status/678675843183484930/photo/1 https://twitter.com/dog_rates/status/678643457146150913/photo/1 https://twitter.com/dog_rates/status/678446151570427904/photo/1 https://twitter.com/dog_rates/status/678424312106393600/photo/1 https://twitter.com/dog_rates/status/678410210315247616/photo/1 https://twitter.com/dog_rates/status/678399652199309312/video/1 https://twitter.com/dog_rates/status/678396796259975168/photo/1,https://twitter.com/dog_rates/status/678396796259975168/photo/1 https://twitter.com/dog_rates/status/678389028614488064/photo/1 https://twitter.com/dog_rates/status/678380236862578688/photo/1 https://twitter.com/dog_rates/status/678341075375947776/photo/1 https://twitter.com/dog_rates/status/678334497360859136/photo/1 https://twitter.com/dog_rates/status/678278586130948096/photo/1 https://twitter.com/dog_rates/status/678255464182861824/photo/1 NaN https://twitter.com/dog_rates/status/678021115718029313/photo/1 https://vine.co/v/iKuMDuYV0aZ https://twitter.com/dog_rates/status/677918531514703872/photo/1 https://twitter.com/dog_rates/status/677895101218201600/photo/1 https://twitter.com/dog_rates/status/677716515794329600/photo/1 https://twitter.com/dog_rates/status/677700003327029250/photo/1 https://twitter.com/dog_rates/status/677698403548192770/photo/1 https://twitter.com/dog_rates/status/677687604918272002/photo/1 https://twitter.com/dog_rates/status/677673981332312066/photo/1 https://twitter.com/dog_rates/status/677662372920729601/photo/1 https://twitter.com/dog_rates/status/677644091929329666/video/1 https://twitter.com/dog_rates/status/677573743309385728/photo/1,https://twitter.com/dog_rates/status/677573743309385728/photo/1 https://twitter.com/dog_rates/status/677565715327688705/photo/1 https://twitter.com/dog_rates/status/677557565589463040/photo/1 https://twitter.com/dog_rates/status/677547928504967168/photo/1 https://twitter.com/dog_rates/status/677530072887205888/photo/1 https://vine.co/v/hbLbH77Ar67 https://twitter.com/dog_rates/status/677334615166730240/photo/1,https://twitter.com/dog_rates/status/677334615166730240/photo/1 https://twitter.com/dog_rates/status/677331501395156992/photo/1 https://twitter.com/dog_rates/status/677328882937298944/photo/1 https://twitter.com/dog_rates/status/677314812125323265/photo/1,https://twitter.com/dog_rates/status/677314812125323265/photo/1 https://twitter.com/dog_rates/status/677301033169788928/photo/1 https://twitter.com/dog_rates/status/677269281705472000/photo/1 https://twitter.com/dog_rates/status/677228873407442944/photo/1 https://twitter.com/dog_rates/status/677187300187611136/photo/1 https://twitter.com/dog_rates/status/676975532580409345/photo/1 https://twitter.com/dog_rates/status/676957860086095872/video/1 https://twitter.com/dog_rates/status/676949632774234114/photo/1 https://twitter.com/dog_rates/status/676948236477857792/photo/1 https://twitter.com/dog_rates/status/676946864479084545/photo/1 https://twitter.com/dog_rates/status/676942428000112642/photo/1 https://twitter.com/dog_rates/status/676936541936185344/photo/1 https://vine.co/v/imJ0BdZOJTw https://twitter.com/dog_rates/status/676897532954456065/photo/1 https://twitter.com/dog_rates/status/676864501615042560/photo/1 https://twitter.com/dog_rates/status/676821958043033607/photo/1,https://twitter.com/dog_rates/status/676821958043033607/photo/1 https://twitter.com/dog_rates/status/676819651066732545/photo/1,https://twitter.com/dog_rates/status/676819651066732545/photo/1 https://twitter.com/dog_rates/status/676811746707918848/photo/1 https://twitter.com/dog_rates/status/676776431406465024/video/1 https://twitter.com/dog_rates/status/676617503762681856/photo/1 https://twitter.com/dog_rates/status/676613908052996102/photo/1 https://twitter.com/dog_rates/status/676606785097199616/photo/1 https://twitter.com/dog_rates/status/676603393314578432/photo/1 https://vine.co/v/eEQQaPFbgOY NaN https://twitter.com/dog_rates/status/676588346097852417/photo/1 https://twitter.com/dog_rates/status/676582956622721024/photo/1 https://twitter.com/dog_rates/status/676575501977128964/photo/1 https://twitter.com/dog_rates/status/676533798876651520/photo/1 https://twitter.com/dog_rates/status/676496375194980353/photo/1 https://twitter.com/dog_rates/status/676470639084101634/photo/1 https://twitter.com/dog_rates/status/676440007570247681/photo/1,https://twitter.com/dog_rates/status/676440007570247681/photo/1 https://twitter.com/dog_rates/status/676430933382295552/photo/1 https://twitter.com/dog_rates/status/676263575653122048/photo/1 https://twitter.com/dog_rates/status/676237365392908289/photo/1 https://twitter.com/dog_rates/status/676219687039057920/photo/1 https://twitter.com/dog_rates/status/676215927814406144/photo/1 https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1 https://twitter.com/dog_rates/status/676146341966438401/photo/1 https://vine.co/v/iZXg7VpeDAv https://twitter.com/dog_rates/status/676101918813499392/photo/1 https://twitter.com/dog_rates/status/676098748976615425/photo/1 https://twitter.com/dog_rates/status/676089483918516224/photo/1 https://twitter.com/dog_rates/status/675898130735476737/photo/1 https://twitter.com/dog_rates/status/675891555769696257/photo/1 https://twitter.com/dog_rates/status/675888385639251968/photo/1 https://twitter.com/dog_rates/status/675878199931371520/photo/1 https://twitter.com/dog_rates/status/675870721063669760/photo/1 https://twitter.com/dog_rates/status/675853064436391936/photo/1,https://twitter.com/dog_rates/status/675853064436391936/photo/1 NaN https://twitter.com/dog_rates/status/675845657354215424/photo/1 https://twitter.com/dog_rates/status/675822767435051008/photo/1 https://twitter.com/dog_rates/status/675820929667219457/photo/1 https://twitter.com/dog_rates/status/675798442703122432/photo/1 https://twitter.com/dog_rates/status/675781562965868544/photo/1 https://twitter.com/dog_rates/status/675740360753160193/video/1 https://twitter.com/dog_rates/status/675710890956750848/photo/1,https://twitter.com/dog_rates/status/675710890956750848/photo/1 https://twitter.com/dog_rates/status/675707330206547968/photo/1 https://twitter.com/dog_rates/status/675706639471788032/photo/1 https://twitter.com/dog_rates/status/675534494439489536/photo/1 https://twitter.com/dog_rates/status/675531475945709568/photo/1 https://twitter.com/dog_rates/status/675522403582218240/photo/1 https://twitter.com/dog_rates/status/675517828909424640/photo/1 https://twitter.com/dog_rates/status/675501075957489664/photo/1 https://twitter.com/dog_rates/status/675497103322386432/photo/1 https://twitter.com/dog_rates/status/675489971617296384/photo/1 https://twitter.com/dog_rates/status/675483430902214656/photo/1 https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1 https://twitter.com/dog_rates/status/675372240448454658/photo/1 https://twitter.com/dog_rates/status/675362609739206656/photo/1 https://twitter.com/dog_rates/status/675354435921575936/video/1 https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1 https://twitter.com/dog_rates/status/675334060156301312/photo/1,https://twitter.com/dog_rates/status/675334060156301312/photo/1 https://twitter.com/dog_rates/status/675166823650848770/photo/1 https://twitter.com/dog_rates/status/675153376133427200/photo/1 https://twitter.com/dog_rates/status/675149409102012420/photo/1 https://twitter.com/dog_rates/status/675147105808306176/photo/1 https://twitter.com/dog_rates/status/675146535592706048/photo/1 https://twitter.com/dog_rates/status/675145476954566656/photo/1 https://twitter.com/dog_rates/status/675135153782571009/photo/1 https://twitter.com/dog_rates/status/675113801096802304/photo/1 https://twitter.com/dog_rates/status/675111688094527488/photo/1 https://twitter.com/dog_rates/status/675109292475830276/photo/1 https://twitter.com/dog_rates/status/675047298674663426/photo/1 https://twitter.com/dog_rates/status/675015141583413248/photo/1 https://twitter.com/dog_rates/status/675006312288268288/photo/1 https://twitter.com/dog_rates/status/675003128568291329/photo/1,https://twitter.com/dog_rates/status/675003128568291329/photo/1 https://twitter.com/dog_rates/status/674999807681908736/photo/1 https://twitter.com/dog_rates/status/674805413498527744/video/1 https://twitter.com/dog_rates/status/674800520222154752/photo/1 https://twitter.com/dog_rates/status/674793399141146624/photo/1 https://twitter.com/dog_rates/status/674790488185167872/photo/1 https://twitter.com/dog_rates/status/674788554665512960/photo/1 https://twitter.com/dog_rates/status/674781762103414784/photo/1 https://twitter.com/dog_rates/status/674774481756377088/photo/1 https://twitter.com/dog_rates/status/674767892831932416/photo/1 https://twitter.com/dog_rates/status/674764817387900928/photo/1,https://twitter.com/dog_rates/status/674764817387900928/photo/1 https://twitter.com/dog_rates/status/674754018082705410/photo/1 https://twitter.com/dog_rates/status/674752233200820224/photo/1,https://twitter.com/dog_rates/status/674752233200820224/photo/1 https://twitter.com/dog_rates/status/674743008475090944/photo/1 NaN https://twitter.com/dog_rates/status/674739953134403584/photo/1 https://twitter.com/dog_rates/status/674737130913071104/photo/1 https://twitter.com/dog_rates/status/674690135443775488/photo/1 https://twitter.com/dog_rates/status/674670581682434048/photo/1 https://twitter.com/dog_rates/status/674664755118911488/photo/1 https://twitter.com/dog_rates/status/674646392044941312/photo/1 https://twitter.com/dog_rates/status/674644256330530816/photo/1 https://twitter.com/dog_rates/status/674638615994089473/photo/1 https://twitter.com/dog_rates/status/674632714662858753/photo/1 NaN https://twitter.com/dog_rates/status/674468880899788800/photo/1,https://twitter.com/dog_rates/status/674468880899788800/photo/1 https://twitter.com/dog_rates/status/674447403907457024/photo/1 https://twitter.com/dog_rates/status/674436901579923456/photo/1 https://twitter.com/dog_rates/status/674422304705744896/photo/1 https://twitter.com/dog_rates/status/674416750885273600/photo/1 https://twitter.com/dog_rates/status/674410619106390016/photo/1 https://twitter.com/dog_rates/status/674394782723014656/photo/1 https://twitter.com/dog_rates/status/674372068062928900/photo/1 NaN https://twitter.com/dog_rates/status/674318007229923329/photo/1 https://vine.co/v/i7nWzrenw5h https://twitter.com/dog_rates/status/674291837063053312/photo/1 https://twitter.com/dog_rates/status/674271431610523648/photo/1 https://twitter.com/dog_rates/status/674269164442398721/photo/1 https://twitter.com/dog_rates/status/674265582246694913/photo/1 https://twitter.com/dog_rates/status/674262580978937856/photo/1 https://twitter.com/dog_rates/status/674255168825880576/photo/1 https://twitter.com/dog_rates/status/674082852460433408/photo/1 https://twitter.com/dog_rates/status/674075285688614912/photo/1 https://twitter.com/dog_rates/status/674063288070742018/photo/1 https://twitter.com/dog_rates/status/674053186244734976/photo/1 https://twitter.com/dog_rates/status/674051556661161984/photo/1 https://twitter.com/dog_rates/status/674045139690631169/photo/1 https://twitter.com/dog_rates/status/674042553264685056/photo/1 https://twitter.com/dog_rates/status/674038233588723717/photo/1 https://twitter.com/dog_rates/status/674036086168010753/photo/1 https://twitter.com/dog_rates/status/674024893172875264/photo/1 https://twitter.com/dog_rates/status/674019345211760640/photo/1 https://twitter.com/dog_rates/status/674014384960745472/photo/1 https://twitter.com/dog_rates/status/674008982932058114/photo/1 https://twitter.com/dog_rates/status/673956914389192708/photo/1 https://twitter.com/dog_rates/status/673919437611909120/photo/1 https://twitter.com/dog_rates/status/673906403526995968/photo/1 https://twitter.com/dog_rates/status/673887867907739649/photo/1,https://twitter.com/dog_rates/status/673887867907739649/photo/1 NaN https://twitter.com/dog_rates/status/673715861853720576/photo/1 https://twitter.com/dog_rates/status/673711475735838725/photo/1 https://twitter.com/dog_rates/status/673709992831262724/photo/1 https://twitter.com/dog_rates/status/673708611235921920/photo/1 https://twitter.com/dog_rates/status/673707060090052608/photo/1,https://twitter.com/dog_rates/status/673707060090052608/photo/1 https://twitter.com/dog_rates/status/673705679337693185/photo/1 https://twitter.com/dog_rates/status/673700254269775872/photo/1 https://twitter.com/dog_rates/status/673697980713705472/photo/1,https://twitter.com/dog_rates/status/673697980713705472/photo/1 https://twitter.com/dog_rates/status/673689733134946305/photo/1,https://twitter.com/dog_rates/status/673689733134946305/photo/1 https://twitter.com/dog_rates/status/673688752737402881/photo/1 https://twitter.com/dog_rates/status/673686845050527744/photo/1 https://twitter.com/dog_rates/status/673680198160809984/photo/1 https://twitter.com/dog_rates/status/673662677122719744/photo/1 https://twitter.com/dog_rates/status/673656262056419329/photo/1 https://twitter.com/dog_rates/status/673636718965334016/photo/1 https://twitter.com/dog_rates/status/673612854080196609/photo/1 https://twitter.com/dog_rates/status/673583129559498752/photo/1 https://twitter.com/dog_rates/status/673580926094458881/photo/1 https://twitter.com/dog_rates/status/673576835670777856/photo/1 https://twitter.com/dog_rates/status/673363615379013632/photo/1 https://twitter.com/dog_rates/status/673359818736984064/photo/1 https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1 https://twitter.com/dog_rates/status/673352124999274496/photo/1 https://twitter.com/dog_rates/status/673350198937153538/photo/1 https://twitter.com/dog_rates/status/673345638550134785/photo/1 https://twitter.com/dog_rates/status/673343217010679808/photo/1 https://twitter.com/dog_rates/status/673342308415348736/photo/1 https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 https://twitter.com/dog_rates/status/673317986296586240/photo/1,https://twitter.com/dog_rates/status/673317986296586240/photo/1 https://twitter.com/dog_rates/status/673295268553605120/photo/1 https://twitter.com/dog_rates/status/673270968295534593/photo/1 https://twitter.com/dog_rates/status/673240798075449344/photo/1 https://twitter.com/dog_rates/status/673213039743795200/photo/1 https://twitter.com/dog_rates/status/673148804208660480/photo/1 https://twitter.com/dog_rates/status/672997845381865473/photo/1 https://twitter.com/dog_rates/status/672995267319328768/photo/1 https://twitter.com/dog_rates/status/672988786805112832/photo/1 https://twitter.com/dog_rates/status/672984142909456390/photo/1 https://twitter.com/dog_rates/status/672980819271634944/photo/1 https://twitter.com/dog_rates/status/672975131468300288/photo/1 https://twitter.com/dog_rates/status/672970152493887488/photo/1 https://twitter.com/dog_rates/status/672968025906282496/photo/1 https://twitter.com/dog_rates/status/672964561327235073/photo/1 https://twitter.com/dog_rates/status/672902681409806336/photo/1 https://twitter.com/dog_rates/status/672898206762672129/photo/1 https://twitter.com/dog_rates/status/672884426393653248/photo/1 https://twitter.com/dog_rates/status/672877615439593473/photo/1 https://twitter.com/dog_rates/status/672834301050937345/photo/1 https://twitter.com/dog_rates/status/672828477930868736/photo/1 https://twitter.com/dog_rates/status/672640509974827008/photo/1 https://twitter.com/dog_rates/status/672622327801233409/photo/1 https://twitter.com/dog_rates/status/672614745925664768/photo/1 https://twitter.com/dog_rates/status/672609152938721280/photo/1 https://twitter.com/dog_rates/status/672604026190569472/photo/1 https://twitter.com/dog_rates/status/672594978741354496/photo/1 https://twitter.com/dog_rates/status/672591762242805761/photo/1 https://twitter.com/dog_rates/status/672591271085670400/photo/1 https://twitter.com/dog_rates/status/672538107540070400/photo/1 https://twitter.com/dog_rates/status/672523490734551040/photo/1 https://twitter.com/dog_rates/status/672488522314567680/photo/1 https://twitter.com/dog_rates/status/672482722825261057/photo/1 https://twitter.com/dog_rates/status/672481316919734272/photo/1 https://twitter.com/dog_rates/status/672475084225949696/photo/1 https://twitter.com/dog_rates/status/672466075045466113/photo/1 https://twitter.com/dog_rates/status/672272411274932228/photo/1,https://twitter.com/dog_rates/status/672272411274932228/photo/1 https://twitter.com/dog_rates/status/672267570918129665/photo/1 https://twitter.com/dog_rates/status/672264251789176834/photo/1 https://twitter.com/dog_rates/status/672256522047614977/photo/1 https://twitter.com/dog_rates/status/672254177670729728/photo/1 https://twitter.com/dog_rates/status/672248013293752320/photo/1 https://twitter.com/dog_rates/status/672245253877968896/photo/1 https://twitter.com/dog_rates/status/672239279297454080/photo/1 https://twitter.com/dog_rates/status/672231046314901505/photo/1 https://twitter.com/dog_rates/status/672222792075620352/photo/1 https://twitter.com/dog_rates/status/672205392827572224/photo/1 https://twitter.com/dog_rates/status/672169685991993344/photo/1 https://twitter.com/dog_rates/status/672160042234327040/photo/1 https://twitter.com/dog_rates/status/672139350159835138/photo/1 https://twitter.com/dog_rates/status/672125275208069120/photo/1 https://twitter.com/dog_rates/status/672095186491711488/photo/1 https://twitter.com/dog_rates/status/672082170312290304/photo/1 https://twitter.com/dog_rates/status/672068090318987265/photo/1 https://twitter.com/dog_rates/status/671896809300709376/photo/1 https://twitter.com/dog_rates/status/671891728106971137/photo/1 https://twitter.com/dog_rates/status/671882082306625538/photo/1 https://twitter.com/dog_rates/status/671879137494245376/photo/1 https://twitter.com/dog_rates/status/671874878652489728/photo/1,https://twitter.com/dog_rates/status/671874878652489728/photo/1 https://twitter.com/dog_rates/status/671866342182637568/photo/1 https://twitter.com/dog_rates/status/671855973984772097/photo/1 https://twitter.com/dog_rates/status/671789708968640512/photo/1 https://twitter.com/dog_rates/status/671768281401958400/photo/1,https://twitter.com/dog_rates/status/671768281401958400/photo/1 https://twitter.com/dog_rates/status/671763349865160704/photo/1 https://twitter.com/dog_rates/status/671744970634719232/photo/1 https://twitter.com/dog_rates/status/671743150407421952/photo/1 https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1 https://twitter.com/dog_rates/status/671729906628341761/photo/1 https://twitter.com/dog_rates/status/671561002136281088/photo/1 NaN https://twitter.com/dog_rates/status/671547767500775424/photo/1,https://twitter.com/dog_rates/status/671547767500775424/photo/1 https://twitter.com/dog_rates/status/671544874165002241/photo/1 https://twitter.com/dog_rates/status/671542985629241344/photo/1 https://twitter.com/dog_rates/status/671538301157904385/photo/1 https://twitter.com/dog_rates/status/671536543010570240/photo/1 https://twitter.com/dog_rates/status/671533943490011136/photo/1 https://twitter.com/dog_rates/status/671528761649688577/photo/1 https://twitter.com/dog_rates/status/671520732782923777/photo/1 https://twitter.com/dog_rates/status/671518598289059840/photo/1 https://twitter.com/dog_rates/status/671511350426865664/photo/1 https://twitter.com/dog_rates/status/671504605491109889/photo/1,https://twitter.com/dog_rates/status/671504605491109889/photo/1 https://twitter.com/dog_rates/status/671497587707535361/photo/1 https://twitter.com/dog_rates/status/671488513339211776/photo/1 https://twitter.com/dog_rates/status/671486386088865792/photo/1 https://twitter.com/dog_rates/status/671485057807351808/photo/1 https://twitter.com/dog_rates/status/671390180817915904/photo/1 https://twitter.com/dog_rates/status/671362598324076544/photo/1 https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1 https://twitter.com/dog_rates/status/671355857343524864/photo/1 https://twitter.com/dog_rates/status/671347597085433856/photo/1,https://twitter.com/dog_rates/status/671347597085433856/photo/1 https://twitter.com/dog_rates/status/671186162933985280/photo/1 https://twitter.com/dog_rates/status/671182547775299584/photo/1 https://twitter.com/dog_rates/status/671166507850801152/photo/1 https://twitter.com/dog_rates/status/671163268581498880/photo/1 https://twitter.com/dog_rates/status/671159727754231808/photo/1 https://twitter.com/dog_rates/status/671154572044468225/photo/1 https://twitter.com/dog_rates/status/671151324042559489/photo/1 https://twitter.com/dog_rates/status/671147085991960577/photo/1 https://twitter.com/dog_rates/status/671141549288370177/photo/1 https://twitter.com/dog_rates/status/671138694582165504/photo/1 https://twitter.com/dog_rates/status/671134062904504320/photo/1 https://twitter.com/dog_rates/status/671122204919246848/photo/1 https://twitter.com/dog_rates/status/671115716440031232/photo/1 https://twitter.com/dog_rates/status/671109016219725825/photo/1 https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1 https://twitter.com/dog_rates/status/670842764863651840/photo/1 https://twitter.com/dog_rates/status/670840546554966016/photo/1 https://twitter.com/dog_rates/status/670838202509447168/photo/1 https://twitter.com/dog_rates/status/670833812859932673/photo/1 https://twitter.com/dog_rates/status/670832455012716544/photo/1 https://twitter.com/dog_rates/status/670826280409919488/photo/1 https://twitter.com/dog_rates/status/670823764196741120/photo/1 https://twitter.com/dog_rates/status/670822709593571328/photo/1 https://twitter.com/dog_rates/status/670815497391357952/photo/1 https://twitter.com/dog_rates/status/670811965569282048/photo/1 https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1 https://twitter.com/dog_rates/status/670804601705242624/photo/1 https://twitter.com/dog_rates/status/670803562457407488/photo/1 https://twitter.com/dog_rates/status/670797304698376195/photo/1 https://twitter.com/dog_rates/status/670792680469889025/photo/1 https://twitter.com/dog_rates/status/670789397210615808/photo/1 https://twitter.com/dog_rates/status/670786190031921152/photo/1 https://twitter.com/dog_rates/status/670783437142401025/photo/1 https://twitter.com/dog_rates/status/670782429121134593/photo/1 https://twitter.com/dog_rates/status/670780561024270336/photo/1 https://twitter.com/dog_rates/status/670778058496974848/photo/1 https://twitter.com/dog_rates/status/670764103623966721/photo/1 https://twitter.com/dog_rates/status/670755717859713024/photo/1 https://twitter.com/dog_rates/status/670733412878163972/photo/1 https://twitter.com/dog_rates/status/670727704916926465/photo/1 https://twitter.com/dog_rates/status/670717338665226240/photo/1 https://twitter.com/dog_rates/status/670704688707301377/photo/1 https://twitter.com/dog_rates/status/670691627984359425/photo/1 https://twitter.com/dog_rates/status/670679630144274432/photo/1 https://twitter.com/dog_rates/status/670676092097810432/photo/1 https://twitter.com/dog_rates/status/670668383499735048/photo/1 https://twitter.com/dog_rates/status/670474236058800128/photo/1 https://twitter.com/dog_rates/status/670468609693655041/photo/1 https://twitter.com/dog_rates/status/670465786746662913/photo/1 https://twitter.com/dog_rates/status/670452855871037440/photo/1 https://twitter.com/dog_rates/status/670449342516494336/photo/1 https://twitter.com/dog_rates/status/670444955656130560/photo/1 https://twitter.com/dog_rates/status/670442337873600512/photo/1 https://twitter.com/dog_rates/status/670435821946826752/photo/1 https://twitter.com/dog_rates/status/670434127938719744/photo/1 https://twitter.com/dog_rates/status/670433248821026816/photo/1 https://twitter.com/dog_rates/status/670428280563085312/photo/1 https://twitter.com/dog_rates/status/670427002554466305/photo/1 https://twitter.com/dog_rates/status/670421925039075328/photo/1 https://twitter.com/dog_rates/status/670420569653809152/photo/1 https://twitter.com/dog_rates/status/670417414769758208/photo/1 https://twitter.com/dog_rates/status/670411370698022913/photo/1 https://twitter.com/dog_rates/status/670408998013820928/photo/1 https://twitter.com/dog_rates/status/670403879788544000/photo/1 https://twitter.com/dog_rates/status/670385711116361728/photo/1 https://twitter.com/dog_rates/status/670374371102445568/photo/1 https://twitter.com/dog_rates/status/670361874861563904/photo/1 https://twitter.com/dog_rates/status/670338931251150849/photo/1 https://twitter.com/dog_rates/status/670319130621435904/photo/1 https://twitter.com/dog_rates/status/670303360680108032/photo/1 https://twitter.com/dog_rates/status/670290420111441920/photo/1 https://twitter.com/dog_rates/status/670093938074779648/photo/1 https://twitter.com/dog_rates/status/670086499208155136/photo/1 https://twitter.com/dog_rates/status/670079681849372674/photo/1 https://twitter.com/dog_rates/status/670073503555706880/photo/1 https://twitter.com/dog_rates/status/670069087419133954/photo/1 https://twitter.com/dog_rates/status/670061506722140161/photo/1 https://twitter.com/dog_rates/status/670055038660800512/photo/1 https://twitter.com/dog_rates/status/670046952931721218/photo/1 https://twitter.com/dog_rates/status/670040295598354432/photo/1 https://twitter.com/dog_rates/status/670037189829525505/photo/1 https://twitter.com/dog_rates/status/670003130994700288/photo/1 https://twitter.com/dog_rates/status/669993076832759809/photo/1 https://twitter.com/dog_rates/status/669972011175813120/photo/1 https://twitter.com/dog_rates/status/669970042633789440/photo/1 https://twitter.com/dog_rates/status/669942763794931712/photo/1 https://twitter.com/dog_rates/status/669926384437997569/photo/1 https://twitter.com/dog_rates/status/669923323644657664/photo/1 https://twitter.com/dog_rates/status/669753178989142016/photo/1 https://twitter.com/dog_rates/status/669749430875258880/photo/1 NaN https://twitter.com/dog_rates/status/669683899023405056/photo/1 https://twitter.com/dog_rates/status/669682095984410625/photo/1 https://twitter.com/dog_rates/status/669680153564442624/photo/1 https://twitter.com/dog_rates/status/669661792646373376/photo/1 https://twitter.com/dog_rates/status/669625907762618368/photo/1 https://twitter.com/dog_rates/status/669603084620980224/photo/1 https://twitter.com/dog_rates/status/669597912108789760/photo/1 https://twitter.com/dog_rates/status/669583744538451968/photo/1 https://twitter.com/dog_rates/status/669573570759163904/photo/1 https://twitter.com/dog_rates/status/669571471778410496/photo/1 https://twitter.com/dog_rates/status/669567591774625800/photo/1 https://twitter.com/dog_rates/status/669564461267722241/photo/1 https://twitter.com/dog_rates/status/669393256313184256/photo/1 https://twitter.com/dog_rates/status/669375718304980992/photo/1 https://twitter.com/dog_rates/status/669371483794317312/photo/1 https://twitter.com/dog_rates/status/669367896104181761/photo/1 https://twitter.com/dog_rates/status/669363888236994561/photo/1 https://twitter.com/dog_rates/status/669359674819481600/photo/1 https://twitter.com/dog_rates/status/669354382627049472/photo/1 https://twitter.com/dog_rates/status/669353438988365824/photo/1 https://twitter.com/dog_rates/status/669351434509529089/photo/1 https://twitter.com/dog_rates/status/669328503091937280/photo/1 https://twitter.com/dog_rates/status/669327207240699904/photo/1 https://twitter.com/dog_rates/status/669324657376567296/photo/1 https://twitter.com/dog_rates/status/669216679721873412/photo/1 https://twitter.com/dog_rates/status/669214165781868544/photo/1 https://twitter.com/dog_rates/status/669203728096960512/photo/1 https://twitter.com/dog_rates/status/669037058363662336/photo/1 https://twitter.com/dog_rates/status/669015743032369152/photo/1 https://twitter.com/dog_rates/status/669006782128353280/photo/1 https://twitter.com/dog_rates/status/669000397445533696/photo/1 https://twitter.com/dog_rates/status/668994913074286592/photo/1 https://twitter.com/dog_rates/status/668992363537309700/photo/1 https://twitter.com/dog_rates/status/668989615043424256/photo/1 https://twitter.com/dog_rates/status/668988183816871936/photo/1 https://twitter.com/dog_rates/status/668986018524233728/photo/1 https://twitter.com/dog_rates/status/668981893510119424/photo/1 https://twitter.com/dog_rates/status/668979806671884288/photo/1 https://twitter.com/dog_rates/status/668975677807423489/photo/1 NaN https://twitter.com/dog_rates/status/668960084974809088/photo/1 https://twitter.com/dog_rates/status/668955713004314625/photo/1 https://twitter.com/dog_rates/status/668932921458302977/photo/1 https://twitter.com/dog_rates/status/668902994700836864/photo/1 https://twitter.com/dog_rates/status/668892474547511297/photo/1 https://twitter.com/dog_rates/status/668872652652679168/photo/1 https://twitter.com/dog_rates/status/668852170888998912/photo/1 https://twitter.com/dog_rates/status/668826086256599040/photo/1 https://twitter.com/dog_rates/status/668815180734689280/photo/1 https://twitter.com/dog_rates/status/668779399630725120/photo/1 https://twitter.com/dog_rates/status/668655139528511488/photo/1 https://twitter.com/dog_rates/status/668645506898350081/photo/1 https://twitter.com/dog_rates/status/668643542311546881/photo/1 https://twitter.com/dog_rates/status/668641109086707712/photo/1 https://twitter.com/dog_rates/status/668636665813057536/photo/1 https://twitter.com/dog_rates/status/668633411083464705/photo/1,https://twitter.com/dog_rates/status/668633411083464705/photo/1 https://twitter.com/dog_rates/status/668631377374486528/photo/1 https://twitter.com/dog_rates/status/668627278264475648/photo/1 https://twitter.com/dog_rates/status/668625577880875008/photo/1 https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1 https://twitter.com/dog_rates/status/668620235289837568/photo/1 https://twitter.com/dog_rates/status/668614819948453888/photo/1 https://vine.co/v/ea0OwvPTx9l https://twitter.com/dog_rates/status/668567822092664832/photo/1 https://twitter.com/dog_rates/status/668544745690562560/photo/1 https://twitter.com/dog_rates/status/668542336805281792/photo/1 https://twitter.com/dog_rates/status/668537837512433665/photo/1 https://twitter.com/dog_rates/status/668528771708952576/photo/1 https://twitter.com/dog_rates/status/668507509523615744/photo/1 https://twitter.com/dog_rates/status/668496999348633600/photo/1 https://twitter.com/dog_rates/status/668484198282485761/photo/1 https://twitter.com/dog_rates/status/668480044826800133/photo/1 https://twitter.com/dog_rates/status/668466899341221888/photo/1 https://twitter.com/dog_rates/status/668297328638447616/photo/1 https://twitter.com/dog_rates/status/668291999406125056/photo/1 https://twitter.com/dog_rates/status/668286279830867968/photo/1 https://twitter.com/dog_rates/status/668274247790391296/photo/1 https://twitter.com/dog_rates/status/668268907921326080/photo/1 https://twitter.com/dog_rates/status/668256321989451776/photo/1 https://twitter.com/dog_rates/status/668248472370458624/photo/1 https://twitter.com/dog_rates/status/668237644992782336/photo/1 https://twitter.com/dog_rates/status/668226093875376128/photo/1 https://twitter.com/dog_rates/status/668221241640230912/photo/1 https://twitter.com/dog_rates/status/668204964695683073/photo/1 https://twitter.com/dog_rates/status/668190681446379520/photo/1 https://twitter.com/dog_rates/status/668171859951755264/photo/1 https://twitter.com/dog_rates/status/668154635664932864/photo/1 https://twitter.com/dog_rates/status/668142349051129856/photo/1 https://twitter.com/dog_rates/status/668113020489474048/photo/1 https://twitter.com/dog_rates/status/667937095915278337/photo/1 https://twitter.com/dog_rates/status/667924896115245057/photo/1 https://twitter.com/dog_rates/status/667915453470232577/photo/1 https://twitter.com/dog_rates/status/667911425562669056/photo/1 https://twitter.com/dog_rates/status/667902449697558528/photo/1 https://twitter.com/dog_rates/status/667886921285246976/photo/1 https://twitter.com/dog_rates/status/667885044254572545/photo/1 https://twitter.com/dog_rates/status/667878741721415682/photo/1 https://twitter.com/dog_rates/status/667873844930215936/photo/1 https://twitter.com/dog_rates/status/667866724293877760/photo/1 https://twitter.com/dog_rates/status/667861340749471744/photo/1 https://twitter.com/dog_rates/status/667832474953625600/photo/1 https://twitter.com/dog_rates/status/667806454573760512/photo/1 https://twitter.com/dog_rates/status/667801013445750784/photo/1 https://twitter.com/dog_rates/status/667793409583771648/photo/1 https://twitter.com/dog_rates/status/667782464991965184/photo/1 https://twitter.com/dog_rates/status/667773195014021121/photo/1 https://twitter.com/dog_rates/status/667766675769573376/photo/1 https://twitter.com/dog_rates/status/667728196545200128/photo/1 https://twitter.com/dog_rates/status/667724302356258817/photo/1 https://twitter.com/dogratingrating/status/667548695664070656/photo/1,https://twitter.com/dogratingrating/status/667548695664070656/photo/1 https://twitter.com/dogratingrating/status/667548415174144001/photo/1,https://twitter.com/dogratingrating/status/667548415174144001/photo/1 https://twitter.com/dog_rates/status/667549055577362432/photo/1 https://twitter.com/dog_rates/status/667546741521195010/photo/1 https://twitter.com/dog_rates/status/667544320556335104/photo/1 https://twitter.com/dog_rates/status/667538891197542400/photo/1 https://twitter.com/dog_rates/status/667534815156183040/photo/1 https://twitter.com/dog_rates/status/667530908589760512/photo/1 https://twitter.com/dog_rates/status/667524857454854144/photo/1 https://twitter.com/dog_rates/status/667517642048163840/photo/1 https://twitter.com/dog_rates/status/667509364010450944/photo/1 https://twitter.com/dog_rates/status/667502640335572993/photo/1 https://twitter.com/dog_rates/status/667495797102141441/photo/1 https://twitter.com/dog_rates/status/667491009379606528/photo/1 https://twitter.com/dog_rates/status/667470559035432960/photo/1 https://twitter.com/dog_rates/status/667455448082227200/photo/1 https://twitter.com/dog_rates/status/667453023279554560/photo/1 https://twitter.com/dog_rates/status/667443425659232256/photo/1 https://twitter.com/dog_rates/status/667437278097252352/photo/1 https://twitter.com/dog_rates/status/667435689202614272/photo/1 https://twitter.com/dog_rates/status/667405339315146752/photo/1 https://twitter.com/dog_rates/status/667393430834667520/photo/1 https://twitter.com/dog_rates/status/667369227918143488/photo/1 https://twitter.com/dog_rates/status/667211855547486208/photo/1 https://twitter.com/dog_rates/status/667200525029539841/photo/1 https://twitter.com/dog_rates/status/667192066997374976/photo/1 https://twitter.com/dog_rates/status/667188689915760640/photo/1 https://twitter.com/dog_rates/status/667182792070062081/photo/1 https://twitter.com/dog_rates/status/667177989038297088/photo/1 https://twitter.com/dog_rates/status/667176164155375616/photo/1 https://twitter.com/dog_rates/status/667174963120574464/photo/1 https://twitter.com/dog_rates/status/667171260800061440/photo/1 https://twitter.com/dog_rates/status/667165590075940865/photo/1 https://twitter.com/dog_rates/status/667160273090932737/photo/1 https://twitter.com/dog_rates/status/667152164079423490/photo/1 https://twitter.com/dog_rates/status/667138269671505920/photo/1 https://twitter.com/dog_rates/status/667119796878725120/photo/1 https://twitter.com/dog_rates/status/667090893657276420/photo/1 https://twitter.com/dog_rates/status/667073648344346624/photo/1 NaN https://twitter.com/dog_rates/status/667065535570550784/photo/1 https://twitter.com/dog_rates/status/667062181243039745/photo/1 https://twitter.com/dog_rates/status/667044094246576128/photo/1 https://twitter.com/dog_rates/status/667012601033924608/photo/1 https://twitter.com/dog_rates/status/666996132027977728/photo/1 https://twitter.com/dog_rates/status/666983947667116034/photo/1 https://twitter.com/dog_rates/status/666837028449972224/photo/1 https://twitter.com/dog_rates/status/666835007768551424/photo/1 https://twitter.com/dog_rates/status/666826780179869698/photo/1 https://twitter.com/dog_rates/status/666817836334096384/photo/1 https://twitter.com/dog_rates/status/666804364988780544/photo/1 https://twitter.com/dog_rates/status/666786068205871104/photo/1 https://twitter.com/dog_rates/status/666781792255496192/photo/1 https://twitter.com/dog_rates/status/666776908487630848/photo/1 https://twitter.com/dog_rates/status/666739327293083650/photo/1 https://twitter.com/dog_rates/status/666701168228331520/photo/1 https://twitter.com/dog_rates/status/666691418707132416/photo/1 https://twitter.com/dog_rates/status/666649482315059201/photo/1 https://twitter.com/dog_rates/status/666644823164719104/photo/1 https://twitter.com/dog_rates/status/666454714377183233/photo/1 https://twitter.com/dog_rates/status/666447344410484738/photo/1 https://twitter.com/dog_rates/status/666437273139982337/photo/1 https://twitter.com/dog_rates/status/666435652385423360/photo/1 https://twitter.com/dog_rates/status/666430724426358785/photo/1 https://twitter.com/dog_rates/status/666428276349472768/photo/1 https://twitter.com/dog_rates/status/666421158376562688/photo/1 https://twitter.com/dog_rates/status/666418789513326592/photo/1 https://twitter.com/dog_rates/status/666411507551481857/photo/1 https://twitter.com/dog_rates/status/666407126856765440/photo/1 https://twitter.com/dog_rates/status/666396247373291520/photo/1 https://twitter.com/dog_rates/status/666373753744588802/photo/1 https://twitter.com/dog_rates/status/666362758909284353/photo/1 https://twitter.com/dog_rates/status/666353288456101888/photo/1 https://twitter.com/dog_rates/status/666345417576210432/photo/1 https://twitter.com/dog_rates/status/666337882303524864/photo/1 https://twitter.com/dog_rates/status/666293911632134144/photo/1 https://twitter.com/dog_rates/status/666287406224695296/photo/1 https://twitter.com/dog_rates/status/666273097616637952/photo/1 https://twitter.com/dog_rates/status/666268910803644416/photo/1 https://twitter.com/dog_rates/status/666104133288665088/photo/1 https://twitter.com/dog_rates/status/666102155909144576/photo/1 https://twitter.com/dog_rates/status/666099513787052032/photo/1 https://twitter.com/dog_rates/status/666094000022159362/photo/1 https://twitter.com/dog_rates/status/666082916733198337/photo/1 https://twitter.com/dog_rates/status/666073100786774016/photo/1 https://twitter.com/dog_rates/status/666071193221509120/photo/1 https://twitter.com/dog_rates/status/666063827256086533/photo/1 https://twitter.com/dog_rates/status/666058600524156928/photo/1 https://twitter.com/dog_rates/status/666057090499244032/photo/1 https://twitter.com/dog_rates/status/666055525042405380/photo/1 https://twitter.com/dog_rates/status/666051853826850816/photo/1 https://twitter.com/dog_rates/status/666050758794694657/photo/1 https://twitter.com/dog_rates/status/666049248165822465/photo/1 https://twitter.com/dog_rates/status/666044226329800704/photo/1 https://twitter.com/dog_rates/status/666033412701032449/photo/1 https://twitter.com/dog_rates/status/666029285002620928/photo/1 https://twitter.com/dog_rates/status/666020888022790149/photo/1
rating_numerator 13 13 12 13 12 13 13 13 13 14 13 13 13 12 13 13 12 13 13 13 12 13 14 13 13 12 13 13 13 12 12 13 12 12 13 14 13 13 12 13 13 14 13 12 12 5 13 13 13 12 13 13 13 12 13 17 14 12 13 12 12 12 11 13 14 12 13 12 14 11 13 13 13 13 11 13 14 13 14 12 13 12 12 14 13 13 13 13 13 12 12 12 13 12 13 14 13 12 12 12 13 14 13 12 13 12 13 12 12 12 14 13 11 10 13 13 13 14 12 13 13 12 13 14 12 13 12 12 13 12 13 13 13 13 12 13 12 12 13 13 13 14 12 13 13 13 13 12 12 14 13 13 11 13 13 13 13 13 12 13 13 13 13 12 14 10 12 13 13 12 13 12 13 13 12 12 13 13 13 12 13 12 13 12 14 14 14 14 420 666 13 13 13 12 12 14 12 13 13 14 11 12 13 13 13 12 12 13 13 14 12 13 10 11 14 13 11 13 13 11 12 12 12 12 11 13 12 12 11 6 11 13 10 12 13 12 12 11 11 13 13 11 13 13 12 13 12 12 13 12 12 13 12 13 11 12 13 12 11 13 13 13 12 13 12 12 13 12 14 12 13 12 12 12 10 10 12 13 12 13 12 10 13 13 13 15 13 13 13 13 182 15 13 12 13 12 13 13 14 12 12 11 11 13 12 13 13 12 11 12 13 12 12 960 12 0 12 13 13 12 12 12 11 10 12 12 13 12 13 13 12 13 12 13 13 10 12 12 11 14 75 13 11 12 12 12 12 14 13 13 13 12 13 12 12 12 13 12 13 12 12 12 11 13 12 13 12 13 10 14 12 12 14 13 12 12 13 11 12 12 13 12 12 13 12 13 10 7 13 12 11 13 13 11 12 14 13 12 12 11 12 13 13 11 14 12 12 12 11 13 11 11 12 13 12 13 12 13 14 11 11 13 12 13 13 12 14 13 12 11 12 12 13 84 14 13 14 12 13 13 11 11 13 12 10 12 14 14 14 14 11 13 12 11 11 13 12 11 12 13 13 12 7 13 11 13 13 13 11 12 12 12 13 11 12 11 11 11 13 12 11 12 13 11 12 9 12 12 11 11 14 12 13 11 13 12 12 13 12 11 12 11 11 12 13 10 10 12 13 12 13 11 13 11 10 11 24 11 11 13 12 10 12 12 12 11 13 12 12 11 13 12 12 14 13 12 12 13 12 13 11 12 11 10 12 12 12 13 12 12 12 13 13 13 12 13 13 12 11 11 12 12 11 12 13 11 13 12 13 12 11 12 10 13 11 12 11 11 12 11 12 11 12 11 13 11 13 13 12 14 11 11 12 11 11 10 10 12 11 8 13 10 10 12 10 1 11 13 12 12 12 11 11 12 11 13 12 12 11 11 13 11 12 13 13 12 11 12 12 12 12 14 12 13 13 12 12 13 12 12 13 11 10 12 11 12 11 13 11 13 12 12 12 11 13 12 11 14 13 12 12 11 12 12 12 12 11 12 11 11 12 12 13 13 12 12 13 12 10 12 11 12 13 11 13 13 11 12 11 13 11 10 12 12 11 75 12 11 13 12 11 13 11 12 12 10 11 10 12 11 13 11 12 12 12 13 12 12 11 13 11 12 11 12 11 10 11 12 12 11 5 11 12 12 11 10 13 10 11 12 12 12 12 11 11 8 10 11 12 11 12 13 11 13 13 11 10 11 14 10 13 11 12 27 8 3 12 12 12 12 13 12 11 11 13 10 11 10 12 12 11 13 11 12 9 13 12 10 14 11 12 12 10 11 11 12 10 12 11 11 10 10 12 10 12 10 11 13 11 12 11 11 11 12 7 12 10 11 13 11 11 10 12 10 12 13 13 12 12 10 11 10 12 12 11 8 10 11 12 13 13 10 10 13 11 9 12 12 12 11 12 12 13 11 10 12 10 12 11 8 8 10 11 12 12 11 14 12 10 11 10 11 13 10 11 10 11 11 11 12 12 12 13 4 10 11 12 10 11 12 10 10 11 10 12 11 7 11 11 13 12 11 165 10 11 13 9 10 11 11 12 11 4 13 10 8 11 12 11 13 11 12 10 12 14 13 11 11 12 10 11 10 12 10 11 12 8 12 11 13 10 12 11 11 10 10 9 11 8 13 12 13 11 12 11 13 5 10 12 10 12 10 11 12 8 12 9 13 13 11 10 11 12 10 11 13 10 11 12 1776 12 11 10 10 12 11 11 8 10 13 13 11 10 6 12 10 13 11 7 13 10 11 8 11 4 12 12 10 11 10 10 12 13 11 10 11 0 11 13 10 11 12 11 10 10 9 10 11 10 7 10 9 12 11 12 9 12 10 11 13 12 11 10 10 10 7 11 13 10 12 10 11 10 14 12 11 12 8 10 11 9 12 11 12 10 9 8 11 9 10 9 10 12 10 12 12 9 10 6 13 13 11 10 11 10 9 12 10 10 10 11 13 9 13 13 13 11 10 10 11 12 11 11 8 9 10 13 11 10 10 10 10 11 12 12 11 10 11 11 12 204 9 10 11 11 6 11 12 13 13 10 11 13 10 8 10 12 11 12 11 12 13 10 11 9 10 11 12 10 12 9 12 11 12 13 12 11 10 10 10 11 12 12 10 8 4 12 11 11 12 10 10 11 10 9 11 10 12 10 11 10 11 10 12 10 11 10 9 13 3 11 11 10 11 11 9 12 10 10 11 12 13 50 12 11 11 13 10 11 10 12 11 10 10 12 12 9 12 10 4 12 10 10 8 13 10 12 12 99 12 11 10 10 10 10 10 11 12 10 7 11 6 12 10 11 10 13 9 11 3 11 12 10 12 80 12 12 12 11 11 13 11 8 11 12 12 12 12 12 9 10 8 11 11 45 13 10 9 8 9 10 10 11 11 13 11 12 10 11 10 11 9 10 13 12 12 11 11 10 12 7 10 12 4 11 10 9 10 10 11 10 12 11 13 3 12 9 10 11 12 12 12 11 11 12 7 13 10 12 10 11 11 12 12 11 11 9 10 12 12 10 12 7 13 12 13 11 12 10 12 8 60 10 10 11 10 9 10 12 9 12 11 10 6 12 11 10 11 12 13 12 11 9 12 11 11 11 10 9 10 12 11 12 10 7 11 10 12 6 10 11 10 6 10 9 11 12 10 11 5 12 12 10 11 11 10 3 8 12 12 13 13 11 10 10 7 12 9 10 11 11 9 10 11 11 10 10 8 11 11 8 9 11 44 10 8 10 10 12 9 12 9 10 10 9 10 1 12 7 10 11 13 13 8 12 10 10 12 11 4 6 5 10 12 10 10 11 9 10 9 11 12 10 7 10 9 12 10 3 11 11 10 12 11 9 12 11 10 9 10 10 10 12 13 12 10 10 9 7 12 10 13 13 9 8 10 10 10 5 12 12 13 11 11 12 12 11 10 12 13 8 10 11 12 11 10 11 9 12 11 10 12 10 10 12 12 11 9 11 12 8 10 11 12 12 13 9 10 10 10 9 10 11 8 10 7 9 12 8 9 12 12 13 10 10 11 13 12 12 11 11 9 11 7 12 11 10 10 11 7 9 11 11 5 11 11 12 8 12 11 11 10 12 11 10 10 12 11 4 12 11 3 11 8 9 14 9 12 7 14 9 10 10 11 11 10 11 11 5 5 12 11 12 11 5 13 11 10 12 4 12 10 10 12 143 121 6 9 10 10 12 11 10 10 10 5 9 12 9 11 11 11 11 8 10 11 10 9 10 12 9 10 7 20 12 9 12 11 12 8 7 11 9 9 9 11 12 11 10 11 5 12 10 11 7 12 12 8 12 5 9 11 3 12 11 9 10 11 11 9 9 4 10 11 9 12 9 10 6 9 8 12 26 10 11 10 12 11 10 12 10 10 9 11 12 9 10 5 10 11 7 10 13 10 9 8 8 7 11 7 8 9 11 10 11 8 10 12 11 9 11 12 11 12 7 11 8 10 10 6 10 2 10 10 2 10 12 12 11 10 12 10 10 9 13 12 11 10 9 144 10 9 11 9 12 11 10 6 10 12 9 12 9 9 10 10 5 10 11 9 11 10 8 6 12 9 8 10 5 10 11 12 9 10 13 12 12 9 11 7 5 8 8 12 9 11 11 10 10 8 10 9 10 10 8 11 3 9 10 6 10 11 11 88 9 10 10 11 10 11 12 12 11 10 11 10 10 12 13 11 10 5 12 13 12 13 13 12 10 1 12 10 7 9 5 10 8 9 11 10 10 12 13 10 11 13 13 9 8 11 12 10 12 12 10 11 11 10 3 9 10 5 11 12 5 13 13 10 9 12 10 10 8 10 13 8 12 11 10 8 2 9 10 11 11 5 10 10 3 12 12 9 10 10 11 10 10 11 3 10 1 4 10 12 12 10 8 3 8 11 9 11 13 12 10 10 7 11 8 7 11 8 11 12 9 7 11 10 11 10 8 11 6 10 8 12 8 10 9 5 10 7 11 10 9 11 6 8 10 9 9 12 6 9 11 9 10 8 7 10 10 10 12 8 12 11 10 10 8 11 10 12 7 5 9 9 10 8 12 11 9 11 7 10 11 11 5 10 10 8 13 10 9 6 11 11 13 13 1 10 6 10 8 9 6 10 10 9 8 11 11 8 10 11 7 11 9 10 9 10 12 10 8 5 11 12 9 9 10 8 4 6 8 12 420 10 4 7 10 2 12 10 10 10 11 10 10 11 7 9 8 1 5 7 10 10 9 8 10 12 6 8 8 8 10 10 10 7 11 5 10 11 10 11 10 11 9 12 10 6 12 10 10 8 12 9 10 11 9 11 9 10 10 10 5 11 3 11 10 5 10 9 10 10 11 12 10 10 8 11 10 9 8 5 12 10 10 6 10 7 9 10 10 6 10 10 10 11 8 10 10 12 13 11 8 10 9 10 10 12 11 5 8 3 7 9 4 12 11 12 10 10 9 11 11 11 11 10 7 10 11 11 3 10 10 10 5 9 10 10 10 7 13 11 10 10 8 12 10 8 9 11 4 9 10 11 10 10 13 8 10 10 10 8 12 7 9 2 6 3 9 10 5 9 11 10 2 10 10 9 12 10 12 8 9 8 9 11 7 12 5 1 9 10 9 8 10 12 8 12 11 9 7 11 7 11 6 10 12 7 8 10 9 11 12 10 10 8 4 9 10 10 11 12 10 10 7 10 10 8 10 12 9 10 11 3 10 12 9 8 2 10 5 10 8 8 4 9 10 9 7 10 6 7 12 10 2 7 9 11 6 8 10 9 3 1 11 10 1 11 8 9 6 10 9 10 8 9 10 2 10 5 6 9 7 8
rating_denominator 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 0 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 15 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 70 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 150 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 170 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 20 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 50 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 90 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 80 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 50 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 50 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 40 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 20 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 130 110 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 16 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 120 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 80 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 2 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
name Phineas Tilly Archie Darla Franklin None Jax None Zoey Cassie Koda Bruno None Ted Stuart Oliver Jim Zeke Ralphus Canela Gerald Jeffrey such Canela None None Maya Mingus Derek Roscoe None Waffles None Jimbo Maisey None Lilly None Earl Lola Kevin None None Yogi Noah Bella Grizzwald None Rusty Gus Stanley Alfy Koko Rey Gary None a Elliot Louis None Bella Jesse None Romeo None Bailey Duddles Jack Emmy Steven Beau Snoopy None Shadow Terrance Shadow Emmy Aja None Penny Dante Nelly Ginger None Benedict Venti Goose Nugget None None Cash Coco Jed None Sebastian Walter None Sierra Sierra None None None Monkey None Harry Kody Lassie Rover Napolean Dawn None Boomer None None Cody Zoey Rumble Clifford quite Dewey Stanley Scout Gizmo Walter Cooper None Cooper None Harold Shikha None None Jamesy None Lili Jamesy Coco None Boomer Sammy Nelly None Meatball Paisley Albus Neptune Quinn Belle None None Quinn Zooey Dave Jersey None None Hobbes None Burt Lorenzo None Lorenzo Carl Jordy None None Milky Trooper None quite None Winston None Sophie Wyatt Rosie Thor None Oscar None None Zeke Luna Callie None None None Cermet None None None None None quite George None Marlee Arya Einstein None None Alice None Rumpole None Benny Aspen Jarod Wiggles General Sailor Astrid None None Iggy Snoop Kyle Leo None Riley Boomer None Gidget Noosh None Kevin None Odin None Jerry Charlie None Georgie Rontu None Cannon Furzey Daisy None Tuck Barney None Vixen None Jarvis None None None Mimosa Pickles Bungalo None Brady Luna Charlie Margo None Sadie Hank Tycho Stephan Charlie Indie Winnie George Bentley Ken Penny None None Max Dawn Maddie Pipsy None None Maddie None Monty Sojourner Winston None Odie None Arlo None Riley Walter Stanley Sunny None None Daisy None Waffles Vincent Lucy Clark None Mookie Meera Oliver None Buddy Ava Lucy None Rory Eli Lola None Ash Lola None None None Tucker Tobi None Leo Chester Wilson Sunshine None Lipton Bentley Charlie Gabby Bronte Poppy Gidget Rhino None Willow None not Orion Eevee Charlie Smiley Logan Moreton None Klein Miguel Emanuel None Kuyu Daisy None Dutch Pete None Scooter Tucker Reggie Lilly Kyro Samson Loki Mia Leo None Astrid Malcolm Dexter Gus Alfie Fiona one Mutt Bear Doobert Beebop Alexander None Sailer Brutus Kona Boots Tucker Ralphie Phil Charlie Loki Cupid None None Pawnd Pilot None None Ike Mo Toby None Sweet Pablo Pablo Bailey Scooter Wilson None Nala None Cash Balto Winston Crawford None Wyatt None Albus None Hobbes Paisley None Paisley Gabe None Mattie Jimison Hercules Duchess Harlso Sampson Sundance None Luca None Flash Finn Sunny None None Peaches None None Oliver Oliver None Howie Jazzy Anna None Finn Bo Sunny Sunny Bo Seamus Wafer Bear Chelsea Tom Moose Florence Autumn None Buddy Dido Eugene Herschel Ken Strudel None Tebow None Chloe Betty Timber Binky Moose Dudley Comet Jack Larry Jack None Levi Akumi Titan None Cooper Olivia Beau Alf Oshie Bruce Chubbs Gary Sky Atlas None None Eleanor Layla None None None Toby Rocky Baron Tyr Bauer Swagger Sammy Brandi None Mary Moe Ted Halo None Augie Craig Sam Hunter Pavlov Phil Gus None Maximus None Kyro Wallace Ito None Koda Seamus Milo None Cooper Ollie Stephan Cali Lennon None None None Waffles Dave incredibly Penny Major Duke Reginald Zeke Sansa Shooter Django None Rusty Bo Diogi None None Sonny Philbert Winston Marley None Bailey Winnie Severus None None Loki None Ronnie None Wallace None Milo Anakin Bones None None Mauve Chef None Sampson Doc Bo Peaches None Tucker Sobe Longfellow None Jeffrey Mister Iroh Shadow Baloo None Stubert None Jack None None Lola Paull None Timison None Davey Cooper None Cassie Pancake None Tyrone Tyr Romeo None None Snicku Ruby Ruby None None Yogi Daisy None Brody Bailey Rizzy Mack Butter Nimbus Laika Maximus Clark None Dobby Fiona Moreton Dave None Tucker Juno Maude Lily Newt Benji Nida None Robin a Bailey Monster BeBe Remus None None Maddie None None Levi Mabel Alfie Misty Betty Happy Mosby Duke Maggie Bruce Leela Happy Buddy Ralphy Eli Brownie Rizzy None Meyer Stella Bo Lucy Butter mad Dexter None Leo Bo None Frank Tonks Moose Lincoln Carl Rory Oakley Logan None Dale Rizzo Arnie Mattie None Scout Lucy Rusty Pinot Dallas None Doc Hero Rusty Frankie Stormy Reginald Balto Riley Mairi Loomis Finn Godi Kenny Dave Earl Cali Deacon Penny Timmy Sampson Harper Chipson None Combo None None Oakley None None Dash Koda Hercules None Bell None Bear None Hank None Scout None Hurley Reggie None Jay None None Mya Strider Penny None an Nala Stanley None Sophie Gerald Wesley None Arnie Derek Jeffrey None Solomon Huck very None O Sampson None None Blue Anakin None Finley Maximus None Tucker Finley Sprinkles None Winnie Heinrich Loki Shakespeare Chelsea Fizz Bungalo Chip Grey None Roosevelt Gromit a Willem None Jack Finn Penny None Davey Dakota Fizz Frankie Dixie Charlie None None Winston Sebastian None very Al Jackson just Carbon Klein Titan None DonDon Kirby None Jesse Lou Oakley Nollie Chevy Gerald Tito Philbert Louie None Rupert None Rufus None Brudge Shadoe Oscar Colby Juno Angel Brat Tove my Louie Gromit Aubie Kota None Alfie Clark Eve Belle Leela Glenn Buddy Scout None Shelby None None None Sephie None Bruce Bonaparte Albert Bo Wishes Rose Theo Atlas None Rocco Fido Sadie None None None Kirby Maggie None Emma Oakley None Luna None Toby Spencer Lilli None Boston Brandonald None Odie Corey None None Leonard Chompsky Beckham Cooper None None None None Devón Oliver Jax Gert None None None None None one Watson Rubio Winnie Keith Milo Dex None Charlie None None Scout Hank Carly Ace None Tayzie Carl Grizzie None None None None None None None Brody Lola Ruby Tucker Fred Toby None Max None Gilbert None Cooper Milo Meyer Malcolm Arnie Zoe None None Stewie Calvin Lilah Spanky None Jameson Beau Jax Piper Bo Atticus Lucy Finn None George Blu Boomer Winston Dietrich not Divine None Tripp his one Cora None None Duke None None None None a Huxley a None Keurig Bookstore None None None Linus None Atticus Clark None None a None None Maddie Abby None Shaggy Shiloh an Gustav Arlen Gus Percy Lenox very Sugar Jeffrey Oliver Abby Indie Harvey Blanket None actually Geno None None Stark Harold Bentley Beya Kilo a Kayla None Maxaroni None Bell Phil Doug Edmund None Aqua Tucker Theodore Ted just Leo None Chip Baloo None None Chase getting Nollie Rorie Simba None Benji None Kyle None None Charles None Bayley None None Axel Storkson Remy Bella None None Lily None Chadrick mad Rory very None Maxaroni None Dakota None Kellogg Buckley Jax None Livvie None Terry Moose None Hermione None Ralpher Aldrick None Kyle Larry Solomon this unacceptable Rooney Crystal Ziva Charles Ollie None Stefan Pupcasso None Puff None Flurpson Coleman Wallace Enchilada Raymond all Rueben Cilantro None None None None Karll None Sprout Blitz Bloop None Colby Lillie Lola None Fred None Ashleigh Kreggory Sarge Luther Sugar Reginald Ivar Jangle None Schnitzel Panda Oliver Archie Berkeley None Ralphé Derek Charleson Neptune None Clyde Harnold Sid Lucy Pippa Sadie Otis None Carper None Bowie None Alexanderson Suki Barclay None a Skittle Ebby Flávio Smokey Link Jennifur None Ozzy Bluebert Stephanus None Bubbles old a Bentley Toby Zeus Bertson Oscar Nico Michelangelope Siba Calbert None Curtis Benedict None Blitz Travis Thumas None None Kanu Doug None Piper None Lance Opie Stubert None Sunny Kane None None Steven Olive Chester None Winston Roosevelt None None Gary None None Chuckles Milo Staniel Sora None None Beemo Oshie Gunner infuriating None Lacy Tater None Watson None None Olaf Cecil Vince Karma Billy Walker Penny None Sammy Rodney Klevin Lucy None Malikai Mister Coco Smokey Bear Bobble None Oliver River Jebberson None Cooper Remington None Farfle None Rufus Sadie None None Jiminus None Harper Keurig None Clarkus None Finnegus Cassie Cupcake Kathmandu Tucker Ellie None Elliot Katie Shadow None Oliver None Koda None None Kara None Dexter Layla Adele Lucy Max None None Zara Cooper Ambrose Jimothy Bode Terrenth Reese None a None Chesterson None None None Lucia Bisquick Ralphson None Stanley a None None Bella Scooter None None Charlie Socks None a an Chip Luna Lucy Rambo Sansa a Rudy None None None Fiji Rilo Bilbo None Coopson Yoda Millie None Chet a Crouton Daniel very Vincent Kaia Murphy Dotsy None None Eazy Coops Thumas Cooper Nala None Fillup Dave Archie None None Miley Calbert None Charl Reagan None Yukon None Oliver CeCe None Cuddles Rusty None Claude Jessiga Maximus Franklin Beau Lily None Doug Cassie Carter None None None Ole Pherb Blipson None Bentley getting Charlie Oakley Rosie None None Misty Reptar Klevin Trevith None None None Berb None None Wyatt None Calvin None Bob Colin just Lorenzo None Brian None Archie Phil None Oliviér None Grady None Lola Chester None Kobe None None Freddery None None Phil None Lincoln Sadie Oscar None Bodie Dunkin None Milo None Wally None Tupawc None None Chester Amber Cody None Herschel a Edgar None Teddy Kingsley Brockly None None Richie None Leo Bailey None Molly None None None None None Buddy Peaches Vinscent Cedrick Hazel None Lolo Eriq Phred the Oddie Maxwell Geoff None None Covach None None Gizmo Durg Fynn Luca Ricky Lucy None None Carl None Chipson Herald Lucky Ferg None Trip None Clarence None Hamrick Brad None Pubert Frönq None Louis Derby Lizzie None Kilo None Louis None Trooper Ember Blakely Opal Marq None Curtis Kramer Barry Tyrone None Gordon Samson Baxter None None Jackson None None None Mona Olivia Horace None Crimson Birf None None Flávio None None None Hammond Lorelei the Olive None Marty Brooks Otis None None None Rocky None Petrick Hubertson Alfie Gerbald None Jerry Oreo Bruiser None Perry None None Theodore None None Bobby None Pippa Jeph Obi None None None Tino None Kulet Sweets None Lupe Sadie Tiger Jiminy None None Buddy Sebastian None Griffin Banjo None None Jack None Brandy Larry None None Lulu Darrel None None Taco None Joey None None Patrick Kreg Brody Todo Jax Samson None Tess None Ulysses None Jimothy Charlie Bo None Toffee None Apollo Carly None Asher Glacier Chuck actually Sarge Panda Champ None Aspen None Ozzie Alice Sadie Griswold Cheesy Ellie None None Moofasa Brody Penny Percy None Hector None CeCe Toby None None Goliath Kawhi Reggie Ozzy None by Emmie Sammy Penelope Rocco None Bruce Willie None Rinna None Hunter Mike a None William Dwight Evy Hurley None Rubio None Louis officially Chompsky None Rascal None Lola None Linda Tug Mia Wilson Dash Tango None None Grizz None Crystal Jerome None None Bella Crumpet None Rosie None Jessifer None Reese Izzy None None None Ralph Sadie None None None a Sandy None None None Axel None None Humphrey Derek Tassy Juckson the Chuq None Cooper None Tyrus Karl None None None None None Ash None None Penny None None the None Godzilla None None Bubbles Vinnie None None Griffin None None Duke None Winston Kenneth Herm None Bert None Striker None None None Donny None None None None None Pepper None None Bernie Buddah None Lenny None a a Ellie Sammy None None Reggie None None None None Daisy None None None Arnold None None None Coops None Steven Zuzu Oliver a a Moe Mollie Laela None None Tedders None None Maggie None Superpup None None None None Sophie None None Rufio Patrick Jeb Rodman None None None None None Louis None Bailey Ava Jonah Lenny Gary Chesney None Lennon life Kenny None Bob Henry Gus Bobbay a Mitch Earl Stanley Lucy None None Kaiya Daisy None Acro Aiden None one Obie None None None a None None Riley Raymond Dot None Pickles None Larry George Shnuggles Kendall Albert a Jeffri Sandy None None None Steve Koda None Bella Gerald None Django Frankie None Eve Mac None Dexter Fletcher Kenzie Pumpkin Schnozz None None Chuckles Chet Gustaf Terry Jimison Cheryl None Oscar Ed Jerry Leonidas None Norman Caryl a Scott Taz None Darby None Jackie light Jazz Buddy Franq Pippin None Kreg None Rolf None Snickers Ridley None Cal Opal Bradley Bubba None just Tuco Patch Gizmo Lola Mojo Batdog Brad Mia Dylan None space None Mark None a Oscar None the None Marley None JD Baxter Reginald None Jax Alejandro Scruffers Hammond Charlie Pip Julius Malcolm Penelope None Tanner None Lou Lola Sparky None Herm None Anthony Holly None a None None Clarence None Phred Toby None None Colby None Jett Amy None Remington None Sage Maggie Andy Mason None Trigger Antony None Creg None None Traviss None Vincent Gin Jerry Jeffrie None Danny Ester Pluto Bloo Phineas None Edd None None None Paull Koda None Hank Sam Willy a Herb Damon None Scooter Peanut Nigel Larry Daisy a Butters None a Sandra Wally None Fabio Winston Randall Liam Tommy Ben None None Raphael Zoey None Julio Andru None a Chester Clarence None Kloey Louie Shawwn a Penny None Skye None Linda Keith Kollin a Ronduh Billl Oliviér Chip None Saydee Dug Tessa Sully Kirk None Ralf Clarq Jaspers Samsom None None Tucker Terrance None Harrison Bernie None Ruby None Chaz Jeremy None Jaycob a Herald Lambeau Ruffles Amélie Bobb Banditt a Kevon Winifred None None Hanz an Churlie Zeek Timofy Maks Jomathan Kallie a the Marvin None None Spark Gòrdón a Jo None DayZ a None None Rusty Sophie None Jareld Bisquick Torque None None Ron Skittles a None None Alfie None Jiminy Otis None Cleopatricia Erik Stu Tedrick None Shaggy a None Filup None None None a Calvin Olive None None None None George Kial a Frank Naphaniel None Dook None Hall Philippe None a Reese Cupcake None None None Biden Fwed None Genevieve Joshwa None None Timison a None Clarence Kenneth Churlie Bradlay Pipsy None Gabe Clybe Dave None None Keet None Klevin Carll a None None None Jeph Jockson None a Josep Lugan a Christoper None Jimothy Kreggory Scout None None None None None Walter quite a None None None None None an a an None None None None None None None None None the the a a an a None a a a None
doggo None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None doggo None doggo None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None doggo None None None None None None None None doggo None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None doggo None None None None doggo None None None None None None None doggo None None None None None None None doggo None None None None doggo doggo None None None None None doggo None None None None None None None doggo None None doggo doggo None None None None None None None None doggo None None None None None None None None None None None doggo doggo None None None doggo None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None doggo doggo None None doggo None None None None None None None None None None doggo None None None None None doggo doggo doggo doggo None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None doggo None None None None None doggo None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None doggo doggo doggo None None None None None None None None doggo None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None doggo None None None None None None None None None None None None None None None None None None doggo None None doggo None None None doggo None doggo None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None doggo None doggo None doggo None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None doggo None None None doggo None None None None None None None None None None None None doggo None None None doggo None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None doggo None None None doggo None None None None None None None doggo None None None None None None None None None doggo None None None None None None None None None None None None None None doggo None None None None doggo None None None None doggo None None None None None None None None None None None None None None None None None None None doggo doggo None None doggo None None None None None None None doggo None None None None None None None None None None doggo None None None None None None None None None doggo None None None None None None None doggo None None None doggo None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None doggo None None None None None None None None None None None doggo None None None None None None None None None None None doggo None None None None None None None None None None None doggo None None None doggo None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None doggo None None None doggo None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None pupper None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None pupper None None None pupper None None None None None None None None None pupper None None None None pupper pupper None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None pupper None None pupper None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None pupper None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None pupper None None None pupper None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None pupper None None None None None None pupper None pupper None None pupper None None None None None None None None None None None None pupper None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None pupper None None None pupper None pupper None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None pupper None None None None None None None None None pupper None None None None pupper pupper None pupper None None None None None None None None None None pupper None None None None pupper None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None pupper None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None pupper pupper None None None None None None pupper None pupper None None None pupper None pupper None None None None None None None None None None pupper None None None pupper None None None None None None None None pupper None None None None None None None None None None None None pupper None None None None None None pupper None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None pupper None None None None None None None None None None None None None None None None None None None None None pupper None None None None None pupper None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None pupper None pupper None None None pupper None pupper None pupper None None None None None None pupper None None None None None None None pupper None None None None None None None None None None None None None None pupper None None None pupper None None None None pupper None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None None pupper None None None pupper None None None pupper None pupper None None None pupper None None None pupper None None None None None None None None pupper None None None None None None None None None None None None None None None None None None pupper pupper None None None pupper None None None pupper None None None None None None None None pupper None None None None None None None None pupper None None None None None None None None None None None None None None None pupper pupper None None pupper pupper None None None None None None None None pupper None None None None pupper None None pupper None None None None None None None pupper None None None None pupper None None None pupper None None None None None None None None None None None None None None pupper None None None None pupper None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None pupper None None None None None None pupper None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None pupper None None pupper None None None None None None None None None None None None None pupper None None None None None pupper None None pupper None None None pupper None None None None None pupper None None pupper None None None None pupper pupper None None None None None pupper None pupper None None pupper None None None None None None pupper None None None None None None None None pupper None None pupper None None pupper None None None None None None None pupper pupper None None None pupper None None None None None pupper None None None None None None None None pupper None None None None None None None None None None None None None None None None None pupper pupper None None None None None None None None None None None pupper None None pupper pupper None None None pupper None None None None None None None pupper pupper None None None None None pupper None None pupper None None None None None None None None pupper None pupper None None None None pupper None None None pupper None pupper None None pupper pupper None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None pupper None None None None pupper None None None None None None None None None pupper pupper None None pupper None None None None pupper None None pupper None None None None pupper None None pupper None None None pupper None None None pupper None None None None pupper None pupper None None pupper pupper None None None pupper None None None None None pupper None None pupper None None pupper None pupper pupper None None None None None pupper None pupper None None None None None None pupper pupper None None pupper None None None None None None None None None None None pupper None None None None None pupper pupper None None None None pupper pupper None None None pupper pupper None pupper None None None pupper None None None None None pupper None None None None None None None None None None None pupper pupper pupper pupper None None None None None None None None None None None pupper None None None None None None None pupper None None None None None None None pupper None None None pupper pupper None pupper None None pupper None None None None None None None None pupper pupper None None None None pupper None pupper None None None None None None None None None None None None pupper None None None None None None pupper None None None None None None None pupper None pupper None pupper None None None None None None None None None None None None None None None pupper None None None None None None None None pupper None None None None None None None None pupper pupper None None None pupper None None pupper None None pupper pupper None None None pupper None None pupper None None pupper None None None None None None None None None pupper None None None None None None pupper None None None None pupper None None None None None None None None None None None None None None None None pupper None None None None None None None pupper None None None None pupper None None None None None None None None pupper None None None None None None None pupper None None None None None pupper None None None pupper None None None None None None None pupper None None None None None pupper None None None None None None None None pupper None None None None None pupper pupper None None None None None None None pupper None None pupper None None None None None pupper None pupper None None None pupper None None None None None None pupper None None pupper None None None pupper None None pupper None None pupper pupper None None None pupper None None None None None pupper pupper None None pupper None None None None None None pupper None None None None None None pupper None None None None None pupper None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
puppo None None None None None None None None None None None None puppo None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None puppo puppo None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None puppo puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None puppo None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None puppo None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
In [31]:
#df_arch.tweet_id.value_counts()
#df_arch.in_reply_to_status_id.value_counts()
#df_arch.in_reply_to_user_id.value_counts()
#df_arch.timestamp.value_counts()
#df_arch.source.value_counts()
#df_arch.text.value_counts()
#df_arch.retweeted_status_id.value_counts()
#df_arch.retweeted_status_user_id.value_counts()
#df_arch.retweeted_status_timestamp.value_counts()
#df_arch.expanded_urls.value_counts()
#df_arch.rating_numerator.value_counts()
#len(df_arch.rating_numerator.value_counts())

#df_arch.rating_denominator.value_counts()
#len(df_arch.rating_denominator.value_counts())

#df_arch.name.value_counts()
#df_arch.doggo.value_counts()
#df_arch.floofer.value_counts()
#df_arch.pupper.value_counts()
#df_arch.puppo.value_counts()
In [32]:
df_arch.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
tweet_id                      2356 non-null int64
in_reply_to_status_id         78 non-null float64
in_reply_to_user_id           78 non-null float64
timestamp                     2356 non-null object
source                        2356 non-null object
text                          2356 non-null object
retweeted_status_id           181 non-null float64
retweeted_status_user_id      181 non-null float64
retweeted_status_timestamp    181 non-null object
expanded_urls                 2297 non-null object
rating_numerator              2356 non-null int64
rating_denominator            2356 non-null int64
name                          2356 non-null object
doggo                         2356 non-null object
floofer                       2356 non-null object
pupper                        2356 non-null object
puppo                         2356 non-null object
dtypes: float64(4), int64(3), object(10)
memory usage: 313.0+ KB
In [33]:
# Show all records with not null values under in_reply_to_user_id column
# Transpose the table for better visibility and navigation
df_arch[~df_arch['in_reply_to_user_id'].isnull()].T
Out[33]:
30 55 64 113 148 149 179 184 186 188 189 218 228 234 251 274 290 291 313 342 346 387 409 427 498 513 565 570 576 611 701 843 857 967 1005 1016 1018 1080 1127 1295 1330 1339 1345 1356 1446 1452 1464 1474 1479 1497 1501 1523 1598 1605 1618 1630 1634 1663 1689 1774 1819 1842 1844 1852 1866 1882 1885 1892 1895 1905 1914 1940 2036 2038 2149 2169 2189 2298
tweet_id 886267009285017600 881633300179243008 879674319642796034 870726314365509632 863427515083354112 863079547188785154 857214891891077121 856526610513747968 856288084350160898 855862651834028034 855860136149123072 850333567704068097 848213670039564288 847617282490613760 844979544864018432 840698636975636481 838150277551247360 838085839343206401 835246439529840640 832088576586297345 831926988323639298 826598799820865537 823333489516937216 821153421864615936 813130366689148928 811647686436880384 802265048156610565 801854953262350336 800859414831898624 797165961484890113 786051337297522688 766714921925144576 763956972077010945 750381685133418496 747651430853525504 746906459439529985 746818907684614144 738891149612572673 729838605770891264 707983188426153984 705786532653883392 704871453724954624 704491224099647488 703425003149250560 696490539101908992 695767669421768709 694356675654983680 693644216740769793 693582294167244802 692423280028966913 692142790915014657 690607260360429569 686035780142297088 685681090388975616 684969860808454144 684538444857667585 684225744407494656 682808988178739200 681340665377193984 678023323247357953 676590572941893632 675870721063669760 675849018447167488 675707330206547968 675349384339542016 674999807681908736 674793399141146624 674754018082705410 674742531037511680 674606911342424069 674330906434379776 673716320723169284 671729906628341761 671550332464455680 669684865554620416 669353438988365824 668967877119254528 667070482143944705
in_reply_to_status_id 8.86266e+17 8.81607e+17 8.79554e+17 8.70726e+17 8.63426e+17 6.67152e+17 8.57157e+17 8.55818e+17 8.56286e+17 8.55862e+17 8.55859e+17 8.50329e+17 8.48212e+17 8.47606e+17 7.591e+17 8.40698e+17 8.38145e+17 8.38086e+17 8.35246e+17 8.32088e+17 8.31903e+17 8.26598e+17 8.23326e+17 8.21153e+17 8.13127e+17 8.11627e+17 7.33109e+17 8.01854e+17 8.00858e+17 7.97124e+17 7.72743e+17 7.66712e+17 7.63865e+17 7.5018e+17 7.47649e+17 7.46886e+17 6.91417e+17 7.38412e+17 7.29114e+17 7.0798e+17 7.03256e+17 6.67152e+17 7.04486e+17 7.03042e+17 6.96489e+17 6.75349e+17 6.70668e+17 6.93642e+17 6.93572e+17 6.92417e+17 6.92042e+17 6.90341e+17 6.86034e+17 6.85548e+17 6.8496e+17 6.84481e+17 6.84223e+17 6.82788e+17 6.81339e+17 6.78021e+17 6.76588e+17 6.75707e+17 6.75846e+17 6.75497e+17 6.75e+17 6.74793e+17 6.7173e+17 6.74752e+17 6.7474e+17 6.74469e+17 6.65815e+17 6.73716e+17 6.71561e+17 6.71545e+17 6.69354e+17 6.67806e+17 6.68921e+17 6.67066e+17
in_reply_to_user_id 2.28118e+09 4.73844e+07 3.10544e+09 1.64878e+07 7.75962e+07 4.19698e+09 1.80671e+08 4.19698e+09 2.79281e+08 1.94352e+08 1.36157e+07 2.19551e+07 4.19698e+09 4.19698e+09 4.19698e+09 8.40548e+17 2.19551e+07 2.89413e+09 2.62596e+07 3.05821e+07 2.06837e+07 4.19698e+09 1.58285e+09 1.13212e+08 4.19698e+09 4.19698e+09 4.19698e+09 1.18563e+07 2.91859e+08 2.91663e+07 7.30505e+17 4.19698e+09 1.58464e+07 4.7173e+09 4.19698e+09 4.19698e+09 4.19698e+09 3.58973e+08 4.19698e+09 2.31911e+09 4.19698e+09 4.19698e+09 2.87855e+07 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 1.19899e+09 4.19698e+09 4.19698e+09 4.67037e+08 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 1.63747e+07 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 4.19698e+09 2.14357e+07 4.19698e+09
timestamp 2017-07-15 16:51:35 +0000 2017-07-02 21:58:53 +0000 2017-06-27 12:14:36 +0000 2017-06-02 19:38:25 +0000 2017-05-13 16:15:35 +0000 2017-05-12 17:12:53 +0000 2017-04-26 12:48:51 +0000 2017-04-24 15:13:52 +0000 2017-04-23 23:26:03 +0000 2017-04-22 19:15:32 +0000 2017-04-22 19:05:32 +0000 2017-04-07 13:04:55 +0000 2017-04-01 16:41:12 +0000 2017-03-31 01:11:22 +0000 2017-03-23 18:29:57 +0000 2017-03-11 22:59:09 +0000 2017-03-04 22:12:52 +0000 2017-03-04 17:56:49 +0000 2017-02-24 21:54:03 +0000 2017-02-16 04:45:50 +0000 2017-02-15 18:03:45 +0000 2017-02-01 01:11:25 +0000 2017-01-23 00:56:15 +0000 2017-01-17 00:33:26 +0000 2016-12-25 21:12:41 +0000 2016-12-21 19:01:02 +0000 2016-11-25 21:37:47 +0000 2016-11-24 18:28:13 +0000 2016-11-22 00:32:18 +0000 2016-11-11 19:55:50 +0000 2016-10-12 03:50:17 +0000 2016-08-19 19:14:16 +0000 2016-08-12 04:35:10 +0000 2016-07-05 17:31:49 +0000 2016-06-28 04:42:46 +0000 2016-06-26 03:22:31 +0000 2016-06-25 21:34:37 +0000 2016-06-04 00:32:32 +0000 2016-05-10 01:00:58 +0000 2016-03-10 17:35:20 +0000 2016-03-04 16:06:36 +0000 2016-03-02 03:30:25 +0000 2016-03-01 02:19:31 +0000 2016-02-27 03:42:44 +0000 2016-02-08 00:27:39 +0000 2016-02-06 00:35:13 +0000 2016-02-02 03:08:26 +0000 2016-01-31 03:57:23 +0000 2016-01-30 23:51:19 +0000 2016-01-27 19:05:49 +0000 2016-01-27 00:31:15 +0000 2016-01-22 18:49:36 +0000 2016-01-10 04:04:10 +0000 2016-01-09 04:34:45 +0000 2016-01-07 05:28:35 +0000 2016-01-06 00:54:18 +0000 2016-01-05 04:11:44 +0000 2016-01-01 06:22:03 +0000 2015-12-28 05:07:27 +0000 2015-12-19 01:25:31 +0000 2015-12-15 02:32:17 +0000 2015-12-13 02:51:51 +0000 2015-12-13 01:25:37 +0000 2015-12-12 16:02:36 +0000 2015-12-11 16:20:15 +0000 2015-12-10 17:11:09 +0000 2015-12-10 03:30:58 +0000 2015-12-10 00:54:28 +0000 2015-12-10 00:08:50 +0000 2015-12-09 15:09:55 +0000 2015-12-08 20:53:11 +0000 2015-12-07 04:11:02 +0000 2015-12-01 16:37:44 +0000 2015-12-01 04:44:10 +0000 2015-11-26 01:11:28 +0000 2015-11-25 03:14:30 +0000 2015-11-24 01:42:25 +0000 2015-11-18 20:02:51 +0000
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s @RealKentMurphy 14/10 confirmed @ComplicitOwl @ShopWeRateDogs &gt;10/10 is reserved for dogs @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen @Marc_IRL pixelated af 12/10 THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B @0_kelvin_0 &gt;10/10 is reserved for puppos sorry Kevin @markhoppus 182/10 @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho @docmisterio account started on 11/15/15 @UNC can confirm 12/10 I was going to do 007/10, but the joke wasn't worth the &lt;10 rating @HistoryInPics 13/10 @imgur for a polar bear tho I'd say 13/10 is appropriate I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 13/10 for breakdancing puppo @shibbnbot His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 13/10 such a good doggo\n@spaghemily Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ @mount_alex3 13/10 "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU 13/10 hero af\n@ABC Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ 12/10 @LightningHoltt Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you &amp; this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 I have found another. 13/10 https://t.co/HwroPYv8pY Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass 13/10\n@ABC7 The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv 12/10 good shit Bubka\n@wane15 After much debate this dog is being upgraded to 10/10. I repeat 10/10
retweeted_status_id NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
retweeted_status_user_id NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
retweeted_status_timestamp NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
expanded_urls NaN NaN NaN NaN NaN https://twitter.com/dog_rates/status/863079547188785154/photo/1 NaN https://twitter.com/dog_rates/status/856526610513747968/photo/1 NaN NaN NaN NaN NaN NaN https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN https://twitter.com/dog_rates/status/802265048156610565/photo/1 NaN NaN NaN NaN NaN NaN NaN NaN https://twitter.com/dog_rates/status/746906459439529985/photo/1 https://twitter.com/dog_rates/status/746818907684614144/photo/1 NaN https://twitter.com/dog_rates/status/729838605770891264/video/1 NaN https://twitter.com/dog_rates/status/705786532653883392/photo/1 https://twitter.com/dog_rates/status/704871453724954624/photo/1 NaN https://twitter.com/dog_rates/status/703425003149250560/photo/1 NaN https://twitter.com/dog_rates/status/695767669421768709/photo/1 https://twitter.com/dog_rates/status/694356675654983680/photo/1 NaN NaN NaN https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1 NaN NaN NaN NaN https://twitter.com/dog_rates/status/684538444857667585/video/1 https://twitter.com/dog_rates/status/684225744407494656/photo/1,https://twitter.com/dog_rates/status/684225744407494656/photo/1 NaN NaN NaN NaN https://twitter.com/dog_rates/status/675870721063669760/photo/1 NaN https://twitter.com/dog_rates/status/675707330206547968/photo/1 https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1 https://twitter.com/dog_rates/status/674999807681908736/photo/1 https://twitter.com/dog_rates/status/674793399141146624/photo/1 https://twitter.com/dog_rates/status/674754018082705410/photo/1 NaN NaN NaN NaN https://twitter.com/dog_rates/status/671729906628341761/photo/1 NaN NaN https://twitter.com/dog_rates/status/669353438988365824/photo/1 NaN NaN
rating_numerator 12 17 14 10 12 14 12 14 14 420 666 13 11 13 13 10 182 15 960 11 12 7 13 13 12 11 11 11 11 11 13 13 12 13 12 0 13 13 12 12 11 12 13 9 1 13 10 10 11 9 13 12 4 14 5 12 143 20 5 13 7 11 9 11 13 13 13 12 11 13 13 1 13 1 11 10 12 10
rating_denominator 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 0 15 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 20 10 10 10 130 16 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
name None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None Tessa None None
doggo None None None None None None None None None None None None None None None None None None None None None None None None None None doggo None doggo None None None doggo doggo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
floofer None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
pupper None None None None None None None None None None None None None None None None None None None None None None None None None None pupper None None None None None None None pupper None None None None None pupper None None None None None pupper None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None puppo None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None None
In [34]:
# Count duplicated items for each variable (also visible by .info() above)

#sum(df_arch.tweet_id.duplicated())
#sum(df_arch.in_reply_to_status_id.duplicated()) #2278 NaNs
#df_arch[df_arch.in_reply_to_status_id.duplicated()].T
#sum(df_arch.in_reply_to_user_id.duplicated()) #2324 NaNs
#df_arch[df_arch.in_reply_to_user_id.duplicated()].T
#sum(df_arch.timestamp.duplicated())
#sum(df_arch.source.duplicated()) #2352 = 2356 - 4 categories
#df_arch[df_arch.source.duplicated()].T
#sum(df_arch.text.duplicated())
#sum(df_arch.retweeted_status_id.duplicated()) #2174 NaNs
#sum(df_arch.retweeted_status_user_id.duplicated()) #2330 NaNs
#sum(df_arch.retweeted_status_timestamp.duplicated()) #2174 NaNs
#sum(df_arch.expanded_urls.duplicated()) #137 of different values
#df_arch[df_arch.expanded_urls.duplicated()].T

#sum(df_arch.rating_numerator.duplicated()) #2316 in 40 different values
#df_arch[df_arch.rating_numerator.duplicated()].T

#sum(df_arch.rating_denominator.duplicated()) #2338 in 18 different values
#df_arch[df_arch.rating_denominator.duplicated()].T

#sum(df_arch.name.duplicated())
#sum(df_arch.doggo.duplicated())
#sum(df_arch.floofer.duplicated())
#sum(df_arch.pupper.duplicated())
#sum(df_arch.puppo.duplicated())
In [35]:
df_arch.sample(5)
Out[35]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
2164 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk NaN NaN NaN https://twitter.com/dog_rates/status/669371483794317312/photo/1 10 10 Oliviér None None None None
1044 743609206067040256 NaN NaN 2016-06-17 01:00:24 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA NaN NaN NaN https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1 10 10 Stark None None None None
547 805520635690676224 NaN NaN 2016-12-04 21:14:20 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ NaN NaN NaN https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1 13 10 Zeke None None None None
615 796563435802726400 NaN NaN 2016-11-10 04:01:37 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5d… 7.809316e+17 4.196984e+09 2016-09-28 00:46:20 +0000 https://twitter.com/dog_rates/status/780931614150983680/photo/1 13 10 None None None None puppo
1869 675153376133427200 NaN NaN 2015-12-11 03:21:23 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 NaN NaN NaN https://twitter.com/dog_rates/status/675153376133427200/photo/1 1 10 None None None None None
In [36]:
# Non-English characters spotted
#df_arch[df_arch['tweet_id'] == 668528771708952576]
df_arch.loc[2217]
Out[36]:
tweet_id                      668528771708952576                                                                                                                         
in_reply_to_status_id         NaN                                                                                                                                        
in_reply_to_user_id           NaN                                                                                                                                        
timestamp                     2015-11-22 20:37:34 +0000                                                                                                                  
source                        <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>                                                         
text                          This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW
retweeted_status_id           NaN                                                                                                                                        
retweeted_status_user_id      NaN                                                                                                                                        
retweeted_status_timestamp    NaN                                                                                                                                        
expanded_urls                 https://twitter.com/dog_rates/status/668528771708952576/photo/1                                                                            
rating_numerator              12                                                                                                                                         
rating_denominator            10                                                                                                                                         
name                          Gòrdón                                                                                                                                     
doggo                         None                                                                                                                                       
floofer                       None                                                                                                                                       
pupper                        None                                                                                                                                       
puppo                         None                                                                                                                                       
Name: 2217, dtype: object
In [37]:
# Are there any numerators <= 0?
df_arch[df_arch['rating_numerator'] <= 0].T
Out[37]:
315 1016
tweet_id 835152434251116546 746906459439529985
in_reply_to_status_id NaN 7.46886e+17
in_reply_to_user_id NaN 4.19698e+09
timestamp 2017-02-24 15:40:31 +0000 2016-06-26 03:22:31 +0000
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX
retweeted_status_id NaN NaN
retweeted_status_user_id NaN NaN
retweeted_status_timestamp NaN NaN
expanded_urls https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1 https://twitter.com/dog_rates/status/746906459439529985/photo/1
rating_numerator 0 0
rating_denominator 10 10
name None None
doggo None None
floofer None None
pupper None None
puppo None None
In [38]:
df_arch[df_arch['tweet_id'] == 835152434251116546]['text']
Out[38]:
315    When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag
Name: text, dtype: object
In [39]:
df_arch[df_arch['tweet_id'] == 746906459439529985]['text']
Out[39]:
1016    PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX
Name: text, dtype: object
In [40]:
# Are there any denominators <= 0?
df_arch[df_arch['rating_denominator'] <= 0].T
Out[40]:
313
tweet_id 835246439529840640
in_reply_to_status_id 8.35246e+17
in_reply_to_user_id 2.62596e+07
timestamp 2017-02-24 21:54:03 +0000
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho
retweeted_status_id NaN
retweeted_status_user_id NaN
retweeted_status_timestamp NaN
expanded_urls NaN
rating_numerator 960
rating_denominator 0
name None
doggo None
floofer None
pupper None
puppo None
In [41]:
df_arch[df_arch['tweet_id'] == 835246439529840640]['text']
Out[41]:
313    @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho
Name: text, dtype: object

df_pred - The tweet image predictions

  • tweet_id (int64) unique identifier of a tweet
  • jpg_url (str) image URL
  • p1 (str) prediction 1 result
  • p1_conf (float64) certainty percent the p1 is true
  • p1_dog (bool) if the object recognized by the predictive model is a dog
In [42]:
df_pred.head(2).T
Out[42]:
0 1
tweet_id 666020888022790149 666029285002620928
jpg_url https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg
img_num 1 1
p1 Welsh_springer_spaniel redbone
p1_conf 0.465074 0.506826
p1_dog True True
p2 collie miniature_pinscher
p2_conf 0.156665 0.0741917
p2_dog True True
p3 Shetland_sheepdog Rhodesian_ridgeback
p3_conf 0.0614285 0.07201
p3_dog True True
In [43]:
df_pred.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 12 columns):
tweet_id    2075 non-null int64
jpg_url     2075 non-null object
img_num     2075 non-null int64
p1          2075 non-null object
p1_conf     2075 non-null float64
p1_dog      2075 non-null bool
p2          2075 non-null object
p2_conf     2075 non-null float64
p2_dog      2075 non-null bool
p3          2075 non-null object
p3_conf     2075 non-null float64
p3_dog      2075 non-null bool
dtypes: bool(3), float64(3), int64(2), object(4)
memory usage: 152.1+ KB
In [44]:
# What are possible values for img_num?
df_pred.img_num.value_counts()
Out[44]:
1    1780
2    198 
3    66  
4    31  
Name: img_num, dtype: int64
In [45]:
df_pred[df_pred.img_num > 1].head(10)
Out[45]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
144 668623201287675904 https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 0.091372 True titi 0.067325 False
312 671547767500775424 https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 2 Loafer 0.255088 False platypus 0.090019 False cowboy_boot 0.066536 False
315 671735591348891648 https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 2 stone_wall 0.271121 False Irish_wolfhound 0.063078 True poncho 0.048226 False
319 671768281401958400 https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 2 Chihuahua 0.500373 True French_bulldog 0.112796 True Italian_greyhound 0.062893 True
345 672272411274932228 https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg 2 pug 0.914685 True Norwegian_elkhound 0.014982 True Siamese_cat 0.009221 False
381 673317986296586240 https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg 2 miniature_pinscher 0.384099 True bloodhound 0.079923 True Rottweiler 0.068594 True
382 673320132811366400 https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg 3 Samoyed 0.978833 True Pomeranian 0.012763 True Eskimo_dog 0.001853 True
410 673887867907739649 https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg 2 Brabancon_griffon 0.216767 True Chihuahua 0.190958 True golden_retriever 0.163288 True
441 674468880899788800 https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg 2 chow 0.526230 True Pomeranian 0.283647 True toy_poodle 0.067665 True
452 674752233200820224 https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg 2 vizsla 0.665516 True redbone 0.173366 True basset 0.134783 True
In [46]:
# Do we have multiple URLs if img_num > 1?
df_pred.loc[144]
Out[46]:
tweet_id    668623201287675904                             
jpg_url     https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg
img_num     4                                              
p1          Chihuahua                                      
p1_conf     0.708163                                       
p1_dog      True                                           
p2          Pomeranian                                     
p2_conf     0.0913719                                      
p2_dog      True                                           
p3          titi                                           
p3_conf     0.0673255                                      
p3_dog      False                                          
Name: 144, dtype: object
In [47]:
# What is a range of p1_conf values? They should be between 0 and 1.
df_pred.p1_conf.describe()
Out[47]:
count    2075.000000
mean     0.594548   
std      0.271174   
min      0.044333   
25%      0.364412   
50%      0.588230   
75%      0.843855   
max      1.000000   
Name: p1_conf, dtype: float64
In [48]:
df_pred.p2_conf.describe()
Out[48]:
count    2.075000e+03
mean     1.345886e-01
std      1.006657e-01
min      1.011300e-08
25%      5.388625e-02
50%      1.181810e-01
75%      1.955655e-01
max      4.880140e-01
Name: p2_conf, dtype: float64
In [49]:
df_pred.p3_conf.describe()
Out[49]:
count    2.075000e+03
mean     6.032417e-02
std      5.090593e-02
min      1.740170e-10
25%      1.622240e-02
50%      4.944380e-02
75%      9.180755e-02
max      2.734190e-01
Name: p3_conf, dtype: float64

df_api - Complementary tweet's data

  • tweet_id (int64) unique identifier of a tweet
  • retweet_count (int64) number of times this Tweet has been retweeted
  • followers_count (int64) number of followers this user account of this Tweet creator currently has
In [50]:
df_api.head(6).T
Out[50]:
0 1 2 3 4 5
tweet_id 892420643555336193 892177421306343426 891815181378084864 891689557279858688 891327558926688256 891087950875897856
retweet_count 8377 6185 4092 8519 9227 3070
favorite_count 38250 32791 24693 41578 39754 19952
followers_count 7418513 7418513 7420630 7418513 7418513 7418513
In [51]:
df_api.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2342 entries, 0 to 2341
Data columns (total 4 columns):
tweet_id           2342 non-null int64
retweet_count      2342 non-null int64
favorite_count     2342 non-null int64
followers_count    2342 non-null int64
dtypes: int64(4)
memory usage: 73.3 KB
In [52]:
# Do errorneus records exist in any of the datasets?
df_api_err
Out[52]:
tweet_id code message
0 888202515573088257 144 No status found with that ID.
1 873697596434513921 144 No status found with that ID.
2 872668790621863937 144 No status found with that ID.
3 869988702071779329 144 No status found with that ID.
4 866816280283807744 144 No status found with that ID.
5 861769973181624320 144 No status found with that ID.
6 845459076796616705 144 No status found with that ID.
7 842892208864923648 144 No status found with that ID.
8 837012587749474308 144 No status found with that ID.
9 827228250799742977 144 No status found with that ID.
10 802247111496568832 144 No status found with that ID.
11 775096608509886464 144 No status found with that ID.
12 770743923962707968 144 No status found with that ID.
13 754011816964026368 144 No status found with that ID.
In [53]:
df_api[df_api['tweet_id'] == 888202515573088257]
Out[53]:
tweet_id retweet_count favorite_count followers_count
In [54]:
df_pred[df_pred['tweet_id'] == 888202515573088257]
Out[54]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
2055 888202515573088257 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 0.05495 True beagle 0.038915 True
In [55]:
df_arch[df_arch['tweet_id'] == 888202515573088257]
Out[55]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
19 888202515573088257 NaN NaN 2017-07-21 01:02:36 +0000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> RT @dog_rates: This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX 8.874740e+17 4.196984e+09 2017-07-19 00:47:34 +0000 https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 13 10 Canela None None None None

Observations

The following observations were made using visual (manual review in Excel) and programmatic (pandas) assessment.

QUALITY

  • df_arch
    • timestamp is string and should be datetime
    • rating_numerator two numerators are equal to 0
      • tweet_id: 835152434251116546 (rating in the text column is 0/10)
      • tweei_id: 746906459439529985 (rating in the text column is 0/10)
    • rating_denominator there are 18 different denumerators, one of them is equal to 0
      • tweet_id: 835246439529840640 (rating in the text column is 13/10)
    • name more than 745 records do not contain a valid name, all names should start with a capital letter
    • doggo, floofer, pupper, puppo columns contain 'None' value where NaN should be used.
      • there are a few cases, where a dog has more than one style:
        • tweet_id: 854010172552949000 (doggo, floofer)
        • tweet_id: 808106460588765000 (doggo, pupper)
        • tweet_id: 801115127852503000 (doggo, pupper)
        • tweet_id: 781308096455073000 (doggo, pupper)
    • In the scope of variables described in the dictionary part, there are no missing values
    • There could be encoding problem for tweet_id = 668528771708952576 (the name value uses non-English characters)
  • df_pred
    • jpg_url contains two different path patterns to jpg files. This seems not to have any impact.
    • p1, p2, and p3 are inconsistent in a way capital and small letters are used in values
  • df_api
    • There are 14 erroneous (non-existing) records in this dataset which exist in other datasets
  • General
    • There are different number of records in each dataset

TIDINESS

  • df_arch
    • There are retweets and replies included in the dataset (represented by redundant columns)
    • doggo, floofer, pupper, puppo columns are all about the same things, a kind of dog personality.
  • df_pred
    • img_num contains integer values ranging from 1 to 4 but only 1 img_url is present (this column semantics is not clear). The column may not have any use here.
  • General
    • There are too many datasets and their overall structure is untidy

Step 3: Cleaning Data

To build one analytical view I will combine the 3 tables into 2 and

  • clean the data I will also address quality and tidiness issues documented in the Observations section above,
  • keep and create columns needed for the analytics phase,
  • include only records common to all 3 tables for data completeness.

Create a copy of data

In [56]:
# Make copies to preserve the original datasets
df_arch_clean = df_arch.copy()
df_pred_clean = df_pred.copy()
df_api_clean = df_api.copy()

Use only original tweets/ratings that have images

According to one of the project's requirements, we only want original ratings that have images (no retweets nor replies).

Define

  • From df_arch remove tweets that are a replay or a retweet:
    • they have in_reply_to_status_id,
    • in_reply_to_user_id,
    • retweeted_status_id,
    • retweeted_status_user_id not NaN.
  • Remove not needed columns:
    • in_reply_to_status_id,
    • in_reply_to_user_id,
    • retweeted_status_id,
    • retweeted_status_user_id,
    • retweeted_status_timestamp.

Code

In [57]:
# Before the change
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
tweet_id                      2356 non-null int64
in_reply_to_status_id         78 non-null float64
in_reply_to_user_id           78 non-null float64
timestamp                     2356 non-null object
source                        2356 non-null object
text                          2356 non-null object
retweeted_status_id           181 non-null float64
retweeted_status_user_id      181 non-null float64
retweeted_status_timestamp    181 non-null object
expanded_urls                 2297 non-null object
rating_numerator              2356 non-null int64
rating_denominator            2356 non-null int64
name                          2356 non-null object
doggo                         2356 non-null object
floofer                       2356 non-null object
pupper                        2356 non-null object
puppo                         2356 non-null object
dtypes: float64(4), int64(3), object(10)
memory usage: 313.0+ KB
In [58]:
# Find rows to remove for replies
# They do not have NaNs in 'in_reply_to_status_id'
replies = (~df_arch_clean.in_reply_to_status_id.isnull())
#replies.sum() #78

# And remove them from df_arch_clean
df_arch_clean = df_arch_clean[~replies]
In [59]:
# Find rows to remove for retweets
# They do not have NaNs in 'retweeted_status_id'
retweets = (~df_arch_clean.retweeted_status_id.isnull())
#retweets.sum() #181

# And remove them from df_arch_clean
df_arch_clean = df_arch_clean[~retweets]
In [60]:
# After rows are removed
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 17 columns):
tweet_id                      2097 non-null int64
in_reply_to_status_id         0 non-null float64
in_reply_to_user_id           0 non-null float64
timestamp                     2097 non-null object
source                        2097 non-null object
text                          2097 non-null object
retweeted_status_id           0 non-null float64
retweeted_status_user_id      0 non-null float64
retweeted_status_timestamp    0 non-null object
expanded_urls                 2094 non-null object
rating_numerator              2097 non-null int64
rating_denominator            2097 non-null int64
name                          2097 non-null object
doggo                         2097 non-null object
floofer                       2097 non-null object
pupper                        2097 non-null object
puppo                         2097 non-null object
dtypes: float64(4), int64(3), object(10)
memory usage: 294.9+ KB
In [61]:
# Remove not needed columns
df_arch_clean.drop(['in_reply_to_status_id', 
                    'in_reply_to_user_id', 
                    'retweeted_status_id', 
                    'retweeted_status_user_id', 
                    'retweeted_status_timestamp'], axis=1, inplace=True)

Test

In [62]:
# After columns are removed
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 12 columns):
tweet_id              2097 non-null int64
timestamp             2097 non-null object
source                2097 non-null object
text                  2097 non-null object
expanded_urls         2094 non-null object
rating_numerator      2097 non-null int64
rating_denominator    2097 non-null int64
name                  2097 non-null object
doggo                 2097 non-null object
floofer               2097 non-null object
pupper                2097 non-null object
puppo                 2097 non-null object
dtypes: int64(3), object(9)
memory usage: 213.0+ KB

In df_arch timestamp is string and should be datetime

Define

  • In df_arch change timestamp type to datetime64

Code

In [63]:
# Change timestamp
df_arch_clean.timestamp = pd.to_datetime(df_arch_clean.timestamp)

Test

In [64]:
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 12 columns):
tweet_id              2097 non-null int64
timestamp             2097 non-null datetime64[ns]
source                2097 non-null object
text                  2097 non-null object
expanded_urls         2094 non-null object
rating_numerator      2097 non-null int64
rating_denominator    2097 non-null int64
name                  2097 non-null object
doggo                 2097 non-null object
floofer               2097 non-null object
pupper                2097 non-null object
puppo                 2097 non-null object
dtypes: datetime64[ns](1), int64(3), object(8)
memory usage: 213.0+ KB

Handle invalid values

Define

  • In df_arch_clean:
    • Leave intact rating_numerator equal to zero for tweet_ids: 835152434251116546 and 746906459439529985)
    • For tweet_id 835246439529840640 the rating_numerator was 13 and rating_denominator was 10 as found in text but this record was removed as one of reply tweet. So no action is needed.
    • Leave all name records without a valid name intact as not being able to provide them.
    • Capitalize the first letter of all names in name.
    • In name change 'None' to NaN.
    • In doggo, floofer, pupper, puppo change 'None' to NaN.
  • In df_pred_clean:
    • Capitalize the first letter of all items in p1, p2, and p3 columns.

Code

In [65]:
# Capitalize first letters
df_arch_clean['name'] = [name.capitalize() for name in df_arch_clean['name']]

df_pred_clean['p1'] = [item.capitalize() for item in df_pred_clean['p1']]
df_pred_clean['p2'] = [item.capitalize() for item in df_pred_clean['p2']]
df_pred_clean['p3'] = [item.capitalize() for item in df_pred_clean['p3']]
In [66]:
# Change None to NaN
def change_to_null(item):
    if item == 'None':
        item = np.NaN
    return item

df_arch_clean['name'] = [change_to_null(item) for item in df_arch_clean['name']]

df_arch_clean['doggo'] = [change_to_null(item) for item in df_arch_clean['doggo']]
df_arch_clean['floofer'] = [change_to_null(item) for item in df_arch_clean['floofer']]
df_arch_clean['pupper'] = [change_to_null(item) for item in df_arch_clean['pupper']]
df_arch_clean['puppo'] = [change_to_null(item) for item in df_arch_clean['puppo']]

Test

In [67]:
# Confirm there is no tweet_id = 835246439529840640 in the dataset
df_arch_clean[df_arch_clean['tweet_id'] == 835246439529840640]
Out[67]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
In [68]:
# Check first letter capitalization
#df_arch_clean['name'].sample(20)
df_pred_clean['p1'].sample(20)
Out[68]:
691     Llama                
1841    Chow                 
798     Borzoi               
1691    Tibetan_mastiff      
1236    Golden_retriever     
131     King_penguin         
507     Bull_mastiff         
1962    Flat-coated_retriever
141     Shih-tzu             
1615    Chihuahua            
1082    Hammer               
1567    Pedestal             
478     Pembroke             
301     Swing                
1228    Labrador_retriever   
46      English_setter       
1500    Quilt                
396     Bull_mastiff         
1105    Great_dane           
1089    Dandie_dinmont       
Name: p1, dtype: object
In [69]:
# Check NaNs
df_arch_clean[['doggo', 'floofer', 'pupper', 'puppo']].sample(100).T
Out[69]:
1569 1336 980 882 1897 352 326 1170 1585 1059 416 705 929 1347 209 1401 788 2302 80 1359 2176 1627 2304 2137 408 731 2214 719 985 2188 380 458 141 1218 119 437 136 2133 1375 1222 2005 1410 2063 20 1105 235 308 539 2336 129 374 106 497 970 208 2049 1196 675 1922 306 1484 1595 1431 2296 1211 687 730 776 1968 652 1271 1761 1190 375 780 170 633 227 1847 135 1017 1769 898 662 1890 1182 459 1581 356 192 321 486 2057 2091 471 1808 795 2065 252 433
doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
pupper NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN

In df_arch in rating_denominator there are 18 different denumerators

Define

  • In Create a rating column
  • Calculate rating values for all records in df_arch (rating standardization)

Code

In [70]:
# Create the rating column and populate it with standardized rating values
df_arch_clean['rating'] = df_arch_clean.rating_numerator / df_arch_clean.rating_denominator

Test

In [71]:
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 13 columns):
tweet_id              2097 non-null int64
timestamp             2097 non-null datetime64[ns]
source                2097 non-null object
text                  2097 non-null object
expanded_urls         2094 non-null object
rating_numerator      2097 non-null int64
rating_denominator    2097 non-null int64
name                  1494 non-null object
doggo                 83 non-null object
floofer               10 non-null object
pupper                230 non-null object
puppo                 24 non-null object
rating                2097 non-null float64
dtypes: datetime64[ns](1), float64(1), int64(3), object(8)
memory usage: 229.4+ KB
In [72]:
df_arch_clean.head(5).T
Out[72]:
0 1 2 3 4
tweet_id 892420643555336193 892177421306343426 891815181378084864 891689557279858688 891327558926688256
timestamp 2017-08-01 16:23:56 2017-08-01 00:17:27 2017-07-31 00:18:03 2017-07-30 15:58:51 2017-07-29 16:00:24
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f
expanded_urls https://twitter.com/dog_rates/status/892420643555336193/photo/1 https://twitter.com/dog_rates/status/892177421306343426/photo/1 https://twitter.com/dog_rates/status/891815181378084864/photo/1 https://twitter.com/dog_rates/status/891689557279858688/photo/1 https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1
rating_numerator 13 13 12 13 12
rating_denominator 10 10 10 10 10
name Phineas Tilly Archie Darla Franklin
doggo NaN NaN NaN NaN NaN
floofer NaN NaN NaN NaN NaN
pupper NaN NaN NaN NaN NaN
puppo NaN NaN NaN NaN NaN
rating 1.3 1.3 1.2 1.3 1.2
In [73]:
df_arch_clean.rating.describe()
Out[73]:
count    2097.000000
mean     1.169281   
std      3.965932   
min      0.000000   
25%      1.000000   
50%      1.100000   
75%      1.200000   
max      177.600000 
Name: rating, dtype: float64

Remove not needed columns

Define

  • Remove expanded_urls from df_arch_clean.
  • Remove img_num from df_pred_clean.

Code

In [74]:
# Before
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 13 columns):
tweet_id              2097 non-null int64
timestamp             2097 non-null datetime64[ns]
source                2097 non-null object
text                  2097 non-null object
expanded_urls         2094 non-null object
rating_numerator      2097 non-null int64
rating_denominator    2097 non-null int64
name                  1494 non-null object
doggo                 83 non-null object
floofer               10 non-null object
pupper                230 non-null object
puppo                 24 non-null object
rating                2097 non-null float64
dtypes: datetime64[ns](1), float64(1), int64(3), object(8)
memory usage: 229.4+ KB
In [75]:
# Remove expanded_urls column
df_arch_clean.drop(['expanded_urls'], axis=1, inplace=True)
In [76]:
# Before
df_pred_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 12 columns):
tweet_id    2075 non-null int64
jpg_url     2075 non-null object
img_num     2075 non-null int64
p1          2075 non-null object
p1_conf     2075 non-null float64
p1_dog      2075 non-null bool
p2          2075 non-null object
p2_conf     2075 non-null float64
p2_dog      2075 non-null bool
p3          2075 non-null object
p3_conf     2075 non-null float64
p3_dog      2075 non-null bool
dtypes: bool(3), float64(3), int64(2), object(4)
memory usage: 152.1+ KB
In [77]:
# Remove img_num column
df_pred_clean.drop(['img_num'], axis=1, inplace=True)

Test

In [78]:
# After
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 12 columns):
tweet_id              2097 non-null int64
timestamp             2097 non-null datetime64[ns]
source                2097 non-null object
text                  2097 non-null object
rating_numerator      2097 non-null int64
rating_denominator    2097 non-null int64
name                  1494 non-null object
doggo                 83 non-null object
floofer               10 non-null object
pupper                230 non-null object
puppo                 24 non-null object
rating                2097 non-null float64
dtypes: datetime64[ns](1), float64(1), int64(3), object(7)
memory usage: 213.0+ KB
In [79]:
# After
df_pred_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 11 columns):
tweet_id    2075 non-null int64
jpg_url     2075 non-null object
p1          2075 non-null object
p1_conf     2075 non-null float64
p1_dog      2075 non-null bool
p2          2075 non-null object
p2_conf     2075 non-null float64
p2_dog      2075 non-null bool
p3          2075 non-null object
p3_conf     2075 non-null float64
p3_dog      2075 non-null bool
dtypes: bool(3), float64(3), int64(1), object(4)
memory usage: 135.8+ KB

Consolidate dog style columns into one

  • there are a few cases, where a dog has more than one style:
          - tweet_id: 854010172552949000 (doggo, floofer)
          - tweet_id: 808106460588765000 (doggo, pupper)
          - tweet_id: 801115127852503000 (doggo, pupper)
          - tweet_id: 781308096455073000 (doggo, pupper)

Define

  • Consolidate dog type columns doggo, floofer, pupper, puppo into one named dog_style. Remove redundant columns.
  • After a consultation with an SME, in the few cases where a dog has more than one style assigned, only one will be taken. If not doggo then floofer, then pupper, then puppo, or NaN.

Code

In [80]:
# Consolidate data
df_arch_clean['dog_style'] = df_arch_clean.doggo.fillna(df_arch_clean.floofer.fillna(df_arch_clean.pupper.fillna(df_arch_clean.puppo)))

# Test values assignment
df_arch_clean[['dog_style', 'doggo', 'floofer', 'pupper', 'puppo']].T
Out[80]:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 31 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 65 66 67 69 70 71 72 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 98 99 100 102 103 104 105 106 107 108 110 111 112 114 115 116 117 119 120 121 122 123 125 126 127 128 129 131 133 134 135 136 138 139 140 141 142 143 144 145 147 150 151 152 153 154 156 157 158 161 162 163 164 166 167 168 169 170 172 173 174 175 176 177 178 181 183 187 190 191 192 193 196 197 198 199 200 201 202 203 205 206 207 208 209 210 213 214 215 216 217 219 220 221 223 224 225 226 227 229 232 233 235 236 237 238 239 240 241 242 243 244 245 246 248 249 252 253 254 255 256 257 258 259 261 262 263 264 265 267 268 269 270 271 275 276 277 278 279 280 282 283 284 287 288 292 293 294 295 296 297 299 300 301 304 305 306 308 311 312 314 315 316 317 318 320 321 322 323 324 325 326 328 329 330 331 333 334 335 336 337 338 339 344 345 347 348 349 350 351 352 353 354 355 356 358 360 361 362 363 364 365 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 383 384 385 388 389 390 391 392 393 394 395 396 398 400 401 402 403 404 405 407 408 410 412 413 414 416 417 418 419 421 423 424 426 428 429 430 432 433 436 437 439 440 441 442 443 444 445 448 449 451 452 454 456 457 458 459 460 461 463 464 466 467 468 470 471 472 473 474 477 478 480 481 482 483 484 486 487 489 490 491 492 493 494 495 496 497 499 500 501 502 503 504 505 507 508 509 510 511 512 514 515 516 517 518 519 520 521 523 524 525 526 527 528 529 531 532 533 534 536 537 539 540 542 544 545 547 548 549 550 551 553 554 556 557 559 560 562 563 564 567 569 571 572 573 575 578 579 580 582 584 585 587 588 590 591 592 593 607 608 609 610 613 614 616 617 619 620 621 622 623 624 625 626 628 630 631 632 633 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 657 658 659 660 662 663 665 666 667 668 670 672 673 674 675 676 678 679 680 681 683 684 685 687 688 689 690 691 693 695 696 697 698 699 700 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 721 722 723 724 725 726 727 729 730 731 732 733 734 735 736 737 738 739 740 743 744 746 747 748 750 751 752 754 755 756 757 758 760 761 762 763 765 766 768 769 771 772 774 775 776 777 779 780 781 782 783 785 786 787 788 789 790 791 792 793 795 796 797 798 799 801 802 803 804 805 806 807 808 809 810 812 813 814 816 817 819 820 821 823 824 825 827 828 830 831 832 834 835 836 837 838 839 840 842 844 845 846 848 849 850 851 852 853 854 855 856 858 859 861 862 863 864 865 866 867 869 870 871 873 874 875 876 877 878 879 880 881 882 883 884 886 887 888 889 891 892 893 894 896 897 898 899 900 901 902 903 904 905 906 907 909 910 912 913 914 915 916 917 918 919 920 921 922 923 924 925 927 928 929 930 931 932 933 934 935 936 938 939 940 941 942 944 945 946 947 948 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1006 1007 1008 1009 1010 1011 1013 1014 1015 1017 1019 1020 1021 1022 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1331 1332 1333 1334 1335 1336 1337 1338 1340 1341 1342 1343 1344 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1447 1448 1449 1450 1451 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1465 1466 1467 1468 1469 1470 1471 1472 1473 1475 1476 1477 1478 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1498 1499 1500 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1599 1600 1601 1602 1603 1604 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1631 1632 1633 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1843 1845 1846 1847 1848 1849 1850 1851 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1883 1884 1886 1887 1888 1889 1890 1891 1893 1894 1896 1897 1898 1899 1900 1901 1902 1903 1904 1906 1907 1908 1909 1910 1911 1912 1913 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2037 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355
dog_style NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN puppo NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN floofer NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN puppo NaN pupper doggo NaN NaN NaN NaN NaN NaN pupper doggo doggo NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN pupper doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN doggo NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN pupper doggo NaN NaN NaN NaN NaN NaN doggo doggo doggo NaN NaN NaN NaN doggo pupper NaN NaN NaN NaN NaN NaN NaN doggo doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN doggo doggo NaN doggo NaN doggo NaN NaN NaN puppo NaN puppo NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN pupper NaN NaN doggo NaN doggo NaN doggo NaN NaN NaN NaN NaN puppo doggo NaN NaN NaN pupper NaN doggo doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN doggo NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN doggo NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo pupper NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN doggo NaN NaN pupper floofer NaN doggo doggo NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN doggo NaN NaN doggo NaN doggo NaN NaN puppo NaN NaN NaN NaN NaN NaN doggo NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN pupper floofer NaN pupper NaN NaN doggo NaN doggo NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN pupper NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN pupper NaN doggo NaN NaN puppo pupper doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo doggo NaN puppo doggo NaN pupper NaN NaN NaN NaN doggo NaN pupper NaN NaN puppo pupper NaN pupper NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN doggo NaN NaN NaN pupper NaN NaN floofer doggo NaN NaN NaN doggo NaN NaN doggo NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN puppo NaN NaN NaN doggo pupper NaN NaN NaN NaN NaN NaN puppo pupper NaN doggo NaN pupper NaN NaN NaN pupper NaN pupper NaN NaN NaN doggo NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN doggo pupper NaN NaN doggo NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN doggo pupper NaN NaN NaN NaN NaN floofer NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN doggo pupper pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN doggo pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN doggo pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN pupper NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN floofer NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN pupper NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN pupper NaN pupper pupper NaN NaN NaN NaN floofer pupper NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper pupper NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper pupper pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper pupper NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN pupper NaN NaN pupper pupper NaN NaN pupper NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN pupper NaN NaN pupper NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN doggo doggo NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo doggo doggo NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN doggo doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo doggo NaN doggo NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN doggo NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN doggo doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN doggo NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN doggo doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN doggo NaN NaN doggo NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN doggo NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo doggo NaN NaN doggo NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN doggo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN floofer NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN pupper NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN pupper NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN pupper NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN pupper NaN pupper NaN pupper pupper NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper pupper NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper pupper pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN pupper pupper NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN pupper NaN NaN pupper pupper NaN NaN pupper NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN pupper NaN NaN NaN pupper NaN NaN pupper NaN NaN pupper pupper NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper pupper NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN pupper NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN puppo NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
In [81]:
# Remove not needed columns
df_arch_clean.drop(['doggo', 
                    'floofer', 
                    'pupper', 
                    'puppo'], axis=1, inplace=True)

Test

In [82]:
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2097 entries, 0 to 2355
Data columns (total 9 columns):
tweet_id              2097 non-null int64
timestamp             2097 non-null datetime64[ns]
source                2097 non-null object
text                  2097 non-null object
rating_numerator      2097 non-null int64
rating_denominator    2097 non-null int64
name                  1494 non-null object
rating                2097 non-null float64
dog_style             336 non-null object
dtypes: datetime64[ns](1), float64(1), int64(3), object(4)
memory usage: 243.8+ KB

Consolidate 3 datasets into 2

Define

  • Remove rows
  • Merge df_arch_clean and df_api_clean into df_arch_clean.
  • Leave df_pred_clean as a separate dataset.

Code

In [83]:
# Identify tweet_ids in df_arch_clean but not in df_api_clean
not_shared = (~df_arch_clean.tweet_id.isin(list(df_api_clean.tweet_id)))
not_shared.sum()
Out[83]:
1
In [84]:
# Remove these tweets
df_arch_clean = df_arch_clean[~not_shared]
In [85]:
# Check if any tweet left
not_shared = (~df_arch_clean.tweet_id.isin(list(df_api_clean.tweet_id)))
not_shared.sum()
Out[85]:
0
In [86]:
# Merge df_arch_clean and df_api_clean into df_arch_clean
df_arch_clean = pd.merge(left=df_arch_clean, right=df_api_clean, how='left', on='tweet_id')

Test

In [87]:
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2096 entries, 0 to 2095
Data columns (total 12 columns):
tweet_id              2096 non-null int64
timestamp             2096 non-null datetime64[ns]
source                2096 non-null object
text                  2096 non-null object
rating_numerator      2096 non-null int64
rating_denominator    2096 non-null int64
name                  1493 non-null object
rating                2096 non-null float64
dog_style             336 non-null object
retweet_count         2096 non-null int64
favorite_count        2096 non-null int64
followers_count       2096 non-null int64
dtypes: datetime64[ns](1), float64(1), int64(6), object(4)
memory usage: 212.9+ KB
In [88]:
df_pred_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 11 columns):
tweet_id    2075 non-null int64
jpg_url     2075 non-null object
p1          2075 non-null object
p1_conf     2075 non-null float64
p1_dog      2075 non-null bool
p2          2075 non-null object
p2_conf     2075 non-null float64
p2_dog      2075 non-null bool
p3          2075 non-null object
p3_conf     2075 non-null float64
p3_dog      2075 non-null bool
dtypes: bool(3), float64(3), int64(1), object(4)
memory usage: 135.8+ KB

Save clean data

In [89]:
df_arch_clean.to_csv('archive_clean.csv', index=False)
df_pred_clean.to_csv('predictions_clean.csv', index=False)

# We save our data in a pickle format not to lose pandas types definitions in a text csv file.
df_arch_clean.to_pickle("./archive_clean.pkl")
df_pred_clean.to_pickle("./predictions_clean.pkl")
In [90]:
# Read clean data
#df_arch_clean = pd.read_csv('archive_clean.csv')
#df_pred_clean = pd.read_csv('predictions_clean.csv')

df_arch_clean = pd.read_pickle("./archive_clean.pkl")
df_pred_clean = pd.read_pickle("./predictions_clean.pkl")
In [91]:
df_arch_clean.sample(30).T
Out[91]:
936 1929 46 1187 2064 1242 294 2066 1179 1085 1045 772 1150 1395 1759 1101 1562 734 35 770 1256 1751 1741 1720 841 1815 730 747 1054 1170
tweet_id 725458796924002305 668986018524233728 882627270321602560 698989035503689728 666421158376562688 694183373896572928 828372645993398273 666411507551481857 699413908797464576 707387676719185920 709918798883774466 749403093750648834 701952816642965504 684481074559381504 672245253877968896 706310011488698368 676949632774234114 752932432744185856 884876753390489601 749774190421639168 693155686491000832 672475084225949696 672609152938721280 673240798075449344 742150209887731712 671134062904504320 753375668877008896 751583847268179968 709207347839836162 700002074055016451
timestamp 2016-04-27 22:57:10 2015-11-24 02:54:30 2017-07-05 15:48:34 2016-02-14 21:55:47 2015-11-17 01:02:40 2016-02-01 15:39:48 2017-02-05 22:40:03 2015-11-17 00:24:19 2016-02-16 02:04:04 2016-03-09 02:08:59 2016-03-16 01:46:45 2016-07-03 00:43:15 2016-02-23 02:12:47 2016-01-05 21:06:19 2015-12-03 02:45:32 2016-03-06 02:46:44 2015-12-16 02:19:04 2016-07-12 18:27:35 2017-07-11 20:47:12 2016-07-04 01:17:51 2016-01-29 19:36:08 2015-12-03 17:58:48 2015-12-04 02:51:33 2015-12-05 20:41:29 2016-06-13 00:22:53 2015-11-30 01:10:04 2016-07-13 23:48:51 2016-07-09 01:08:47 2016-03-14 02:39:42 2016-02-17 17:01:14
source <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 *internally screaming* 12/10 https://t.co/YMcrXC2Y6R This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1
rating_numerator 13 9 13 13 12 9 12 2 11 10 12 10 11 10 12 12 8 12 13 12 12 8 9 6 8 8 8 5 11 9
rating_denominator 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
name NaN Ruby Stanley Oliver NaN Lola Alexander Quite Miley Clarkus Watson NaN Rilo Pippa Snickers NaN Tyrus Carl Lola Lucy Dunkin Buddy Caryl NaN Edmund Clarence Hank NaN Penny Thumas
rating 1.3 0.9 1.3 1.3 1.2 0.9 1.2 0.2 1.1 1 1.2 1 1.1 1 1.2 1.2 0.8 1.2 1.3 1.2 1.2 0.8 0.9 0.6 0.8 0.8 0.8 0.5 1.1 0.9
dog_style NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN NaN NaN NaN NaN NaN NaN pupper NaN NaN doggo NaN NaN
retweet_count 666 173 6003 1059 111 997 3204 324 664 1395 1141 591 1096 1256 162 8562 422 7404 5586 1418 3435 725 402 760 1674 199 2526 1212 6250 1445
favorite_count 1477 565 27553 3567 314 3105 13303 440 2183 3690 3135 2789 4016 4085 701 22558 1359 13404 27550 4927 8323 1464 1142 1453 5419 768 8113 4684 13247 3492
followers_count 7418616 7418721 7418512 7418638 7418739 7418641 7418526 7418739 7418637 7418631 7418629 7420718 7418634 7418655 7418699 7418631 7418683 7418601 7418513 7418601 7418641 7418699 7418697 7418695 7418611 7418708 7418601 7418601 7418629 7418636
In [92]:
df_pred_clean.sample(30).T
Out[92]:
1110 1010 948 1553 1624 635 16 1824 158 221 1926 1150 364 609 226 1784 703 1730 958 1916 1494 448 636 2024 38 277 771 1353 1688 1386
tweet_id 724004602748780546 709409458133323776 704819833553219584 793165685325201412 803692223237865472 681231109724700672 666102155909144576 835152434251116546 668872652652679168 670093938074779648 857746408056729600 732005617171337216 672884426393653248 680085611152338944 670361874861563904 829141528400556032 684914660081053696 821044531881721856 705475953783398401 854482394044301312 783334639985389568 674690135443775488 681242418453299201 881666595344535552 666644823164719104 670842764863651840 689517482558820352 760190180481531904 815390420867969024 766069199026450432
jpg_url https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg
p1 Siamese_cat Shetland_sheepdog Guinea_pig Golden_retriever Lakeland_terrier Irish_setter English_setter Swing Teddy Toy_poodle Labrador_retriever English_setter Tusker Pillow Platypus Golden_retriever Shopping_cart Old_english_sheepdog Golden_retriever Chihuahua Cardigan Tick Motor_scooter Saluki Ibizan_hound Microphone Pembroke Balloon Restaurant Redbone
p1_conf 0.950526 0.79745 0.994776 0.946224 0.530104 0.406047 0.298617 0.967066 0.413379 0.383346 0.919832 0.677408 0.12241 0.778113 0.974075 0.57314 0.46095 0.14802 0.908784 0.260242 0.593858 0.242538 0.255934 0.529012 0.0443334 0.0960627 0.799319 0.917525 0.279846 0.484855
p1_dog False True False True True True True False False True True True False False False True False True True True True False False True True False True False False True
p2 Pug Collie Hamster Labrador_retriever Irish_terrier Cocker_spaniel Newfoundland American_staffordshire_terrier Pillow Miniature_poodle Beagle Border_collie Warthog Apron Spotted_salamander Cocker_spaniel Chow Airedale Labrador_retriever Toy_poodle Shetland_sheepdog Nail Rifle Afghan_hound Pembroke Accordion Cardigan Confectionery Toyshop Beagle
p2_conf 0.0188769 0.0540553 0.00406879 0.0364766 0.197314 0.345646 0.149842 0.0127309 0.325623 0.153678 0.043513 0.052724 0.11987 0.0950228 0.0110676 0.111159 0.261288 0.133534 0.0303612 0.189158 0.130611 0.212589 0.145202 0.250003 0.0432093 0.0940747 0.189537 0.0493291 0.0914294 0.437527
p2_dog True True False True True True True True False True True True False False False True True True True True True False False True True False True False False True
p3 Quilt Keeshond Wood_rabbit Doormat Airedale Airedale Borzoi Staffordshire_bullterrier Miniature_schnauzer Chow Golden_retriever Cocker_spaniel Water_buffalo Wallet Bison Gibbon Labrador_retriever Tibetan_mastiff Tennis_ball Labrador_retriever Pembroke Screw Assault_rifle Golden_retriever West_highland_white_terrier Drumstick Papillon Maraca Paper_towel Basset
p3_conf 0.0076276 0.0316733 0.000205869 0.00235285 0.0825146 0.147912 0.133649 0.00703922 0.0355366 0.138543 0.0233588 0.0485719 0.105856 0.0493258 0.00389691 0.0941269 0.0741938 0.120903 0.00499562 0.144195 0.100842 0.172838 0.0970001 0.160739 0.0389056 0.0611128 0.00338619 0.0176478 0.0461474 0.0105854
p3_dog False True False False True True True True True True True True False False False False True True False True True False False True True False True False False True

Analysis and Visualization

As a result of data wrangling there are two clean datasets forming an analitical view:

  • df_arch_clean,
  • df_pred_clean.

In this section I will answer the following questions:

  • What are most common 10 dogs' names?
  • What is the most common dog's style?
  • What can we say about dogs' ratings?
  • What is tweets creation distribution over time?
  • What can we say about retweets and favorities accounts comparing to original tweets creation?

Most common 10 dogs' names

In [93]:
top_names = df_arch_clean.name.value_counts().nlargest(13)
top_names
Out[93]:
A          55
Lucy       11
Charlie    10
Cooper     10
Oliver     10
Penny      9 
Tucker     9 
The        8 
Winston    8 
Sadie      8 
Lola       8 
Toby       7 
Daisy      7 
Name: name, dtype: int64
In [94]:
top_names.plot(kind='bar')
plt.xticks(rotation=60)
plt.show()

Answer: If we exclude cases, where a letter 'A' and an article 'The' are provided, the most popular names are: Lucy, Charlie, Cooper, Oliver, Tucker, Penny, Winston, Lola, Sadie and Daisy.


Most common dogs' style

In [95]:
top_styles = df_arch_clean.dog_style.value_counts()
top_styles
Out[95]:
pupper     221
doggo      83 
puppo      23 
floofer    9  
Name: dog_style, dtype: int64
In [96]:
top_styles.plot(kind='bar')
plt.xticks(rotation=60)
plt.show()

Answer: The most common dog's style is pupper.


Dogs' rating

In [97]:
df_arch_clean.rating.describe()
Out[97]:
count    2096.000000
mean     1.169267   
std      3.966878   
min      0.000000   
25%      1.000000   
50%      1.100000   
75%      1.200000   
max      177.600000 
Name: rating, dtype: float64
In [98]:
# How many % of ratings are above 1.5 (150%)?
len(df_arch_clean[df_arch_clean.rating > 1.5]) / len(df_arch_clean.rating) * 100
Out[98]:
0.2862595419847328

Answer: There are 2096 dogs' ratings in the dataset. The worst rate is 0, the best is 177.6 (177.6%). The ratings are not normally distributed, their distribution is right-skewed (long-tailed). Most of the ratings are below 150%, only 6 (0.29%) of them are above 150%. With Atticus being the most rated of all. 75% of ratings are 120% or below and only 25% or less are below 100%. Most dogs are very well rated, with the mean rating of 117%.

In [99]:
# The 6 rating outliers
df_arch_clean[df_arch_clean.rating > 1.5]
Out[99]:
tweet_id timestamp source text rating_numerator rating_denominator name rating dog_style retweet_count favorite_count followers_count
403 810984652412424192 2016-12-19 23:06:23 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Meet Sam. She smiles 24/7 &amp; secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx 24 7 Sam 3.428571 NaN 1581 5729 7418531
528 786709082849828864 2016-10-13 23:23:56 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS 75 10 Logan 7.500000 NaN 6719 19561 7418542
586 778027034220126208 2016-09-20 00:24:34 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq 27 10 Sophie 2.700000 pupper 1780 7029 7418543
769 749981277374128128 2016-07-04 15:00:45 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh 1776 10 Atticus 177.600000 NaN 2654 5423 7418601
1473 680494726643068929 2015-12-25 21:06:00 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD 26 10 NaN 2.600000 NaN 519 1799 7418669
1820 670842764863651840 2015-11-29 05:52:33 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY 420 10 NaN 42.000000 NaN 9043 25100 7418709

Tweets creation over time

In [100]:
df_arch_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2096 entries, 0 to 2095
Data columns (total 12 columns):
tweet_id              2096 non-null int64
timestamp             2096 non-null datetime64[ns]
source                2096 non-null object
text                  2096 non-null object
rating_numerator      2096 non-null int64
rating_denominator    2096 non-null int64
name                  1493 non-null object
rating                2096 non-null float64
dog_style             336 non-null object
retweet_count         2096 non-null int64
favorite_count        2096 non-null int64
followers_count       2096 non-null int64
dtypes: datetime64[ns](1), float64(1), int64(6), object(4)
memory usage: 212.9+ KB
In [101]:
# Create two columns: 'date' to agregate 'datetime' 
# and 'tweet' to sum a number of tweets for a certain date
# by day
df_arch_clean['date'] = df_arch_clean['timestamp'].dt.date
# by week
#df_arch_clean['date'] = df_arch_clean['timestamp'].dt.week
# by month
#df_arch_clean['date'] = df_arch_clean['timestamp'].dt.month
df_arch_clean['tweet'] = 1

# Create a new dataframe with 2 columns, gruped by date
df1 = df_arch_clean[['date', 'tweet']].groupby(['date']).sum() # alternatively .count() could be used

# Use moving averages to smooth the line
df1['tweet'] = df1['tweet'].rolling(window=20).mean()

# Plot
df1.plot(figsize=(14, 8), title='New tweets over time')
plt.ylabel('Number of tweets created')
plt.show()
In [102]:
df1['tweet'].describe()
Out[102]:
count    578.000000
mean     3.305623  
std      3.022475  
min      1.300000  
25%      1.850000  
50%      2.300000  
75%      3.250000  
max      18.700000 
Name: tweet, dtype: float64

Answer: There were even more than 18 tweets on average created per day at the beginning of 2016 but this frequency quickly collapsed into about 3 on average in 2016 to be even lower in 2017. There is a clear trend of decreasing popularity in terms of creation of new tweets.


Retweets and favorities counts comparing to new tweets creation

In [103]:
# Add rewteets and favorites to the picture
df = df_arch_clean[['date', 'retweet_count', 'favorite_count']]

# Retweets
df2 = df[['date', 'retweet_count']].groupby(['date']).sum()
df2['retweet_count'] = df2['retweet_count'].rolling(window=20).mean()
#df2.plot(figsize=(16, 10))
#plt.show()

# Favorites
df3 = df[['date', 'favorite_count']].groupby(['date']).sum()
df3['favorite_count'] = df3['favorite_count'].rolling(window=20).mean()
#df3.plot(figsize=(16, 10))
#plt.show()
In [104]:
# Everything in a common grid
fig, axs = plt.subplots(2, 2, sharex=True, sharey=False, figsize=(16,10))
fig.suptitle('Retweets and favorities counts comparing to new tweets creation')
axs[0, 0].plot(df1)
axs[0, 0].set_title('Tweets')
#axs[0, 0].set_yscale('log')
axs[0, 1].plot(df2)
axs[0, 1].set_title('Retweets')
#axs[0, 1].set_yscale('log')
axs[1, 0].plot(df3)
axs[1, 0].set_title('Favorites')
#axs[1, 0].set_yscale('log')
plt.show()

Answer:

  • Tweets -> after initial boom, the amount of tweets created daily stabilizes on around 2.5 per day on average.
  • Retweets -> there is noticable variation of retweets but on average long-term they tend to stay on the same level.
  • Favorites -> after initial boom and then colapse, the trend is growing. It seems people still use historical tweets and marke them as favotes or the user base is growing which results in more and more favorites.
In [105]:
# Compare trends on a log scale for y axis
fig, axs = plt.subplots(1, 1, sharex=True, sharey=False, figsize=(14,8))

axs.set_title('Retweets and favorities counts comparison')
#axs.set_yscale('log')
axs.plot(df2, label='Retweets')
axs.plot(df3, label='Favorites')
axs.legend()

plt.show()

Answer: The number of retweets tends to stay at the same level whereas number of favorites grows over time.