Skip to content

Instantly share code, notes, and snippets.

@codemasher
Last active November 20, 2022 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codemasher/7d809b8bd0feebc6298e39f2d2a8ded1 to your computer and use it in GitHub Desktop.
Save codemasher/7d809b8bd0feebc6298e39f2d2a8ded1 to your computer and use it in GitHub Desktop.
<?php
/**
* parse-dril-csv.php
*
* @see https://docs.google.com/spreadsheets/d/1juZ8Dzx-hVCDx_JLVOKI1eHzBlURHd7u6dqkb3F8q4w (every wint (@dril) tweet)
* @see https://gist.github.com/codemasher/d921cab21c3e684e6bb69219da900b4e (dril's entire timeline, fetched via the unofficial search API)
* @see https://gist.github.com/codemasher/67ba24cee88029a3278c87ff9a0095ba (Fetch your twitter timeline via the unofficial adaptive search API)
*
* @created 20.11.2022
* @author smiley <smiley@chillerlan.net>
* @copyright 2022 smiley
* @license MIT
*/
// the path to the json file from the gist or fetched via timeline.php
$drilJSON = __DIR__.'/from-dril/c1e557f317aedab4bb23182877876fe7.json';
// the path to the dril .csv downloaded from google docs
$drilCSV = __DIR__.'/dril.csv';
// the output file path
$output = __DIR__.'/dril.csv.json';
// the fields defined in the .csv
$fields = [
'name', // always "wint (@dril)"
'text',
'date',
'time',
'retweets',
'likes',
'link',
'type', // Tweet, Reply, ReTweet
'image', // No, Yes
'video', // No, Yes
'ad',
'description',
'location', // always "big burbank"
'language',
'source',
];
ini_set('date.timezone', 'UTC');
$fh = fopen($drilCSV, 'r');
$tweets = [];
if(!$fh){
throw new Exception('could not create file handle');
}
while(!feof($fh)){
$data = fgetcsv($fh);
if($data === false){
break;
}
$tweet = array_combine($fields, $data);
$tweet['user_id'] = 16298441;
$tweet['id'] = intval(str_replace('https://twitter.com/dril/status/', '', trim($tweet['link'])));
$tweet['created_at'] = strtotime($tweet['date'].' '.$tweet['time']);
$tweet['retweet_count'] = intval($tweet['retweets']);
$tweet['favorite_count'] = intval($tweet['likes']);
$tweet['image'] = $tweet['image'] === 'Yes';
$tweet['video'] = $tweet['video'] === 'Yes';
unset($tweet['name'], $tweet['date'], $tweet['time'], $tweet['link'], $tweet['ad'], $tweet['description'], $tweet['location'], $tweet['source']);
$tweets[] = $tweet;
}
fclose($fh);
// remove the first element (header/description)
array_shift($tweets);
// add tweet IDs as array keys (array_shift would cause re-numbering from 0)
$tweets = array_combine(array_column($tweets, 'id'), $tweets);
// now open the json file archived from the search API
$drilTL = json_decode(json: file_get_contents($drilJSON), associative: true, flags: JSON_THROW_ON_ERROR);
// unset all tweets that we have already archived with metadata
$diff = array_diff_key($tweets, $drilTL);
// save the remaining tweets to json
file_put_contents($output, json_encode($diff, JSON_THROW_ON_ERROR|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT));
{
"6863416285": {
"text": "RT @SarahPalinUSA: In Calif,had blast w/William Shatner,gig w/him airs tonite on Conan.Honored 2 have Wounded Warriors in studio audience=TRUE American heroes-",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 6863416285,
"created_at": 1261324980,
"retweet_count": 0,
"favorite_count": 0
},
"7485181723": {
"text": "RT @jbl_anzai: アフロサムライ。映画化!!GONZOが作るのかな?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Japanese",
"user_id": 16298441,
"id": 7485181723,
"created_at": 1262884380,
"retweet_count": 0,
"favorite_count": 0
},
"7869854019": {
"text": "RT @radiometricx: Listening to a podcast.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 7869854019,
"created_at": 1263748800,
"retweet_count": 0,
"favorite_count": 0
},
"8386937036": {
"text": "RT @truthstampede: Liborant = deodorant for liberals, they stink",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 8386937036,
"created_at": 1264804380,
"retweet_count": 0,
"favorite_count": 0
},
"11531776923": {
"text": "RT @kfc_colonel: loves April Fool's Day. Just loves it.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 11531776923,
"created_at": 1270296900,
"retweet_count": 0,
"favorite_count": 0
},
"11720356355": {
"text": "RT @discofeverrocks: Jesus I Love You is a trending topic??!! wow i guess there's more hope than i realized..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 11720356355,
"created_at": 1270590420,
"retweet_count": 0,
"favorite_count": 0
},
"11942213272": {
"text": "RT @kwwrr: http://translationparty.com/#7165279 #tcot",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qme",
"user_id": 16298441,
"id": 11942213272,
"created_at": 1270913640,
"retweet_count": 0,
"favorite_count": 0
},
"11943001119": {
"text": "RT @stevejspencer: #tcot",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qht",
"user_id": 16298441,
"id": 11943001119,
"created_at": 1270914660,
"retweet_count": 0,
"favorite_count": 0
},
"12228789703": {
"text": "RT @SarahPalinUSA: Unbelievable, Outrageous“Whether we like it or not,we remain a dominant military superpower”-Obama \n \n YES,Mr.Pres,we LIKE knowing we r strong",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 12228789703,
"created_at": 1271345040,
"retweet_count": 0,
"favorite_count": 0
},
"13164226328": {
"text": "RT @ozzythefox: I have been advised not to go to the #teaparty in my sissy dress and #diapers :/",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 13164226328,
"created_at": 1272680160,
"retweet_count": 0,
"favorite_count": 0
},
"14494890722": {
"text": "RT @ababyduck: egg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 14494890722,
"created_at": 1274536860,
"retweet_count": 0,
"favorite_count": 0
},
"15312944355": {
"text": "RT @cartman: getting an acount on twitter",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 15312944355,
"created_at": 1275555540,
"retweet_count": 0,
"favorite_count": 0
},
"15432502474": {
"text": "RT @magichdetective: RIP Richard Dunn",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 15432502474,
"created_at": 1275673920,
"retweet_count": 0,
"favorite_count": 0
},
"15625995476": {
"text": "RT @tonyhawk: Going to JoBerg to give a speech on new marketing & social media. They like what I'm doing here. Little do they know I'm fully winging it.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 15625995476,
"created_at": 1275914040,
"retweet_count": 0,
"favorite_count": 0
},
"16624318060": {
"text": "RT @SarahPalinUSA: Gulf disaster needs divine intervention as man's efforts have been futile. Gulf lawmakers designate today Day of Prayer for solution/miracle",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 16624318060,
"created_at": 1277047500,
"retweet_count": 0,
"favorite_count": 0
},
"16840621219": {
"text": "RT @beebee880: shoutout \n @dril",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 16840621219,
"created_at": 1277289180,
"retweet_count": 0,
"favorite_count": 0
},
"17926652482": {
"text": "RT @beebee880: Red Lobster Biscuits are #1",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 17926652482,
"created_at": 1278480960,
"retweet_count": 0,
"favorite_count": 0
},
"20736286064": {
"text": "RT @the_ironsheik: fuck the inceptiopn movie.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 20736286064,
"created_at": 1281387240,
"retweet_count": 0,
"favorite_count": 0
},
"21593997525": {
"text": "RT @SenJohnMcCain: Last American combat troops leave Iraq. I think President George W. Bush deserves some credit for victory.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 21593997525,
"created_at": 1282238160,
"retweet_count": 0,
"favorite_count": 0
},
"21689915174": {
"text": "RT @truthstampede: who is smarter the Lion or Humans? Lions have survived for ages with nothing, humans we need air condition",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 21689915174,
"created_at": 1282333320,
"retweet_count": 0,
"favorite_count": 0
},
"24135652105": {
"text": "RT @Loramira: @petsmart bought & did what you told me too. Less than a month later, dead Guinea pig & an upset child. Thanks.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 24135652105,
"created_at": 1284150960,
"retweet_count": 0,
"favorite_count": 0
},
"24984234464": {
"text": "RT @laurenfuster: @dril you look like an old penis!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 24984234464,
"created_at": 1284945840,
"retweet_count": 0,
"favorite_count": 0
},
"25291831603": {
"text": "RT @oldgrandman: Obaba is costing this Nation casualties just by waging his tongue It is Johnston all over again",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 25291831603,
"created_at": 1285233660,
"retweet_count": 0,
"favorite_count": 0
},
"25400284053": {
"text": "RT @the_ironsheik: Only the Kramer is no good mother fucker",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 25400284053,
"created_at": 1285332300,
"retweet_count": 0,
"favorite_count": 0
},
"29039929109": {
"text": "RT @beebee880: im glad there banning #fourloko i got sick punking up blood for real only had 2",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 29039929109,
"created_at": 1288312980,
"retweet_count": 0,
"favorite_count": 0
},
"2933462738669568": {
"text": "RT @kingsthings: A man has been charged with threatening to kill, kidnap or inflict bodily harm on former President George W. Bush",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 2933462738669568,
"created_at": 1289534340,
"retweet_count": 0,
"favorite_count": 0
},
"6351961829933057": {
"text": "RT @Aurrry: #thingsthatshouldbeoutofstyle Aids",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 6351961829933057,
"created_at": 1290349380,
"retweet_count": 0,
"favorite_count": 0
},
"10689492402835457": {
"text": "RT @SarahPalinUSA: Happy Hanukkah! Rebelling against oppressors, enduring great threats=Jewish community encourages perseverance &belief in miracles;we honor u",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 10689492402835457,
"created_at": 1291383540,
"retweet_count": 0,
"favorite_count": 0
},
"11099355234701312": {
"text": "RT @hellooooonewman: @dril This thing is like an onion: the more layers you peel, the more it stinks!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 11099355234701312,
"created_at": 1291481220,
"retweet_count": 0,
"favorite_count": 0
},
"11762463393452032": {
"text": "RT @beebee880: is it true that the end of world is coming may 21 2011",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 11762463393452032,
"created_at": 1291639320,
"retweet_count": 0,
"favorite_count": 0
},
"13953683469373440": {
"text": "RT @JoseCanseco: I am and will always be just simply a basball player,my tomb stone will just say. Baseball.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 13953683469373440,
"created_at": 1292161740,
"retweet_count": 0,
"favorite_count": 0
},
"14184992762503168": {
"text": "RT @EpicYoak: Finally watched the VGAs. Good stuff. Except the sex jokes. Could of done without that",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 14184992762503168,
"created_at": 1292216940,
"retweet_count": 0,
"favorite_count": 0
},
"14479344764198912": {
"text": "RT @LilNarutoGirl: #inhighschool, their is a lot of drama",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 14479344764198912,
"created_at": 1292287080,
"retweet_count": 0,
"favorite_count": 0
},
"15958827065147392": {
"text": "RT @glennbeck: Just left Tangled.THIS IS THE BEST DISNEY ANIMATED FILM. Hard to say ever, but it is. I am a Disneyphile and a harsh critic. Brilliant.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 15958827065147392,
"created_at": 1292639820,
"retweet_count": 0,
"favorite_count": 0
},
"18362634524950529": {
"text": "RT @dough_c: 看起來 我們金在中 今天過了一個lonly的christmas eve",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Chinese",
"user_id": 16298441,
"id": 18362634524950529,
"created_at": 1293212940,
"retweet_count": 0,
"favorite_count": 0
},
"28780981586501633": {
"text": "RT @HulkHogan4Real: WE e",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 28780981586501633,
"created_at": 1295696880,
"retweet_count": 0,
"favorite_count": 0
},
"29729965025009664": {
"text": "RT @GoofusGallant: @the_ironsheik the goofus is no good no dick no balls mother fucker. The gallant is intelligent jew he respect the legend fuck hulk hogan",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 29729965025009664,
"created_at": 1295923140,
"retweet_count": 0,
"favorite_count": 0
},
"31916387660206080": {
"text": "RT @VanessaHikaru: Time de merda Ffffffuuuuu",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 31916387660206080,
"created_at": 1296444420,
"retweet_count": 0,
"favorite_count": 0
},
"31917321337446400": {
"text": "RT @NewYorkPost: Small Bahamas island inhabited by seven pigs http://t.co/S1tUEth",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 31917321337446400,
"created_at": 1296444600,
"retweet_count": 0,
"favorite_count": 0
},
"34320766539399168": {
"text": "RT @beebee880: watch the super bowl at 3 piffic 6 estern i think its on fox cool",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 34320766539399168,
"created_at": 1297017660,
"retweet_count": 0,
"favorite_count": 0
},
"38464214876037120": {
"text": "RT @beebee880: if you like @cnnbrk follow me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 38464214876037120,
"created_at": 1298005500,
"retweet_count": 0,
"favorite_count": 0
},
"42466798586703873": {
"text": "RT @GamesEbooks: Extreme Leveling is NOT about using bots, exploits, hacks or cheats I am a real gamer. I do things the right way, and do not",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 42466798586703873,
"created_at": 1298959800,
"retweet_count": 0,
"favorite_count": 0
},
"47695848951386112": {
"text": "RT @aroonareejhsing: i thank my Lord above for giving me so many,many beautifl tweeters who respond to my tweets May God bless all of u for liking me & i love u",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 47695848951386112,
"created_at": 1300206540,
"retweet_count": 0,
"favorite_count": 0
},
"50561264467968002": {
"text": "RT @aroonareejhsing: always eat 10 basil leaves on empty stomach to keep chronic diseases from attacking u",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 50561264467968002,
"created_at": 1300889700,
"retweet_count": 0,
"favorite_count": 0
},
"52140433190551552": {
"text": "RT @Leiigghh: Check out http://homercakes.tumblr.com/ for our growing collection of great Homer cakes.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 52140433190551552,
"created_at": 1301266200,
"retweet_count": 0,
"favorite_count": 0
},
"54761751065010176": {
"text": "RT @JoseCanseco: My father was the greatest man I ever new",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 54761751065010176,
"created_at": 1301891160,
"retweet_count": 0,
"favorite_count": 0
},
"55109747216621568": {
"text": "RT @ThaRealCedric: Why do people keep saying \"Tupac Back\" ? He is dead...let the man Rest In Peace.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 55109747216621568,
"created_at": 1301974140,
"retweet_count": 0,
"favorite_count": 0
},
"57190697597542401": {
"text": "RT @Garfield: I don't do conformity.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 57190697597542401,
"created_at": 1302470280,
"retweet_count": 0,
"favorite_count": 0
},
"62423984897130496": {
"text": "RT @beebee880: chich and chung homer",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 62423984897130496,
"created_at": 1303717980,
"retweet_count": 0,
"favorite_count": 0
},
"65211803914870784": {
"text": "RT @DogBountyHunter: @keagankegels none of my fans wish Aids on anyone & if they do there a member of the Clan Klu Klux and not a fan of uors",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 65211803914870784,
"created_at": 1304382660,
"retweet_count": 0,
"favorite_count": 0
},
"75209327341879297": {
"text": "RT @aroonareejhsing: a man in madhya pradesh stabbed his wife to death on the directions of tantrik who told him she had snake in tummy which would harm him",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 75209327341879297,
"created_at": 1306766220,
"retweet_count": 0,
"favorite_count": 0
},
"99981146980495360": {
"text": "RT @PepperEbooks: How to increase your income simply by doing more of what you re already doing .",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 99981146980495360,
"created_at": 1312672320,
"retweet_count": 0,
"favorite_count": 0
},
"102386639229292545": {
"text": "RT @the_ironsheik: the money in the america become shit like the virgil. not even the ted dibiase make the money real",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 102386639229292545,
"created_at": 1313245800,
"retweet_count": 0,
"favorite_count": 0
},
"111281230024155136": {
"text": "RT @girls: Tweets about girls, to come.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 111281230024155136,
"created_at": 1315366440,
"retweet_count": 0,
"favorite_count": 0
},
"114903087696715777": {
"text": "RT @BieberReject: #Imagine U:*crying* Justin:*wraps his arms around u* U:*cry on his shoulder* Justin:shhh it's okay Beautiful,i'm here for you",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 114903087696715777,
"created_at": 1316229960,
"retweet_count": 0,
"favorite_count": 0
},
"115478094055354369": {
"text": "RT @MexicanAtheist: On the third day Jesus the Christ rose &amp; said \"That's the last time I drink tequila! Dude, where's my donkey??\" To be cont. #Mextianity",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 115478094055354369,
"created_at": 1316367060,
"retweet_count": 0,
"favorite_count": 0
},
"124640148976709632": {
"text": "RT @DogBountyHunter: @glifemusic every Dog has his day but the Nights belong to ME",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 124640148976709632,
"created_at": 1318551480,
"retweet_count": 0,
"favorite_count": 0
},
"124640403621281792": {
"text": "RT @DogBountyHunter: @HarveyLevinTMZ brother Harv the best way to catch a pervert is to Trap them",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 124640403621281792,
"created_at": 1318551540,
"retweet_count": 0,
"favorite_count": 0
},
"135950493280239616": {
"text": "RT @famalyguy: –ø",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Russian",
"user_id": 16298441,
"id": 135950493280239616,
"created_at": 1321248060,
"retweet_count": 0,
"favorite_count": 0
},
"136997983307833345": {
"text": "RT @DogBountyHunter: @BoredomCorner What remember Sissy Jesus used a bull whip to clean The Temple All Christians are not Sissys",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 136997983307833345,
"created_at": 1321497780,
"retweet_count": 0,
"favorite_count": 0
},
"155186252524699648": {
"text": "RT @MenMenstruation: Just because I'm #period-positive, interested in the female anatomy and feminine hygiene, I'm actually not gay. This has no relationship.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 155186252524699648,
"created_at": 1325834220,
"retweet_count": 0,
"favorite_count": 0
},
"159744974378897408": {
"text": "RT @HolySka1991: @dril Only The English Version Of Wikipedia Is Blackout. The Rest Are OK",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 159744974378897408,
"created_at": 1326921120,
"retweet_count": 0,
"favorite_count": 0
},
"159745819862511616": {
"text": "RT @HolySka1991: Does Anybody Consider Streetlight Manifesto A Ska Band? In My Opinion, I Think Of Them As Folk, Jazz And Punk Rock.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 159745819862511616,
"created_at": 1326921300,
"retweet_count": 0,
"favorite_count": 0
},
"160513380740898816": {
"text": "RT @CaliBoyRobbie: #IWouldDoAnythingFor Deritos",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 160513380740898816,
"created_at": 1327104300,
"retweet_count": 0,
"favorite_count": 0
},
"160560634298249216": {
"text": "RT @njs1407: Wow, it's such a favorite song that you don't know the title OR the artist. RT @dril #myfavorite90ssong the blue song by daft punk",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 160560634298249216,
"created_at": 1327115580,
"retweet_count": 0,
"favorite_count": 0
},
"160891095990022146": {
"text": "RT @ItsjustR: @dril You're a dick, they're was nothing disgraceful about Joe Pa's life.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 160891095990022146,
"created_at": 1327194360,
"retweet_count": 0,
"favorite_count": 0
},
"160978609790660608": {
"text": "RT @ItsjustR: @dril faggot trying too hard to be funny",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 160978609790660608,
"created_at": 1327215240,
"retweet_count": 0,
"favorite_count": 0
},
"162521265989619712": {
"text": "RT @Gallardo_baby: I Don’t Want To Do My Fucking Project Of Plants",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 162521265989619712,
"created_at": 1327583040,
"retweet_count": 0,
"favorite_count": 0
},
"162521251674460160": {
"text": "RT @Gallardo_baby: My Dad is Making me do My Project of Plants",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 162521251674460160,
"created_at": 1327583040,
"retweet_count": 0,
"favorite_count": 0
},
"164873433929355266": {
"text": "RT @DoughAirline: Happy black history mouth #",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 164873433929355266,
"created_at": 1328143860,
"retweet_count": 0,
"favorite_count": 0
},
"174037463206084608": {
"text": "RT @Nezumi_Youjo: @dril I didn't know that \"own me\" meant \"link to a lame, tired insult that wouldn't phase a four-year-old.\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 174037463206084608,
"created_at": 1330328700,
"retweet_count": 0,
"favorite_count": 0
},
"174963319373955072": {
"text": "RT @GibbHazel: sad to here that Davy Jone Monkees had died",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 174963319373955072,
"created_at": 1330549440,
"retweet_count": 0,
"favorite_count": 0
},
"174964157936959489": {
"text": "RT @jeanettebogue: RIP #davey Jomes.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Lithuanian",
"user_id": 16298441,
"id": 174964157936959489,
"created_at": 1330549680,
"retweet_count": 0,
"favorite_count": 0
},
"177616623665033216": {
"text": "RT @DamnnnItDarrian: damn fire dril",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 177616623665033216,
"created_at": 1331182020,
"retweet_count": 0,
"favorite_count": 0
},
"202087839415025664": {
"text": "RT @StewieJokess: RT this if you Love You're mom #HappyMothersDay",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 202087839415025664,
"created_at": 1337016420,
"retweet_count": 0,
"favorite_count": 0
},
"213262041903927297": {
"text": "RT @sedwardscarson: @dril SOMETIMES WHEN YOU ARE IN NATURE AND NO ONE FOR MILES CAN AROUND MY AUNT CONTROLED 1000 ACRES OF FIREWOOD..PECAN CUT THEM DOWN THE CRY",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 213262041903927297,
"created_at": 1339680600,
"retweet_count": 0,
"favorite_count": 0
},
"213262273093967875": {
"text": "RT @sedwardscarson: @dril YOU CAN DO THAT AND TREES CRY AND TALK",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 213262273093967875,
"created_at": 1339680660,
"retweet_count": 0,
"favorite_count": 0
},
"216612776825716736": {
"text": "RT @NateHairston: Bored at this funeral smh http://t.co/HrcRZKyA",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 216612776825716736,
"created_at": 1340479440,
"retweet_count": 0,
"favorite_count": 0
},
"216613161741205504": {
"text": "RT @_jaaayLOVE: At my uncles boring funeral reception thing...im starving.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 216613161741205504,
"created_at": 1340479560,
"retweet_count": 0,
"favorite_count": 0
},
"218213829912428544": {
"text": "RT @B_pandy_PKT: Day 2 of this coupon bullshit",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 218213829912428544,
"created_at": 1340861160,
"retweet_count": 0,
"favorite_count": 0
},
"218215914875785217": {
"text": "RT @Larrybi05071879: Friend bullshit walmart connection",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 218215914875785217,
"created_at": 1340861700,
"retweet_count": 0,
"favorite_count": 0
},
"219353792108433409": {
"text": "RT @5BULLDOZER9: #DemocratMovies Old Yeller dog democrat gets shot",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 219353792108433409,
"created_at": 1341132960,
"retweet_count": 0,
"favorite_count": 0
},
"221843231783141376": {
"text": "RT @mazza_4: I Think Zombie Apocolips Is Coming For Us Next üò≥",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 221843231783141376,
"created_at": 1341726480,
"retweet_count": 0,
"favorite_count": 0
},
"221846711197368321": {
"text": "RT @EleventyLeaffy: I am going to wear my new skinny jeans, along with my #DoctorWhooves shirt tomorrow to church XD totaly #brony swag!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 221846711197368321,
"created_at": 1341727320,
"retweet_count": 0,
"favorite_count": 0
},
"222825783033479169": {
"text": "RT @j_willington: @BryannaThomas lol. if you incest. ha.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 222825783033479169,
"created_at": 1341960780,
"retweet_count": 0,
"favorite_count": 0
},
"222825781280256001": {
"text": "RT @MCLOVIN760: @PurpleGiraffe21 ^_^ fine if you incest ha jk bye:)",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 222825781280256001,
"created_at": 1341960780,
"retweet_count": 0,
"favorite_count": 0
},
"230716093860298753": {
"text": "RT @MikhramM: To many gay in here, I'm out ! Screw you KFC !!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 230716093860298753,
"created_at": 1343841960,
"retweet_count": 0,
"favorite_count": 0
},
"240963963418972160": {
"text": "RT @BenderReal: fui",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 240963963418972160,
"created_at": 1346285220,
"retweet_count": 0,
"favorite_count": 0
},
"242333514958266368": {
"text": "RT @Badgeman69: chillin at home, going to sand my sons retro tricycle and primer it...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 242333514958266368,
"created_at": 1346611740,
"retweet_count": 0,
"favorite_count": 0
},
"244591686355927040": {
"text": "RT @SMOKERSOFCIGARS: My friend, not get tongue bite.\n \n Conrad, your friend; of Argentine. (@YouTube http://t.co/Ev1kHRRG)",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 244591686355927040,
"created_at": 1347150120,
"retweet_count": 0,
"favorite_count": 0
},
"245641864173191168": {
"text": "RT @AngelicaPickle6: To the people who tweet about 9/11 just to get a bunch of retweets, you make me SICK. This is not something to try to get \"popular\" over.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 245641864173191168,
"created_at": 1347400500,
"retweet_count": 0,
"favorite_count": 0
},
"257857423585460224": {
"text": "RT @glennbeck: I'm proud to announce #1791Denim: REAL American jeans, made by Americans http://t.co/ALskhXHE. sj",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 257857423585460224,
"created_at": 1350312960,
"retweet_count": 0,
"favorite_count": 0
},
"263481706521182208": {
"text": "RT @PekkaMoMo: @mtn_dew I live on long island where can I find gamer fuel for halo 4",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 263481706521182208,
"created_at": 1351653900,
"retweet_count": 0,
"favorite_count": 0
},
"265696337658523648": {
"text": "RT @JustcallmeSonic: @InYOUNGWeTrust I think 9/11 really happened. But everyone has Their opinion on what they think happened.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 265696337658523648,
"created_at": 1352181900,
"retweet_count": 0,
"favorite_count": 0
},
"268531272215842818": {
"text": "RT @chuckwoolery: @RadioAnna @Mark_JekyllHyde Hey U disgusting piece of crap Its Chuck. U'r blocked.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 268531272215842818,
"created_at": 1352857800,
"retweet_count": 0,
"favorite_count": 0
},
"268535155298279424": {
"text": "RT @chuckwoolery: @SimonsStephanie @MittRomney Sorry U are not up to standard for me. Clean it up . Bolcked",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 268535155298279424,
"created_at": 1352858700,
"retweet_count": 0,
"favorite_count": 0
},
"268538590076739584": {
"text": "RT @chuckwoolery: JEFFERY THE LIB IS NOW JEFFERY THE BLOCKED. HIIS REPLY WAS ZZZZZZZ. I 'VE HAD ENOUGH. THis is insane to back this POTUS.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 268538590076739584,
"created_at": 1352859540,
"retweet_count": 0,
"favorite_count": 0
},
"281835940480176128": {
"text": "RT @simson: look",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 281835940480176128,
"created_at": 1356029880,
"retweet_count": 0,
"favorite_count": 0
},
"293020956715261952": {
"text": "RT @pr0w: @dril banksy *",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 293020956715261952,
"created_at": 1358696580,
"retweet_count": 0,
"favorite_count": 0
},
"339782970242117634": {
"text": "RT @mikecankiss69: I think the world should be in diapers and toilet should be thrown away",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 339782970242117634,
"created_at": 1369845540,
"retweet_count": 0,
"favorite_count": 0
},
"353495240327430146": {
"text": "RT @ImWaste: shitter 实在太牛了",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Chinese",
"user_id": 16298441,
"id": 353495240327430146,
"created_at": 1373114760,
"retweet_count": 0,
"favorite_count": 0
},
"364099836775104512": {
"text": "RT @AlexBrianWhite: Dr. Who gives a fuck",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 364099836775104512,
"created_at": 1375643100,
"retweet_count": 0,
"favorite_count": 0
},
"364099806467080192": {
"text": "RT @Phil_NorrisFOO: Dr who gives a shit",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 364099806467080192,
"created_at": 1375643100,
"retweet_count": 0,
"favorite_count": 0
},
"368557706858078208": {
"text": "RT @srfulton22: @DailyCaller oBOMAS KIDS WONT GO TO JAIL FOR PAINTING",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 368557706858078208,
"created_at": 1376705940,
"retweet_count": 0,
"favorite_count": 0
},
"368558368413069313": {
"text": "RT @srfulton22: @FoxNews sTOP THE MONEY",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 368558368413069313,
"created_at": 1376706120,
"retweet_count": 0,
"favorite_count": 0
},
"379066230277029888": {
"text": "RT @GitRDoneLarry: Never forget today. I haven't! It appears some have.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 379066230277029888,
"created_at": 1379211360,
"retweet_count": 0,
"favorite_count": 0
},
"388324863347150848": {
"text": "RT @officialjaden: When I Die. Then You Will Realize",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 388324863347150848,
"created_at": 1381418820,
"retweet_count": 0,
"favorite_count": 0
},
"394044861516881920": {
"text": "RT @GoodLiker: @AnonymousWiki hi can u say for me how u did to know and lesson to be a the best hacker in the world?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 394044861516881920,
"created_at": 1382782560,
"retweet_count": 0,
"favorite_count": 0
},
"394045422937059328": {
"text": "RT @simpsonsboy: low quality site",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 394045422937059328,
"created_at": 1382782680,
"retweet_count": 0,
"favorite_count": 0
},
"394048097166577664": {
"text": "RT @brandlord: better not to tweet the latest but tweet the hottest-brandlord",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 394048097166577664,
"created_at": 1382783340,
"retweet_count": 0,
"favorite_count": 0
},
"397501920073744384": {
"text": "RT @BevisSimpson: Most of my body is real but my ass is a cartoon in the style of Archie comics and my dick is barts dick from the Simpsons movie",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 397501920073744384,
"created_at": 1383606780,
"retweet_count": 0,
"favorite_count": 0
},
"399156399609249792": {
"text": "RT @aroonareejhsing: I AM AMAZED TO SEE OIN TWITTER TOO THERE ARE MEN WHO MISBEHAVE AND TALK PORN THIS IS THE FIRST TIME I HAVE COME ACROSS SUCH FILTHY MEN",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 399156399609249792,
"created_at": 1384001220,
"retweet_count": 0,
"favorite_count": 0
},
"400102862359105537": {
"text": "RT @GenOpportunity: The best DJ in Miami talking about how #obamacare hurts our generation. You can #optout! @josephmicha3l @univmiami http://t.co/AUz2mY4Lwv",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 400102862359105537,
"created_at": 1384226880,
"retweet_count": 0,
"favorite_count": 0
},
"402682365098479616": {
"text": "RT @BazingaFan80: http://t.co/DSsOGgxn\n \n What a.funny pic that I found.on my feed #Funny",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 402682365098479616,
"created_at": 1384841880,
"retweet_count": 0,
"favorite_count": 0
},
"413511172353433602": {
"text": "RT @1tallmidget: Time To Play The #knockoutgame with #A&amp;E #IStandWithPhilRobertson #DuckDynasty #FuckYouA&amp;E",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 413511172353433602,
"created_at": 1387423680,
"retweet_count": 0,
"favorite_count": 0
},
"414493729651982337": {
"text": "RT @abd86t: قاعد اسمع غنية pink floyed money و اطالع برنامج عن فرس النهر بنفس الوقت و مندمج بالاثنين",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Arabic",
"user_id": 16298441,
"id": 414493729651982337,
"created_at": 1387657980,
"retweet_count": 0,
"favorite_count": 0
},
"417824703240491008": {
"text": "RT @GirlHelper: Girls are a gift from god.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 417824703240491008,
"created_at": 1388452140,
"retweet_count": 0,
"favorite_count": 0
},
"469755499395956736": {
"text": "RT @Ryushi_Hiryuu: @TheEllenShow : Uhh, Ellen... Luigi and Mario ARE confirmed brothers by Nintendo.\n \n HOWEVER. Waluigi and Wario are NOT brothers as byNintendo",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 469755499395956736,
"created_at": 1400833380,
"retweet_count": 0,
"favorite_count": 0
},
"469755477505884160": {
"text": "RT @ElBlogiante: Que es esa mierda de Mario y Luigi gays en el show de ellen?! Ahora van a joder personajes que ni son de ellos para convencer las masas?!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 469755477505884160,
"created_at": 1400833380,
"retweet_count": 0,
"favorite_count": 0
},
"496200719037648896": {
"text": "RT @bonberman: bonberman",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "ht",
"user_id": 16298441,
"id": 496200719037648896,
"created_at": 1407138420,
"retweet_count": 0,
"favorite_count": 0
},
"508349592271065088": {
"text": "RT @ass666: looking for cheap vacations",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 508349592271065088,
"created_at": 1410034920,
"retweet_count": 0,
"favorite_count": 0
},
"516236382935973888": {
"text": "RT @budweiserguy: have a lunch",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 516236382935973888,
"created_at": 1411915260,
"retweet_count": 0,
"favorite_count": 0
},
"521542846130954241": {
"text": "RT @MrPosts: Ever felt so annoyed to the point where you just say fuck to everything ?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 521542846130954241,
"created_at": 1413180420,
"retweet_count": 0,
"favorite_count": 0
},
"535219801812402176": {
"text": "RT @CDAVIDCIN: @NickyHilton THE EARTH GOT TWENTY YEARS LEFT.THEN DIES.THE HISTROY CHANNEL THE DEVIL S GRAVE YARD.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 535219801812402176,
"created_at": 1416441300,
"retweet_count": 0,
"favorite_count": 0
},
"546013399092826112": {
"text": "RT @noka3831: @dril Follow @freshcooltwit &amp;Ikut #UndianPSM berhadiah gadget.Cek\n primasolusimedikal•com http://t.co/4g0YQqchsX *97",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 546013399092826112,
"created_at": 1419014700,
"retweet_count": 0,
"favorite_count": 0
},
"551876577366392832": {
"text": "RT @lunchboy: Sometimes I like to get in my car and see where it takes me. Tonight it's @PeiWei",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 551876577366392832,
"created_at": 1420412580,
"retweet_count": 0,
"favorite_count": 0
},
"552388014253834240": {
"text": "RT @AssGamer: NÃOGOSTADEMIM\n ---——-/´¯/)——--(\\¯`\\\n ———/—//———--\\\\—\\\n ——--/—//————-\\\\—\\\n —-/´¯/—/´¯\\———/¯`\\—\\¯`\\\n -/-/--/—/—/-|_—-_|-\\---\\—\\—\\-\\ -",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Portuguese",
"user_id": 16298441,
"id": 552388014253834240,
"created_at": 1420534500,
"retweet_count": 0,
"favorite_count": 0
},
"559184775844728833": {
"text": "RT @kevincosner: Hoammm,so sleepy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 559184775844728833,
"created_at": 1422154980,
"retweet_count": 0,
"favorite_count": 0
},
"559187230192062464": {
"text": "RT @JohnTravolda: follow for upcomming movies updates",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 559187230192062464,
"created_at": 1422155580,
"retweet_count": 0,
"favorite_count": 0
},
"561967271896440833": {
"text": "RT @depressingman: @McDonalds #AmexMcDs.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "",
"user_id": 16298441,
"id": 561967271896440833,
"created_at": 1422818400,
"retweet_count": 0,
"favorite_count": 0
},
"571339912735272960": {
"text": "RT @TravisMcKenrick: @dril LMAO!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "ht",
"user_id": 16298441,
"id": 571339912735272960,
"created_at": 1425052980,
"retweet_count": 0,
"favorite_count": 0
},
"573048140242296832": {
"text": "RT @hanging_Chad: Home Depot cust serv line...URGH",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 573048140242296832,
"created_at": 1425460260,
"retweet_count": 0,
"favorite_count": 0
},
"597142386465230848": {
"text": "RT @Petersangma: All girls are beauty",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 597142386465230848,
"created_at": 1431204780,
"retweet_count": 0,
"favorite_count": 0
},
"597142351627350017": {
"text": "RT @Petersangma: Beware of touching my gadgets\n \n All my gadgets is encrypted with full security system so that no one can leak my personal files.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 597142351627350017,
"created_at": 1431204780,
"retweet_count": 0,
"favorite_count": 0
},
"597142315031986176": {
"text": "RT @Petersangma: looking for communication Builder partnership with professional skills in Information Technology",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 597142315031986176,
"created_at": 1431204780,
"retweet_count": 0,
"favorite_count": 0
},
"597143365478658048": {
"text": "RT @onley_tom: Im singel bissness owner looking for gf leading to marriage no games",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 597143365478658048,
"created_at": 1431205020,
"retweet_count": 0,
"favorite_count": 0
},
"597144582598569985": {
"text": "RT @999dhali: @Georgiejackk i m single man looking for gf",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 597144582598569985,
"created_at": 1431205320,
"retweet_count": 0,
"favorite_count": 0
},
"607707576189493248": {
"text": "RT @drymouthguru: Biotene is by far the #1 dry mouth product in the world !!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 607707576189493248,
"created_at": 1433723700,
"retweet_count": 0,
"favorite_count": 0
},
"607707679826526210": {
"text": "RT @drymouthguru: Wow....Everyone was tweeting about FREE Biotene Gum at Walgreens. #biotene #drymouth #dental #freestuff #dealseekingmom #dentist #deals",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 607707679826526210,
"created_at": 1433723760,
"retweet_count": 0,
"favorite_count": 0
},
"618288727115198464": {
"text": "RT @SR429info: SR 429 will be closed THURSDAY night between @SR414info and 441 from 11 pm to 5 am. Use @SR451info as an alternate. http://t.co/UVlZU4coHT",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618288727115198464,
"created_at": 1436246460,
"retweet_count": 0,
"favorite_count": 0
},
"618290572248244224": {
"text": "RT @GuysTruth: Real guys are are athletic and can play every sport with no problem",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618290572248244224,
"created_at": 1436246880,
"retweet_count": 0,
"favorite_count": 0
},
"618290526219939840": {
"text": "RT @menstruth: No matter what you do. Do not get sexual with a woman over a text message before getting sexual with her in person. Big mistake.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618290526219939840,
"created_at": 1436246880,
"retweet_count": 0,
"favorite_count": 0
},
"618290677999255552": {
"text": "RT @LadsTruth: Listen Girls. We don't care about your fucking feelings. We just want to Fuck You Right In The Pussy! #GirlProblems #truth",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618290677999255552,
"created_at": 1436246940,
"retweet_count": 0,
"favorite_count": 0
},
"618290891556401152": {
"text": "RT @MansTruth: If a hot ass woman walks by, we're going to check her out! #truth",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618290891556401152,
"created_at": 1436247000,
"retweet_count": 0,
"favorite_count": 0
},
"618291152748306433": {
"text": "RT @Brotruth: You say you miss me you say all you want to do is kiss me,but at the end you are with another guy so you just diss me..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618291152748306433,
"created_at": 1436247060,
"retweet_count": 0,
"favorite_count": 0
},
"618291440083275777": {
"text": "RT @ladytruth: 在bbrother新書裡看到你的側臉,鼻頭一酸,我不能哭,因為我們已經回不到過去了。",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Chinese",
"user_id": 16298441,
"id": 618291440083275777,
"created_at": 1436247120,
"retweet_count": 0,
"favorite_count": 0
},
"618291725212082177": {
"text": "RT @JohnnyTRUTH: watching pregnant man",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618291725212082177,
"created_at": 1436247180,
"retweet_count": 0,
"favorite_count": 0
},
"618292606187933696": {
"text": "RT @Sextruth: @ItsCHELSEY it's never to early for Twitterafterdark when your horny.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618292606187933696,
"created_at": 1436247360,
"retweet_count": 0,
"favorite_count": 0
},
"618295577848119296": {
"text": "RT @ShitTruth: I hate bull shit!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618295577848119296,
"created_at": 1436248080,
"retweet_count": 0,
"favorite_count": 0
},
"618296878463987712": {
"text": "RT @twitjust: Fuck lobster fest!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618296878463987712,
"created_at": 1436248380,
"retweet_count": 0,
"favorite_count": 0
},
"618296933656870912": {
"text": "RT @DangerAtkins: @seanmcmann YEAH FUCK LOBSTER FEST!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 618296933656870912,
"created_at": 1436248440,
"retweet_count": 0,
"favorite_count": 0
},
"634120016242147329": {
"text": "RT @SUBWAY: Like everyone, we are deeply offended by the fake story and ad created by The Onion.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 634120016242147329,
"created_at": 1440020940,
"retweet_count": 0,
"favorite_count": 0
},
"655105154086260736": {
"text": "RT @agcnt47: The whole world is badshit insane... STOP FIGHTING against others.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 655105154086260736,
"created_at": 1445024160,
"retweet_count": 0,
"favorite_count": 0
},
"656056960647872512": {
"text": "RT @aidsexpert: –î–æ—Å–∫–∞ –ø–æ—á–µ—Ç–∞ –Ω–∞—à–µ–π –±–æ–ª—å–Ω–∏—Ü—ã ))) –í–ø—Ä–æ—á–µ–º, –≤ –ò–Ω—Ç–µ—Ä–Ω–µ—Ç–µ —É–∂–µ –±–æ—Ä—å–±–∞ –∑–∞ –ø–µ—Ä–≤–µ–Ω—Å—Ç–≤–æ! http://t.co/HEGzNaanDy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Russian",
"user_id": 16298441,
"id": 656056960647872512,
"created_at": 1445251140,
"retweet_count": 0,
"favorite_count": 0
},
"656063746851389440": {
"text": "RT @SpiritofLagos: Today is #NoHornDay, remember noise pollution can be annoying, let us cultivate respect for other road users. http://t.co/0jXiEnI9SQ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 656063746851389440,
"created_at": 1445252760,
"retweet_count": 0,
"favorite_count": 0
},
"680961423875399680": {
"text": "RT @cctexan3: @pussdaddyblogs I m sorry, I mistyped your user name. Do not post to me or attack me in here or other places of my accounts. thank you",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 680961423875399680,
"created_at": 1451188800,
"retweet_count": 0,
"favorite_count": 0
},
"690328785296703488": {
"text": "RT @boffy15: I will never be racist I'm proud off that",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 690328785296703488,
"created_at": 1453422180,
"retweet_count": 0,
"favorite_count": 0
},
"690622816975216640": {
"text": "RT @chuckwoolery: Truth to a #ProgressiveLiberal is like SATL TO A SLUG!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 690622816975216640,
"created_at": 1453492260,
"retweet_count": 0,
"favorite_count": 0
},
"691616813977837568": {
"text": "RT @kinectmethod: Thinking people should stop counting calories and start counting chemicles.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 691616813977837568,
"created_at": 1453729260,
"retweet_count": 0,
"favorite_count": 0
},
"710715689963753472": {
"text": "RT @Bobwalk14196045: Bob walker if gov don t cut. Off head why were 15000 getareens shiped to alanta ga and another 15000 shiped to n dacta fox reported two year",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 710715689963753472,
"created_at": 1458282780,
"retweet_count": 0,
"favorite_count": 0
},
"710715638537428992": {
"text": "RT @Bobwalk14196045: Bob walker ive had a farm tractor hit from behing man going 70 mile perhour drug me 50 yards broke 3 picies walked away",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 710715638537428992,
"created_at": 1458282780,
"retweet_count": 0,
"favorite_count": 0
},
"710715891986653184": {
"text": "RT @Bobwalk14196045: Bob walker its donald trump doing those things im just die hArd trump man",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 710715891986653184,
"created_at": 1458282840,
"retweet_count": 0,
"favorite_count": 0
},
"710717239968862208": {
"text": "RT @Bobwalk14196045: Trump man",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 710717239968862208,
"created_at": 1458283140,
"retweet_count": 0,
"favorite_count": 0
},
"722807713919401985": {
"text": "RT @shamlanirani: nuthig i am looking married fatt girl i am 47yers old man",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 722807713919401985,
"created_at": 1461165720,
"retweet_count": 0,
"favorite_count": 0
},
"725517394882494464": {
"text": "RT @stevencgray34: @hensawaycom hi me and some mates are willing to be nude waiters for any hen dos and I mean totally nude no aprons like nude butlers",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 725517394882494464,
"created_at": 1461811800,
"retweet_count": 0,
"favorite_count": 0
},
"733638697015463936": {
"text": "RT @gender: A small mercy is like a summer breeze.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 733638697015463936,
"created_at": 1463748060,
"retweet_count": 0,
"favorite_count": 0
},
"744339065332502529": {
"text": "RT @BillyjenkinsJ: @xAssSoFat @Foreverdesirae suck.the. Ball's. honey",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 744339065332502529,
"created_at": 1466299200,
"retweet_count": 0,
"favorite_count": 0
},
"744339000647913473": {
"text": "RT @BillyjenkinsJ: Happy. to.be.welcomed",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 744339000647913473,
"created_at": 1466299200,
"retweet_count": 0,
"favorite_count": 0
},
"744338935602642944": {
"text": "RT @BillyjenkinsJ: @OreoFanatic @Foreverdesir..thankful. for. life. and. All.the. greatness. that comes. with. it",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 744338935602642944,
"created_at": 1466299200,
"retweet_count": 0,
"favorite_count": 0
},
"757597222028603392": {
"text": "RT @SjagamahaS: @NBharuka children is true God's",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 757597222028603392,
"created_at": 1469460180,
"retweet_count": 0,
"favorite_count": 0
},
"758439199200669696": {
"text": "RT @pigfarmerjim: Good Morning Friends\n My Son ( Rio ) explained to me that writing in capital letters was like shouting.\n Sorry, God Bless America",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 758439199200669696,
"created_at": 1469660940,
"retweet_count": 0,
"favorite_count": 0
},
"762827573948719104": {
"text": "RT @DeepakR08382315: @shikha3s3 feeling hourny and erotic",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 762827573948719104,
"created_at": 1470707220,
"retweet_count": 0,
"favorite_count": 0
},
"763520843360198656": {
"text": "RT @WeeManJackAss: Jackass 3D is the best",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 763520843360198656,
"created_at": 1470872520,
"retweet_count": 0,
"favorite_count": 0
},
"764191495079485443": {
"text": "RT @larry6lw09: If you are looking for a longpig to\n Cook and eat.it would me my pleasure to be served\n To your.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 764191495079485443,
"created_at": 1471032420,
"retweet_count": 0,
"favorite_count": 0
},
"764492172213223424": {
"text": "RT @psrimanta: @SuzyDreams ##üåπ https://t.co/dD89ygrHWm",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "",
"user_id": 16298441,
"id": 764492172213223424,
"created_at": 1471104060,
"retweet_count": 0,
"favorite_count": 0
},
"782050026893737984": {
"text": "https://t.co/zAOFzQJpw5",
"retweets": "0",
"likes": "0",
"type": "Tweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 782050026893737984,
"created_at": 1475290200,
"retweet_count": 0,
"favorite_count": 0
},
"782050375042011141": {
"text": "https://t.co/IiPvu7anzq",
"retweets": "0",
"likes": "0",
"type": "Tweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 782050375042011141,
"created_at": 1475290260,
"retweet_count": 0,
"favorite_count": 0
},
"782050538124967937": {
"text": "https://t.co/uOzmWZDFKO",
"retweets": "25",
"likes": "60",
"type": "Tweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 782050538124967937,
"created_at": 1475290320,
"retweet_count": 25,
"favorite_count": 60
},
"785316992697982976": {
"text": "RT @indychick82: i would love to be with other people willing to be nude. i am poly and am having trouble finding a women to fall in love with me and my wife",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 785316992697982976,
"created_at": 1476069120,
"retweet_count": 0,
"favorite_count": 0
},
"795458712903290880": {
"text": "RT @armond40: @KellyRipa hey sweetie,i dont know if your aware about the shit,but terminater2 is on starz",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 795458712903290880,
"created_at": 1478487060,
"retweet_count": 0,
"favorite_count": 0
},
"803148389772705792": {
"text": "RT @alvarez787815: TO ALL POLICE OFFICERS IN AMERICA\"THANK U\" PLEASE ALL OFFICERS\"NATION WIDE U MUST STAND UP AND TELL POLITICIANS ENOUGH\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 803148389772705792,
"created_at": 1480320420,
"retweet_count": 0,
"favorite_count": 0
},
"803346348087144452": {
"text": "RT @alvarez787815: U are nothing but cowards\"U couldn't do a cops job in one day\"U talk crap because u hide behind your tweets\"U are the one's who run\"COWARD\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 803346348087144452,
"created_at": 1480367640,
"retweet_count": 0,
"favorite_count": 0
},
"804827240949284865": {
"text": "RT @nannaoink: Netflix \n Would you cancel my account please",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 804827240949284865,
"created_at": 1480720740,
"retweet_count": 0,
"favorite_count": 0
},
"812984767926910976": {
"text": "RT @DamnLOLQuotes: The fact that I'm breathing is enough to know I am Blessed.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 812984767926910976,
"created_at": 1482665640,
"retweet_count": 0,
"favorite_count": 0
},
"812986139489484800": {
"text": "RT @No1wisdomquotes: Go put your creed into the deed, Nor speak with double tongue..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 812986139489484800,
"created_at": 1482665940,
"retweet_count": 0,
"favorite_count": 0
},
"812996248773021696": {
"text": "RT @kfcarabia: الأسطورة \n \n The legendary! \n #ColonelBucket https://t.co/ihrKBO51Fc",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "",
"user_id": 16298441,
"id": 812996248773021696,
"created_at": 1482668340,
"retweet_count": 0,
"favorite_count": 0
},
"817958953451749376": {
"text": "RT @Brown17Leighton: Up at the gym and somebody stole my dip.. Wtf? You could've stole my Oakleys that we're sitting there or my $100 jacket. Don't touch my dip.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 817958953451749376,
"created_at": 1483851540,
"retweet_count": 0,
"favorite_count": 0
},
"845727609866649602": {
"text": "RT @911GOOD: BOUT TO GO TO THE AND GRUB ON SUM HOME MADE CHICKEN TACOS...WATCHA KNOW ABOUT IT",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 845727609866649602,
"created_at": 1490472120,
"retweet_count": 0,
"favorite_count": 0
},
"845952657491705857": {
"text": "RT @HamKam96: @MissTylerXXX I wanna send a T shirt for u. I will write many words on the T shirt from my mind. but at first give me ur address.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 845952657491705857,
"created_at": 1490525760,
"retweet_count": 0,
"favorite_count": 0
},
"847932891824783360": {
"text": "RT @Bitcher2: Change my name to conner",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 847932891824783360,
"created_at": 1490997900,
"retweet_count": 0,
"favorite_count": 0
},
"855440341456928768": {
"text": "RT @Downloadsman: *klik 'Google Chrome',\n *Bukak 'Facebook',\n *Bukak 'Youtube',\n *Bukak 'Twitter',\n *tutup Chrome.\n *blank kejap...\n *klik Chrome balik,\n *paham2 la.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 855440341456928768,
"created_at": 1492787820,
"retweet_count": 0,
"favorite_count": 0
},
"855441186873540608": {
"text": "RT @Husband1: Follow twitter @billgates",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 855441186873540608,
"created_at": 1492788000,
"retweet_count": 0,
"favorite_count": 0
},
"855442730566156289": {
"text": "RT @Husband37: @Husband37",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qam",
"user_id": 16298441,
"id": 855442730566156289,
"created_at": 1492788360,
"retweet_count": 0,
"favorite_count": 0
},
"855443504054624257": {
"text": "RT @husband69: @mvriana_ ill be. Youre friend",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 855443504054624257,
"created_at": 1492788540,
"retweet_count": 0,
"favorite_count": 0
},
"855444138241794048": {
"text": "RT @Husband70: http://t.co/D4tmJyOGHg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 855444138241794048,
"created_at": 1492788720,
"retweet_count": 0,
"favorite_count": 0
},
"855444589934673921": {
"text": "RT @husband83: First tweet of a frustrated husband, son, entrepreneur and a man..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 855444589934673921,
"created_at": 1492788840,
"retweet_count": 0,
"favorite_count": 0
},
"858816314227511299": {
"text": "RT @GorillaGlue: @sampike7:Hi Sam,\n Sorry, but Gorilla Glue is not recommended for this use.\n The Gorilla Glue Company",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 858816314227511299,
"created_at": 1493592720,
"retweet_count": 0,
"favorite_count": 0
},
"858816952139214848": {
"text": "RT @GorillaGlue: @evil_arts We are so sorry to hear about the loss of your pet. If you need to talk, please call Mary Ellen directly at 1-513-527-3749.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 858816952139214848,
"created_at": 1493592840,
"retweet_count": 0,
"favorite_count": 0
},
"858820500948213761": {
"text": "RT @mcdonalds4: to ghost adventure can u do a investigate green man tunnel and broughton school in south park ,Pa",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 858820500948213761,
"created_at": 1493593680,
"retweet_count": 0,
"favorite_count": 0
},
"858821408306208769": {
"text": "RT @Bigbubba: Hey Whatzup",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 858821408306208769,
"created_at": 1493593920,
"retweet_count": 0,
"favorite_count": 0
},
"861027996785889280": {
"text": "RT @liyonsigaul: Pleas guys today no explen u killi my wafe never sorr becaus u clever no mess guys today me I killi u http://t.co/TGPsPRk9PN",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 861027996785889280,
"created_at": 1494120000,
"retweet_count": 0,
"favorite_count": 0
},
"861027947209207809": {
"text": "RT @liyonsigaul: https://t.co/E6CAuBZMgs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 861027947209207809,
"created_at": 1494120000,
"retweet_count": 0,
"favorite_count": 0
},
"863220345934938113": {
"text": "RT @mrtonicakovski: @nytimes MY COMMENTS TO YOUR CAPTION , WHOSE TURKEY IS IT...MY NICK NAME IS CHICHKEN...K.F.C.IS KENTUKEY FRIED CHICHKEN...MY COMMENTS OF",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 863220345934938113,
"created_at": 1494642720,
"retweet_count": 0,
"favorite_count": 0
},
"866509474474971136": {
"text": "RT @blisstique: @Pennzoil fuck you",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 866509474474971136,
"created_at": 1495426920,
"retweet_count": 0,
"favorite_count": 0
},
"875355251859214339": {
"text": "RT @mobynick41: @DonaldUS2016 I live in N O went to ROUSES to buy 2 pounds of boiled crawfish paid cash black lady behind me got 7 pounds boiled crawfish",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 875355251859214339,
"created_at": 1497535920,
"retweet_count": 0,
"favorite_count": 0
},
"875356310904213505": {
"text": "RT @mobynick41: @PiperPerriXX saw you on BEEG and XHAMSTER really great your neighbor",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 875356310904213505,
"created_at": 1497536160,
"retweet_count": 0,
"favorite_count": 0
},
"875358784364916736": {
"text": "RT @christinastans0: @Pringles celebrity need money! pregnant daughter",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 875358784364916736,
"created_at": 1497536760,
"retweet_count": 0,
"favorite_count": 0
},
"877760773677821952": {
"text": "RT @mdmay23: @DCC_Madeline forgive me if i did or said anything to upset you im very sry",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 877760773677821952,
"created_at": 1498109400,
"retweet_count": 0,
"favorite_count": 0
},
"877760763632304128": {
"text": "RT @mdmay23: twitter has made a big change in my life thank you hot and sexy ladies",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 877760763632304128,
"created_at": 1498109400,
"retweet_count": 0,
"favorite_count": 0
},
"877760749749194752": {
"text": "RT @mdmay23: my devorce is final im going out and haveing a blast tonight",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 877760749749194752,
"created_at": 1498109400,
"retweet_count": 0,
"favorite_count": 0
},
"877763218998829056": {
"text": "RT @ESPN_Beisbol: Yasiel Puig aumentó la ventaja de los Dodgers con este estacazo de tres carreras #VeranoMLB ⚾🌞 https://t.co/LFgGAwhYhu",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": true,
"language": "Spanish",
"user_id": 16298441,
"id": 877763218998829056,
"created_at": 1498110000,
"retweet_count": 0,
"favorite_count": 0
},
"878116842375479296": {
"text": "RT @batman_real: n",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 878116842375479296,
"created_at": 1498194300,
"retweet_count": 0,
"favorite_count": 0
},
"879637345909309441": {
"text": "looking for Coins https://t.co/rmYcDoaw4H",
"retweets": "433",
"likes": "3,156",
"type": "Tweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 879637345909309441,
"created_at": 1498556820,
"retweet_count": 433,
"favorite_count": 3
},
"880018545811304448": {
"text": "RT @KFCPhilippines: @Gagagumball https://t.co/yxiTiXWtUf",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qme",
"user_id": 16298441,
"id": 880018545811304448,
"created_at": 1498647720,
"retweet_count": 0,
"favorite_count": 0
},
"888662862167670784": {
"text": "RT @MissingPlane370: Where am I",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 888662862167670784,
"created_at": 1500708660,
"retweet_count": 0,
"favorite_count": 0
},
"890840315430666240": {
"text": "RT @Batmen: Heut Burger King?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "German",
"user_id": 16298441,
"id": 890840315430666240,
"created_at": 1501227840,
"retweet_count": 0,
"favorite_count": 0
},
"890840827819438081": {
"text": "RT @bullshitman: Learning about twitter.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 890840827819438081,
"created_at": 1501227960,
"retweet_count": 0,
"favorite_count": 0
},
"892458350557921280": {
"text": "RT @Hichambilal12: look for wife https://t.co/GbCefUZZ3A",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 892458350557921280,
"created_at": 1501613580,
"retweet_count": 0,
"favorite_count": 0
},
"899539355626242048": {
"text": "RT @HornyTruth: try a lubricant to give your guy a wicked handjob",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 899539355626242048,
"created_at": 1503301860,
"retweet_count": 0,
"favorite_count": 0
},
"899540104083099648": {
"text": "RT @MR_GENIUS: I am on my way...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 899540104083099648,
"created_at": 1503302040,
"retweet_count": 0,
"favorite_count": 0
},
"899544019625267200": {
"text": "RT @Yeschaimfriedm1: I Want to stop the messeg's",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 899544019625267200,
"created_at": 1503302940,
"retweet_count": 0,
"favorite_count": 0
},
"899543993788354562": {
"text": "RT @Yeschaimfriedm1: Follow@diapershouse",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 899543993788354562,
"created_at": 1503302940,
"retweet_count": 0,
"favorite_count": 0
},
"899543974511357952": {
"text": "RT @Yeschaimfriedm1: Set user name Wowa flaky",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 899543974511357952,
"created_at": 1503302940,
"retweet_count": 0,
"favorite_count": 0
},
"901309639618330624": {
"text": "RT @GorkaGamer: Rt Si Aces Esto http://t.co/rFRNWF0QxU",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 901309639618330624,
"created_at": 1503723900,
"retweet_count": 0,
"favorite_count": 0
},
"906318996345061376": {
"text": "RT @mrbudlight: tryin to figure out how to make some damn money on the internet",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 906318996345061376,
"created_at": 1504918260,
"retweet_count": 0,
"favorite_count": 0
},
"906530207225581568": {
"text": "RT @FeetLiker: I'M BACK YALL !!!!!!!!!!!!!!!!!!!!!!!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 906530207225581568,
"created_at": 1504968600,
"retweet_count": 0,
"favorite_count": 0
},
"906534843835613185": {
"text": "RT @The__Forest: I Post Only To Make PPL #Think, I am not #Fool enough to presume to change any minds... I can only make you think...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 906534843835613185,
"created_at": 1504969680,
"retweet_count": 0,
"favorite_count": 0
},
"908977956416098305": {
"text": "RT @Xmen056: u love me?fuck u baby and go shit",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 908977956416098305,
"created_at": 1505552160,
"retweet_count": 0,
"favorite_count": 0
},
"908977921439789056": {
"text": "RT @MRBEAN666: follox Xmen056",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 908977921439789056,
"created_at": 1505552160,
"retweet_count": 0,
"favorite_count": 0
},
"908982903358590976": {
"text": "RT @mileydad: @Kockse fuck u",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 908982903358590976,
"created_at": 1505553360,
"retweet_count": 0,
"favorite_count": 0
},
"908990586501369856": {
"text": "RT @crap666: wishing u was here with me... wishing u might read this and drop the bullshit so we could love eachother...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 908990586501369856,
"created_at": 1505555160,
"retweet_count": 0,
"favorite_count": 0
},
"909090718869856256": {
"text": "RT @police_real: kim qardashyan https://t.co/WV3Ns5QRQd",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Hindi",
"user_id": 16298441,
"id": 909090718869856256,
"created_at": 1505579040,
"retweet_count": 0,
"favorite_count": 0
},
"909164015615709184": {
"text": "RT @fate_fox: „ÅÇ„ÅÅMeat Boll„ÄÄ„Åä„ÅÑ„Åó„Åù„ÅÜ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Japanese",
"user_id": 16298441,
"id": 909164015615709184,
"created_at": 1505596560,
"retweet_count": 0,
"favorite_count": 0
},
"911385170204352512": {
"text": "RT @jokerthebatman: the joker\n fatboy slim şarkısı. kedili bi klibi vardır.\n http://t.co/UBE8glJ +",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Turkish",
"user_id": 16298441,
"id": 911385170204352512,
"created_at": 1506126120,
"retweet_count": 0,
"favorite_count": 0
},
"925957298463404032": {
"text": "RT @GamerHelper: This account is going to be dedicated to helping gamers with their games or consoles, watever you need.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 925957298463404032,
"created_at": 1509600360,
"retweet_count": 0,
"favorite_count": 0
},
"925959331601928192": {
"text": "RT @asexual79: test http://t.co/gf8KepJsHN",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 925959331601928192,
"created_at": 1509600840,
"retweet_count": 0,
"favorite_count": 0
},
"926368158415499264": {
"text": "RT @bigboy3d: afread of scary movies just call me and i'll watch it with u girls dont worry at all just call me and i'll watch it with U and u wont be",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 926368158415499264,
"created_at": 1509698340,
"retweet_count": 0,
"favorite_count": 0
},
"927065531592663040": {
"text": "RT @SporkMan2k: @Wendys Unprofessional and disrespectful employees. I'm not playing \"too slow\" with my bag of food like a child. Store#3466",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 927065531592663040,
"created_at": 1509864600,
"retweet_count": 0,
"favorite_count": 0
},
"927795848020414464": {
"text": "RT @THETWEETBITCH: horny",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 927795848020414464,
"created_at": 1510038720,
"retweet_count": 0,
"favorite_count": 0
},
"927799127479595008": {
"text": "RT @bigpappa: nothing",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 927799127479595008,
"created_at": 1510039500,
"retweet_count": 0,
"favorite_count": 0
},
"931435257961832448": {
"text": "RT @Microsoftman: looking at ass",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 931435257961832448,
"created_at": 1510906440,
"retweet_count": 0,
"favorite_count": 0
},
"932174275968106496": {
"text": "RT @DIPSHIT3: @emilycarlile You are just another moron that has no clue about weapons or how to use them",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 932174275968106496,
"created_at": 1511082600,
"retweet_count": 0,
"favorite_count": 0
},
"932346823032885248": {
"text": "RT @bart___simpson7: Whos the coolest Bart Simpson whos smarter than all of Bart Simpson, who the funniest family Bart Simpson! And so on ...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 932346823032885248,
"created_at": 1511123760,
"retweet_count": 0,
"favorite_count": 0
},
"932347917112872961": {
"text": "RT @AuldAuldc: @simpsonscheats thank you so much for the hook up.very pleased now with my Springfield great service.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 932347917112872961,
"created_at": 1511124000,
"retweet_count": 0,
"favorite_count": 0
},
"935442379372486656": {
"text": "RT @DamnJokes: I'm going to update some disney jokes tonight. Don't miss it.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 935442379372486656,
"created_at": 1511861760,
"retweet_count": 0,
"favorite_count": 0
},
"937697980249001984": {
"text": "RT @MrJokes: Wife: I Love U I Cn't Live Without U! Mar Jaungi...! Mit Jaungi..! Pagal Ho Jaungi..! Zehar Pee Jaungi..! Tere Pyar Me Fanna Ho Jaungi!...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 937697980249001984,
"created_at": 1512399540,
"retweet_count": 0,
"favorite_count": 0
},
"937698248504041472": {
"text": "RT @MrJokes: A potato was interrogated by police...\n .\n .\n After three hours of torture he broke down and said :\n Mai batata hoon... Mai batata hoon!\n ...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 937698248504041472,
"created_at": 1512399600,
"retweet_count": 0,
"favorite_count": 0
},
"937698749547245569": {
"text": "RT @MrJokes: Husband: I found Aladin's lamp today.\n Wife: wow, what did u ask for darling??\n Husband: I asked him to increase your brain ten times.....",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 937698749547245569,
"created_at": 1512399720,
"retweet_count": 0,
"favorite_count": 0
},
"937698582890733568": {
"text": "RT @MrJokes: SMS TO WIFE : \" Thanks for making my life wonderful and being a part of my life. What ever I am is only because of u, u r my angel thanks...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 937698582890733568,
"created_at": 1512399720,
"retweet_count": 0,
"favorite_count": 0
},
"937698949225418754": {
"text": "RT @MrJokes: After 15yrs of marriage a wife asked\n her husband to describe her.\n He looked at her slowly and said:\n ABCDEFGHIJK.\n \"What does that mean...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 937698949225418754,
"created_at": 1512399780,
"retweet_count": 0,
"favorite_count": 0
},
"937700297505411073": {
"text": "RT @MrJokes: Husband is the poor guy who's always under the impression that he is bossing the house, when all that he's doing is just housing the boss.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 937700297505411073,
"created_at": 1512400140,
"retweet_count": 0,
"favorite_count": 0
},
"937700575470342146": {
"text": "RT @MrJokes: Rightly said by a married man....I was a dude before marriage...............now I am subdued !",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 937700575470342146,
"created_at": 1512400200,
"retweet_count": 0,
"favorite_count": 0
},
"940816980696805376": {
"text": "RT @KnifeGenius: I always have a knife on me, only the best of course. Some ask why, well its the ultimate tool. #knives #genius #followme knifegenius.com",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 940816980696805376,
"created_at": 1513143180,
"retweet_count": 0,
"favorite_count": 0
},
"941560356991840257": {
"text": "RT @aim: Get extra security for your computer. Tech Fortress catches spyware and protects your PC. https://t.co/9XFHNOUG4J https://t.co/P1hqAZyf10",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 941560356991840257,
"created_at": 1513320420,
"retweet_count": 0,
"favorite_count": 0
},
"941986760367792128": {
"text": "RT @brownthomas137: @safeagain1 @LeslieLee327 @IvankaTrump What Donald J Trump is a ghost well we the nation has a great idea for our commander and thief and it’s called Gitmo for ghost",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 941986760367792128,
"created_at": 1513422060,
"retweet_count": 0,
"favorite_count": 0
},
"941986903104147456": {
"text": "RT @brownthomas137: @michellegrace54 @Amy_Siskind I think sewer rat will go down to there’s always a place in hell for a rat",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 941986903104147456,
"created_at": 1513422120,
"retweet_count": 0,
"favorite_count": 0
},
"946368087816884225": {
"text": "RT @mr_viral: I so heppy .but my start to tewtter id...ulalalalalalala",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Tagalog",
"user_id": 16298441,
"id": 946368087816884225,
"created_at": 1514466660,
"retweet_count": 0,
"favorite_count": 0
},
"946368176480227328": {
"text": "RT @viralman: Just starting my web jobs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 946368176480227328,
"created_at": 1514466720,
"retweet_count": 0,
"favorite_count": 0
},
"946370618311827457": {
"text": "RT @ViralSarcasm: 25 Year Old Infosys Techie Murdered At Office, Guard Arrested #Infosys #softwareEngineer #Murdered",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 946370618311827457,
"created_at": 1514467260,
"retweet_count": 0,
"favorite_count": 0
},
"946375569771556864": {
"text": "RT @mysarcasm: I find myself staring at people sometimes #thinking..\"#Wow and you tied your shoes this morning?\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 946375569771556864,
"created_at": 1514468460,
"retweet_count": 0,
"favorite_count": 0
},
"947539744761765890": {
"text": "RT @wantwife: who is want to have good man as a husband.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 947539744761765890,
"created_at": 1514746020,
"retweet_count": 0,
"favorite_count": 0
},
"947540378177167361": {
"text": "RT @UMYWIFE: U ARE MY CHRISTIAN WIFE BECKY! GOT THAT?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 947540378177167361,
"created_at": 1514746200,
"retweet_count": 0,
"favorite_count": 0
},
"948020223210414080": {
"text": "RT @mrporno: Hard at work rebuilding my porno network, but liking the results thus far #MrPorno",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 948020223210414080,
"created_at": 1514860560,
"retweet_count": 0,
"favorite_count": 0
},
"948020183796473857": {
"text": "RT @mrporno: Adding the finishing touches onto a new 'social commentary' site. It's a #fuckedreality and I plan to speak on it",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 948020183796473857,
"created_at": 1514860560,
"retweet_count": 0,
"favorite_count": 0
},
"949913649220636672": {
"text": "RT @MoneyMom: Like to know how to \"create your own economy?\"\n www.NewIncomeSolutions.com",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 949913649220636672,
"created_at": 1515312000,
"retweet_count": 0,
"favorite_count": 0
},
"950754391782510592": {
"text": "RT @moh118: sex ass",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 950754391782510592,
"created_at": 1515512460,
"retweet_count": 0,
"favorite_count": 0
},
"954365949511073793": {
"text": "RT @kabusamuel2: Hii please i need to JOIN the antichrist please to be provid the music. \n \n I need help from the antichrist please jioned 666 iluminati",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 954365949511073793,
"created_at": 1516373520,
"retweet_count": 0,
"favorite_count": 0
},
"954455152852897792": {
"text": "RT @Just_us_guys: Picking up girls. That's just us guys",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 954455152852897792,
"created_at": 1516394760,
"retweet_count": 0,
"favorite_count": 0
},
"954455135081648129": {
"text": "RT @Just_us_guys: Girls: why did you do that? Guys: it's a guy thing.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 954455135081648129,
"created_at": 1516394760,
"retweet_count": 0,
"favorite_count": 0
},
"954455200667963392": {
"text": "RT @Just_us_guys: We gotta have a sports life.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 954455200667963392,
"created_at": 1516394820,
"retweet_count": 0,
"favorite_count": 0
},
"954455170221518849": {
"text": "RT @Just_us_guys: Boobs that's are favorite pillow!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 954455170221518849,
"created_at": 1516394820,
"retweet_count": 0,
"favorite_count": 0
},
"955099376568979457": {
"text": "RT @GirlsMaster: Follow@girls_master",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 955099376568979457,
"created_at": 1516548360,
"retweet_count": 0,
"favorite_count": 0
},
"955101439877099521": {
"text": "RT @spounge_bob: auto service\n http://vkontakte.ru/club16136941",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 955101439877099521,
"created_at": 1516548900,
"retweet_count": 0,
"favorite_count": 0
},
"956047846549188608": {
"text": "RT @MrShutDaFuckUp: That moment when I'm completely happy with my relationship and some try's to tell me it's not right for me #ShutTheFuckUp I'm happy thanks",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 956047846549188608,
"created_at": 1516774500,
"retweet_count": 0,
"favorite_count": 0
},
"956047820519301121": {
"text": "RT @MrShutDaFuckUp: I get on twitter nd C all the drama nd ppl sayin shit 2 get on ppls nerves I realize that sayin #ShutTheFuckUp is necessary. leave em alone",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 956047820519301121,
"created_at": 1516774500,
"retweet_count": 0,
"favorite_count": 0
},
"956218658111590401": {
"text": "RT @subaruman: @RubyOfficialx hey ruby was just watching you on chatterbate its subaruman47 seems i got blocked again xx",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 956218658111590401,
"created_at": 1516815240,
"retweet_count": 0,
"favorite_count": 0
},
"958944708629278720": {
"text": "RT @KeithPetitt: https://t.co/7yXjzAnqTm",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 958944708629278720,
"created_at": 1517465160,
"retweet_count": 0,
"favorite_count": 0
},
"958945588325830656": {
"text": "RT @KeithPetitt: I really tried not laughing .. Bwhahahahaha .. Fuck!! I'm trying .. Bwhahahahaha .. Hehehe",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Tagalog",
"user_id": 16298441,
"id": 958945588325830656,
"created_at": 1517465400,
"retweet_count": 0,
"favorite_count": 0
},
"959411336907247618": {
"text": "RT @solution_guru: I am a solution guru and i just solving problems",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 959411336907247618,
"created_at": 1517576460,
"retweet_count": 0,
"favorite_count": 0
},
"960258355469209602": {
"text": "RT @Jhoan9505: @MTV I hate beavis and botthead",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 960258355469209602,
"created_at": 1517778360,
"retweet_count": 0,
"favorite_count": 0
},
"962592430448144384": {
"text": "RT @moneyboss: THIS FRIDAY NAKED ASS & TITIES ALL IN ONE BUILDING!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 962592430448144384,
"created_at": 1518334860,
"retweet_count": 0,
"favorite_count": 0
},
"962595580810850309": {
"text": "RT @RatGamer: made a youtube background",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 962595580810850309,
"created_at": 1518335640,
"retweet_count": 0,
"favorite_count": 0
},
"962597631125049345": {
"text": "RT @The_Teen_Facts: Life can be hard at most times",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 962597631125049345,
"created_at": 1518336120,
"retweet_count": 0,
"favorite_count": 0
},
"962598556388462592": {
"text": "RT @Teenfacts_2: I want to #scream&amp;shout : Ohh.. YEAH!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 962598556388462592,
"created_at": 1518336300,
"retweet_count": 0,
"favorite_count": 0
},
"963374285002805250": {
"text": "RT @husband_man: Inside every husband is a nation",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963374285002805250,
"created_at": 1518521280,
"retweet_count": 0,
"favorite_count": 0
},
"963725270015533056": {
"text": "RT @SuperJokes: The smalles't handcuffs: \"wedding rings\" Via @superjokes",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963725270015533056,
"created_at": 1518604980,
"retweet_count": 0,
"favorite_count": 0
},
"963726506089435137": {
"text": "RT @SuperbJokes: Teacher: Why are you talking when I am?sp Me: I was talking between you sentences. Not when you was talking. Bitch",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963726506089435137,
"created_at": 1518605220,
"retweet_count": 0,
"favorite_count": 0
},
"963726710024949760": {
"text": "RT @comedyjokes: ONE MATCH LOST, AND THIS IS HOW INDIA REACTS, SURPRISINGLY TRUE\n Indian Cricket Deserve Respect !!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963726710024949760,
"created_at": 1518605280,
"retweet_count": 0,
"favorite_count": 0
},
"963730803774709761": {
"text": "RT @motzash1: I dont want to have username",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963730803774709761,
"created_at": 1518606300,
"retweet_count": 0,
"favorite_count": 0
},
"963733326027722752": {
"text": "RT @Mr__gay: only gays should follow me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963733326027722752,
"created_at": 1518606900,
"retweet_count": 0,
"favorite_count": 0
},
"963825936809459712": {
"text": "RT @CarlosGoodman: @PlanetFitness there is a guy with a ponytail yelling shit at your Overland Park location. Scaring the hell out of people. Please advise.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 963825936809459712,
"created_at": 1518628980,
"retweet_count": 0,
"favorite_count": 0
},
"965899041212108800": {
"text": "RT @mywifeshusband: @DoctorChristian @tommmmy112 Whats a \"dental Dam\"\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 965899041212108800,
"created_at": 1519123200,
"retweet_count": 0,
"favorite_count": 0
},
"967565142383906816": {
"text": "RT @007_Mrjamesbond: Painted my Car same color as Marijuana.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 967565142383906816,
"created_at": 1519520460,
"retweet_count": 0,
"favorite_count": 0
},
"971352993638637571": {
"text": "RT @sethcuckold1970: @twistedblissrp hello goddess alexa If ok with you may I please ask you for a follow back please??",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 971352993638637571,
"created_at": 1520423520,
"retweet_count": 0,
"favorite_count": 0
},
"972364894535344129": {
"text": "RT @Robertmattison3: How do i join twitter",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 972364894535344129,
"created_at": 1520664780,
"retweet_count": 0,
"favorite_count": 0
},
"972365043479334912": {
"text": "RT @2153279807: How do I get on T witter.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 972365043479334912,
"created_at": 1520664840,
"retweet_count": 0,
"favorite_count": 0
},
"972365211603791873": {
"text": "RT @2153279807: How do I join Twitter my name is Armand.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 972365211603791873,
"created_at": 1520664900,
"retweet_count": 0,
"favorite_count": 0
},
"972365709958434816": {
"text": "RT @sex_how: How do i join twitter.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 972365709958434816,
"created_at": 1520665020,
"retweet_count": 0,
"favorite_count": 0
},
"972366077803028486": {
"text": "RT @jaywassco: How do i follow others or get info on subjects",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 972366077803028486,
"created_at": 1520665080,
"retweet_count": 0,
"favorite_count": 0
},
"972922379335864326": {
"text": "RT @whife: trying",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 972922379335864326,
"created_at": 1520797740,
"retweet_count": 0,
"favorite_count": 0
},
"977519617307496453": {
"text": "RT @BertorelliBobby: @TillmannJean Good afternoon ziva David. I am a big fan of you I even named my Jeep ziva David",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 977519617307496453,
"created_at": 1521893760,
"retweet_count": 0,
"favorite_count": 0
},
"977519574018031616": {
"text": "RT @BertorelliBobby: @donutsdebsdibs @TillmannJean @CBSTVStudios I love diva David on ncis to the point were I named my jeep diva David",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 977519574018031616,
"created_at": 1521893760,
"retweet_count": 0,
"favorite_count": 0
},
"977519787088769024": {
"text": "RT @BobbyBertorell2: @CotedePabloES That's awesome I would love to see you ziva David. Like I said I named my Jeep after u",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 977519787088769024,
"created_at": 1521893820,
"retweet_count": 0,
"favorite_count": 0
},
"979550656716472321": {
"text": "RT @GolfPimp: Going to lunch.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 979550656716472321,
"created_at": 1522378020,
"retweet_count": 0,
"favorite_count": 0
},
"980182799083765760": {
"text": "RT @cyberdeals: CyberDeals coming soon...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 980182799083765760,
"created_at": 1522528740,
"retweet_count": 0,
"favorite_count": 0
},
"983180156041859073": {
"text": "RT @Assbitch4: the life is fucking bitch !!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 983180156041859073,
"created_at": 1523243340,
"retweet_count": 0,
"favorite_count": 0
},
"985027385593683968": {
"text": "RT @alcaball40: @AngelCardReader I AM KISSING THIS GOODBYE. YOU ARE NOT SERIOUS ABOUT ANYTHING. DO NOT POST ME ANYMORE. GOODBYE",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 985027385593683968,
"created_at": 1523683800,
"retweet_count": 0,
"favorite_count": 0
},
"985776315533021184": {
"text": "RT @CryptoBorat: I LIKE #bitcoin",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 985776315533021184,
"created_at": 1523862360,
"retweet_count": 0,
"favorite_count": 0
},
"987199731796512773": {
"text": "RT @martinclement41: @CMSAF17 I am trying to figure out if I am being scammed are you selling a polaris 4x4",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 987199731796512773,
"created_at": 1524201720,
"retweet_count": 0,
"favorite_count": 0
},
"987534871210938373": {
"text": "RT @mr_robocop: garbage can be recycle, but family`s love can't be replace!!!\n \n #thegarbagelove\n #loveyourparents",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 987534871210938373,
"created_at": 1524281580,
"retweet_count": 0,
"favorite_count": 0
},
"987606386996637696": {
"text": "RT @MyInfoVickiJac1: @Magnum_woof Mags T Husky.please https://t.co/75u91r3AG6 because i love you so very much and you are such a beautiful.and gorgeous dog please send me a message right now i love to hear https://t.co/N2IHRDXlmd please unblock me like i said and be friends on twitter dont block",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 987606386996637696,
"created_at": 1524298680,
"retweet_count": 0,
"favorite_count": 0
},
"987942166398951424": {
"text": "RT @Wife_tips: If ur not a wife yet, its ok practice the tips so ur a master when u get married. #WifeTips",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 987942166398951424,
"created_at": 1524378720,
"retweet_count": 0,
"favorite_count": 0
},
"988439569208107008": {
"text": "RT @SidGrant3: COMEY FBI I REFUSE YOU AT ONCE",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 988439569208107008,
"created_at": 1524497280,
"retweet_count": 0,
"favorite_count": 0
},
"988439553680781312": {
"text": "RT @SidGrant3: COMEY FBI I TOLD YOU TO STOP TALKING TO ME IN MY HOME NOW STOP IT NOW",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 988439553680781312,
"created_at": 1524497280,
"retweet_count": 0,
"favorite_count": 0
},
"988439602531794946": {
"text": "RT @SidGrant3: COMEY FBI YOU ARE A MOTHER FUCKER",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 988439602531794946,
"created_at": 1524497340,
"retweet_count": 0,
"favorite_count": 0
},
"988868179781971968": {
"text": "RT @GamerJokes: What's your worse nightmare if your life",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 988868179781971968,
"created_at": 1524599520,
"retweet_count": 0,
"favorite_count": 0
},
"988928285668184064": {
"text": "RT @policeman40: Yea u better get that damn car washed or imma beat ur ass",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 988928285668184064,
"created_at": 1524613800,
"retweet_count": 0,
"favorite_count": 0
},
"989446203753533443": {
"text": "RT @Im_Not_Racist: Little Ceasers pizza can suck my soft dick!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 989446203753533443,
"created_at": 1524737280,
"retweet_count": 0,
"favorite_count": 0
},
"989775534782476288": {
"text": "RT @ohshititstrue: Post on facebook status \"I'm going to start my deit plan now!\" turn around and see chocolate \"OH let's postpone it to tomorrow\" #ohitstrue",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 989775534782476288,
"created_at": 1524815820,
"retweet_count": 0,
"favorite_count": 0
},
"992431814227775488": {
"text": "RT @bernieamor1: WAOPOOOOOOOOI! GOURGES ! YOUR FACE,YOUR LEGS,YOUR BOLAS, YOUR COCK, EVERY THING, VERY, VERY SEXZY MACHO !!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 992431814227775488,
"created_at": 1525449120,
"retweet_count": 0,
"favorite_count": 0
},
"992436390226026497": {
"text": "RT @shamama: @ThugFeet I just don't understand why a picture of me and my sister in the audience of The Price Is Right has to do with Thug Feet",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 992436390226026497,
"created_at": 1525450200,
"retweet_count": 0,
"favorite_count": 0
},
"993021894180909056": {
"text": "RT @Pimp2: Pimp2",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 993021894180909056,
"created_at": 1525589820,
"retweet_count": 0,
"favorite_count": 0
},
"995001503470452736": {
"text": "RT @Pussyeater80808: I can smell my birthday.\n It's already at the corner.\n 24th August https://t.co/d5bpa1lA7a",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 995001503470452736,
"created_at": 1526061780,
"retweet_count": 0,
"favorite_count": 0
},
"995003221147029505": {
"text": "RT @Billhilton14: her i fuctioning as cia doublegent world be awre cia money,bitch will set you up,getting milion cia, white shark john warejr,whiteshark",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 995003221147029505,
"created_at": 1526062200,
"retweet_count": 0,
"favorite_count": 0
},
"995004074792800256": {
"text": "RT @Billhilton14: @cher government sents females to seduce me, one female isnt going to do it, i have 16,000 state police trying to fuck me,pres obama, cia,",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 995004074792800256,
"created_at": 1526062380,
"retweet_count": 0,
"favorite_count": 0
},
"995005642179076097": {
"text": "RT @Billhilton14: @kardashian_irma my name john p. ware,jr, soon to be next governor or all official and i will be in hospital or jail,taking command,fucking",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 995005642179076097,
"created_at": 1526062800,
"retweet_count": 0,
"favorite_count": 0
},
"996504891618222082": {
"text": "RT @noelleganga: i dont need mafia anymore,,how can i remove",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 996504891618222082,
"created_at": 1526420220,
"retweet_count": 0,
"favorite_count": 0
},
"996504882562699266": {
"text": "RT @noelleganga: i regret to join mafiia",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 996504882562699266,
"created_at": 1526420220,
"retweet_count": 0,
"favorite_count": 0
},
"1000312469045366784": {
"text": "RT @RealLifeShit: When. Girl says,\" I love HIM.\" him is meaning = (H)e (I)s (M)ine. I love means= I'm so glad &lt;3",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1000312469045366784,
"created_at": 1527328020,
"retweet_count": 0,
"favorite_count": 0
},
"1000314490133647360": {
"text": "RT @ItsATeenthings: rt if you kept smiling when you watching you smile :D #itsateenthings",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1000314490133647360,
"created_at": 1527328500,
"retweet_count": 0,
"favorite_count": 0
},
"1000315050601668608": {
"text": "RT @Mr_Ass_hole: The best curve on a woman is her smile #TRUTH",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1000315050601668608,
"created_at": 1527328620,
"retweet_count": 0,
"favorite_count": 0
},
"1001279707441254401": {
"text": "RT @drunkdriver4: http://t.co/vtGUsMroeL",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1001279707441254401,
"created_at": 1527558600,
"retweet_count": 0,
"favorite_count": 0
},
"1002096037836853250": {
"text": "RT @tomasbalderas41: DEAR MR PRESIDENT THE HONORABLE DONALD TRUMP CENTREL OFFICE OF TWITTER I AM PERSONALLY CONNECTED TWITTER WIH THE 7,000,000,000 SEVEN HUNDRED MILLIO PEOPLE ON ERASTH TWITEER BACOME SO POWERFUL FOR BUSINESS EVERY MOVIE STAR EVERY SCIENTIST . https://t.co/KascwJ7MkM",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1002096037836853250,
"created_at": 1527753240,
"retweet_count": 0,
"favorite_count": 0
},
"1002097817320648704": {
"text": "RT @tomasbalderas41: IT IS CALL&gt; THE BIG COCK DR. BALDERAS IS STRAIGHT UP.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1002097817320648704,
"created_at": 1527753660,
"retweet_count": 0,
"favorite_count": 0
},
"1002097636177047552": {
"text": "RT @tomasbalderas41: DR. BALDERAS IS THE BIGGIST GENIUS, EVER EXIST IN DIE ERDE, IN THE WORLD, IN THE KOSMOS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1002097636177047552,
"created_at": 1527753660,
"retweet_count": 0,
"favorite_count": 0
},
"1004481464321404928": {
"text": "RT @GirlsLord: Selenagomez",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Basque",
"user_id": 16298441,
"id": 1004481464321404928,
"created_at": 1528321980,
"retweet_count": 0,
"favorite_count": 0
},
"1004483153468252160": {
"text": "RT @JokerInRealLife: Ou, i fucking hate school",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1004483153468252160,
"created_at": 1528322400,
"retweet_count": 0,
"favorite_count": 0
},
"1006445576685260800": {
"text": "RT @OneMOEE_Time: Sweet Baby Rays Bardecue Sauce &gt;&gt;&gt;",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1006445576685260800,
"created_at": 1528790280,
"retweet_count": 0,
"favorite_count": 0
},
"1006447287705489408": {
"text": "RT @MyPud: First draft of the new branding. What do you think??",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1006447287705489408,
"created_at": 1528790700,
"retweet_count": 0,
"favorite_count": 0
},
"1007883379436597248": {
"text": "RT @MrFUCKA: Me is all im period",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1007883379436597248,
"created_at": 1529133060,
"retweet_count": 0,
"favorite_count": 0
},
"1007929650247557120": {
"text": "RT @psyco_man: ground in hell",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1007929650247557120,
"created_at": 1529144100,
"retweet_count": 0,
"favorite_count": 0
},
"1008465933092966400": {
"text": "RT @painman: in. Bed",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1008465933092966400,
"created_at": 1529271960,
"retweet_count": 0,
"favorite_count": 0
},
"1009791959144202241": {
"text": "RT @MadanMohanRaoG: there is a street dog menace at street no 5 &amp; 6 in yadav nagar at alkapuri in sarornagar. biten atleast 25 people no care taken by mpality",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1009791959144202241,
"created_at": 1529588100,
"retweet_count": 0,
"favorite_count": 0
},
"1009791914491736064": {
"text": "RT @MadanMohanRaoG: I had test driven Fiat Abarth &amp; Urban cross. Excellent. My slogan is Fiat is Fiat, Go for Fiat enjoy Fiat driving",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1009791914491736064,
"created_at": 1529588100,
"retweet_count": 0,
"favorite_count": 0
},
"1010058648926769152": {
"text": "RT @Laughing_Jokes: 1+1=?\n Window \n Gets? \n Retweet\n Favorite",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1010058648926769152,
"created_at": 1529651700,
"retweet_count": 0,
"favorite_count": 0
},
"1010836374180847616": {
"text": "RT @ultimatebitch: CHILLING OUT AT PC",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1010836374180847616,
"created_at": 1529837100,
"retweet_count": 0,
"favorite_count": 0
},
"1012522679486894087": {
"text": "RT @husband_boy: For you... http://t.co/TMMHgOQojF",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1012522679486894087,
"created_at": 1530239160,
"retweet_count": 0,
"favorite_count": 0
},
"1015771068076830720": {
"text": "RT @UrineTherapyInd: The best way to spread #Christmas cheer is singing loud for all to hear.\n \n #MerryChristmas #25thDec #UrineTherapy @Chillrogg https://t.co/8tl3X6Sora",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1015771068076830720,
"created_at": 1531013640,
"retweet_count": 0,
"favorite_count": 0
},
"1015775856868974592": {
"text": "RT @QuiznosEcuador: HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY hoy HOY",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1015775856868974592,
"created_at": 1531014780,
"retweet_count": 0,
"favorite_count": 0
},
"1016792603788886016": {
"text": "RT @PissingBoys: Retweet if you love #piss! https://t.co/14zfcf3m44",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1016792603788886016,
"created_at": 1531257180,
"retweet_count": 0,
"favorite_count": 0
},
"1027050777980751872": {
"text": "RT @FamilyManJokes: Get a life big beard before I kick your ass to",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1027050777980751872,
"created_at": 1533702960,
"retweet_count": 0,
"favorite_count": 0
},
"1027090565630910465": {
"text": "RT @SaydiaDaGOAT: Im walking on some shine , ooooohhhhhhh",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1027090565630910465,
"created_at": 1533712440,
"retweet_count": 0,
"favorite_count": 0
},
"1027731646122840065": {
"text": "RT @celebkiller: wanking off",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1027731646122840065,
"created_at": 1533865260,
"retweet_count": 0,
"favorite_count": 0
},
"1032667279354343425": {
"text": "RT @coolestdudeyet: Finally had to unfollow dril after he started shilling a jomny sun style adult baby book. see ya later big guy.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1032667279354343425,
"created_at": 1535042040,
"retweet_count": 0,
"favorite_count": 0
},
"1032772205296287745": {
"text": "RT @dril: availble now...\n Dril Official \"Mr. Ten Years\" Anniversary Collection\n the real deal\n https://t.co/FwmE7Vw9zL https://t.co/1KYWte83pL",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1032772205296287745,
"created_at": 1535067000,
"retweet_count": 0,
"favorite_count": 0
},
"1033102778787291136": {
"text": "RT @vicesrbija: Ako nikada niste čuli za Twiter nalog @dril, to je u redu. Znači da ste emotivno zdravi i da se bavite sportom i sličnim stvarima. \n \n https://t.co/lfHVz9Rx9u",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "",
"user_id": 16298441,
"id": 1033102778787291136,
"created_at": 1535145840,
"retweet_count": 0,
"favorite_count": 0
},
"1041605243874664448": {
"text": "RT @justinjeans: justinjeans0726",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1041605243874664448,
"created_at": 1537173000,
"retweet_count": 0,
"favorite_count": 0
},
"1041608219330666497": {
"text": "RT @chosby: believing that good stuff will happen to me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1041608219330666497,
"created_at": 1537173720,
"retweet_count": 0,
"favorite_count": 0
},
"1041609269139857410": {
"text": "RT @Durdenman: searching",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1041609269139857410,
"created_at": 1537173960,
"retweet_count": 0,
"favorite_count": 0
},
"1041609481208000512": {
"text": "RT @mr_tylerdurden: unuTAMAM #tamam @ismaildukel https://t.co/R7fxhC9CuM",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Turkish",
"user_id": 16298441,
"id": 1041609481208000512,
"created_at": 1537174020,
"retweet_count": 0,
"favorite_count": 0
},
"1041610084323717121": {
"text": "RT @Tyler_Durdin: 5... 5 dollar footlong",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1041610084323717121,
"created_at": 1537174140,
"retweet_count": 0,
"favorite_count": 0
},
"1043422107219124224": {
"text": "RT @BIGKNAKER: SORRY",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1043422107219124224,
"created_at": 1537606140,
"retweet_count": 0,
"favorite_count": 0
},
"1043422049597763584": {
"text": "RT @BIGKNAKER: OFF OFF NYC911:",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1043422049597763584,
"created_at": 1537606140,
"retweet_count": 0,
"favorite_count": 0
},
"1043422043058761731": {
"text": "RT @BIGKNAKER: STOP NYC911",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1043422043058761731,
"created_at": 1537606140,
"retweet_count": 0,
"favorite_count": 0
},
"1045026899716538368": {
"text": "RT @Pureadrenalin89: Life has other plans then those that we think that are set and stone. Give my newest video a watch. As always , thank you ! https://t.co/1ay4MJc7Pl",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1045026899716538368,
"created_at": 1537988760,
"retweet_count": 0,
"favorite_count": 0
},
"1045027068113645568": {
"text": "RT @OmariRose: Certain things are set and stone for a reason",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1045027068113645568,
"created_at": 1537988820,
"retweet_count": 0,
"favorite_count": 0
},
"1045258976911187968": {
"text": "RT @jimdailey2: @KellyannePolls The Hollywood elite on Emmys other night said they were the most DIVERSE group of people - WRONG. Democrats also try for that mantle - WRONG. The most DIVERSE GROUP OF PEOPLE IS THE MILITARY MEN/WOMEN OF THE U.S. NAVY, MARINES, ARMY &amp; AIRFORCE.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1045258976911187968,
"created_at": 1538044080,
"retweet_count": 0,
"favorite_count": 0
},
"1045800709638184960": {
"text": "RT @BusinessGuy1548: Wanted to make my username shorter for convenience, so now it's @Guy1548 instead of @CoolGuy1548",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1045800709638184960,
"created_at": 1538173260,
"retweet_count": 0,
"favorite_count": 0
},
"1045800897140318208": {
"text": "RT @BusinessGuy1548: @InboxDollars I'm very displeased with your app right now..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1045800897140318208,
"created_at": 1538173320,
"retweet_count": 0,
"favorite_count": 0
},
"1045800859634851840": {
"text": "RT @BusinessGuy1548: @InboxDollars Sorry the last part said I never recieved my $15, please credit my account with the $15 I deserve. Thanks",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1045800859634851840,
"created_at": 1538173320,
"retweet_count": 0,
"favorite_count": 0
},
"1046772435691831296": {
"text": "RT @APsilos: @dril Congratulations for one of the worst (artistically speaking and not only) ethnic hater junk. You are awarded the golden ethnic hater award ü•á https://t.co/1KXlQITdqo",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1046772435691831296,
"created_at": 1538404920,
"retweet_count": 0,
"favorite_count": 0
},
"1047737414360256517": {
"text": "RT @makeout_man: Looking for 365 #beautiful #women in #Pittsburgh willing to make out with a mystery stranger and then talk about it on a video blog. #msgme",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1047737414360256517,
"created_at": 1538635020,
"retweet_count": 0,
"favorite_count": 0
},
"1047741306569515009": {
"text": "RT @PoliceUfo: Keep an eye on the skys for UFO and email us ufopolice50@gmail.com",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1047741306569515009,
"created_at": 1538635920,
"retweet_count": 0,
"favorite_count": 0
},
"1047741756085661697": {
"text": "RT @ufo666gay: –ù—É –≤—ã –ø–æ–Ω—è–ª–∏ –∫—Ç–æ –∂–∏–≤–µ—Ç –≤ —ç—Ç–æ–º –≥–æ—Ä–æ–¥–µ. –í —ç—Ç–æ–º –≥–æ—Ä–æ–¥–µ –∂–∏–≤—É —è. http://t.co/4VN6F4qoeA",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Russian",
"user_id": 16298441,
"id": 1047741756085661697,
"created_at": 1538636040,
"retweet_count": 0,
"favorite_count": 0
},
"1047743950004482048": {
"text": "RT @deadpoolman1234: my new car \n i park in my house https://t.co/RFau4B0KYN",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1047743950004482048,
"created_at": 1538636580,
"retweet_count": 0,
"favorite_count": 0
},
"1050113420308111360": {
"text": "RT @ChucTonto: @BobEsponja SOY CHUC PUTO, ERES UN IDIOTA, PUTA QUE TE PARIO ADIOS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1050113420308111360,
"created_at": 1539201480,
"retweet_count": 0,
"favorite_count": 0
},
"1051251490172489728": {
"text": "RT @311brokendreams: Cash rules everything of round me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1051251490172489728,
"created_at": 1539472860,
"retweet_count": 0,
"favorite_count": 0
},
"1054486300122800128": {
"text": "RT @NaamanMoorehou5: @Hooters @chaseelliott @Hendrick9Team @kansasspeedway I'm 51 and single who want to get married",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1054486300122800128,
"created_at": 1540244100,
"retweet_count": 0,
"favorite_count": 0
},
"1060804506680586241": {
"text": "RT @forexman: I need urgent girl to start sex ineed to fuck girl now",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1060804506680586241,
"created_at": 1541750460,
"retweet_count": 0,
"favorite_count": 0
},
"1063678241326559232": {
"text": "RT @Mrrealshit: If u dont like me dont follow me bitch ... Dedicated to anybodys unfollowers",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1063678241326559232,
"created_at": 1542435600,
"retweet_count": 0,
"favorite_count": 0
},
"1068476812366245890": {
"text": "RT @gottaloveit: hanging out",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1068476812366245890,
"created_at": 1543579680,
"retweet_count": 0,
"favorite_count": 0
},
"1068480053179179008": {
"text": "RT @BEETTLEJUICE: GETTING READY TO DO WHAT I DO BEST",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1068480053179179008,
"created_at": 1543580460,
"retweet_count": 0,
"favorite_count": 0
},
"1069008952145276929": {
"text": "RT @bdhgames: @neiltyson I have a question this may involve science and Theory is it possible to do what the movie downsizing does",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1069008952145276929,
"created_at": 1543706520,
"retweet_count": 0,
"favorite_count": 0
},
"1069008921350725632": {
"text": "RT @bebtbt: @neiltyson is it possible to make a fan spin fast enough that it emits a noise in a frequency we don’t hear",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1069008921350725632,
"created_at": 1543706520,
"retweet_count": 0,
"favorite_count": 0
},
"1069008886290505728": {
"text": "RT @oglesbyjimmy28: @neiltyson Is it possible to build a material that when given an electrical current it makes an electrical molecule move faster then 1000m/s witch is the speed of air at the right speed we could make it lighter then air",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1069008886290505728,
"created_at": 1543706520,
"retweet_count": 0,
"favorite_count": 0
},
"1069009083678650368": {
"text": "RT @whiffycow: @neiltyson I'm not sure if you're the right person to ask but: is it possible to get condensation on you're skin, or is it just sweat?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1069009083678650368,
"created_at": 1543706580,
"retweet_count": 0,
"favorite_count": 0
},
"1080058761471877120": {
"text": "RT @cowboyjeans: Cowboyjeans",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "ht",
"user_id": 16298441,
"id": 1080058761471877120,
"created_at": 1546341000,
"retweet_count": 0,
"favorite_count": 0
},
"1080060445707259904": {
"text": "RT @Girls_Humour: #KhabeesORat # https://t.co/b4OKYdON7y",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "",
"user_id": 16298441,
"id": 1080060445707259904,
"created_at": 1546341420,
"retweet_count": 0,
"favorite_count": 0
},
"1080061877919477763": {
"text": "RT @girls_humor: I dead ass wanna go to area51 like I herd the preditor over there",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1080061877919477763,
"created_at": 1546341780,
"retweet_count": 0,
"favorite_count": 0
},
"1080066997776351232": {
"text": "RT @SportsBitch: Sports Bitch is off to the World Cup. Check in for updates",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1080066997776351232,
"created_at": 1546342980,
"retweet_count": 0,
"favorite_count": 0
},
"1081820612169854977": {
"text": "RT @male_adult: knees lesbo http://t.co/nc4pCSZT",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1081820612169854977,
"created_at": 1546761060,
"retweet_count": 0,
"favorite_count": 0
},
"1084183308475367424": {
"text": "RT @Fratboi_Little: My dog just curbbed stomped my balls",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1084183308475367424,
"created_at": 1547324400,
"retweet_count": 0,
"favorite_count": 0
},
"1085692127869169664": {
"text": "RT @MattLowry13: Even though I will never be, I'm just trying to life my life worthy of what Christ done for me.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1085692127869169664,
"created_at": 1547684100,
"retweet_count": 0,
"favorite_count": 0
},
"1085694102740467712": {
"text": "RT @chary47: @BillGates want to know the passion of the kiss? http://t.co/QRu61YwC\n want to try various types of kissing each other?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1085694102740467712,
"created_at": 1547684580,
"retweet_count": 0,
"favorite_count": 0
},
"1088877795638358017": {
"text": "RT @Realaustinpower: People do not know what christmas is about and that is jesus Christ deal with it!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1088877795638358017,
"created_at": 1548443640,
"retweet_count": 0,
"favorite_count": 0
},
"1089325016305397761": {
"text": "RT @pussy_freak: oh i need some pussies right now, am fucking horny",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1089325016305397761,
"created_at": 1548550260,
"retweet_count": 0,
"favorite_count": 0
},
"1090012771658297349": {
"text": "RT @Anderso1A: I Am King of pain to evil.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1090012771658297349,
"created_at": 1548714240,
"retweet_count": 0,
"favorite_count": 0
},
"1090012754415575040": {
"text": "RT @Anderso1A: Have u heard the 10 coolest soundimmg cars on youtube",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1090012754415575040,
"created_at": 1548714240,
"retweet_count": 0,
"favorite_count": 0
},
"1096386984723898368": {
"text": "RT @tfnow: Just realised I lost my Ratban sunglasses. I don't wear any other kind. Ughhhhhhhhhhhhhh. Heelp.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1096386984723898368,
"created_at": 1550233980,
"retweet_count": 0,
"favorite_count": 0
},
"1097130717308485632": {
"text": "RT @huwaidi_ahmad: @EmmyCorinne Love you to poison me Emmy with your sexy hot Ass xxxxxxx",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1097130717308485632,
"created_at": 1550411280,
"retweet_count": 0,
"favorite_count": 0
},
"1101390855187779584": {
"text": "RT @TiredBoobs: Experimental Ebola vaccines\n \n No thank you. \n \n I will take my chances on catching the virus.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1101390855187779584,
"created_at": 1551426960,
"retweet_count": 0,
"favorite_count": 0
},
"1101390868139827200": {
"text": "RT @TiredBoobs: I'm canceling my account \n \n Some crap happened today and I am done.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1101390868139827200,
"created_at": 1551427020,
"retweet_count": 0,
"favorite_count": 0
},
"1104742838842011649": {
"text": "RT @murcia11m: @JillKassidyy blowjob Your fimgers",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1104742838842011649,
"created_at": 1552226160,
"retweet_count": 0,
"favorite_count": 0
},
"1104742982719201280": {
"text": "RT @murcia11m: @KiaraLord blowjob Your boobs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1104742982719201280,
"created_at": 1552226220,
"retweet_count": 0,
"favorite_count": 0
},
"1104743394268626944": {
"text": "RT @murcia11m: @NestyXXX blowjob Your. Ass",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1104743394268626944,
"created_at": 1552226280,
"retweet_count": 0,
"favorite_count": 0
},
"1106248906801713152": {
"text": "RT @ronald_hayden: @bucadibeppo I always stay away from restaurants that do not post their prices on their web site.......Buca Dipeppo is one of them......we'll go somewhere else tonight",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1106248906801713152,
"created_at": 1552585260,
"retweet_count": 0,
"favorite_count": 0
},
"1110012924758622208": {
"text": "RT @chuckwoolery: @EvilMonkey2013 That was vulgar and your blocked and ignorant.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1110012924758622208,
"created_at": 1553482620,
"retweet_count": 0,
"favorite_count": 0
},
"1111287760394964992": {
"text": "RT @FunnyOFFICIAL: Never Too Old To Rock ''Simpsons'' the best Tshirt eva!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1111287760394964992,
"created_at": 1553786580,
"retweet_count": 0,
"favorite_count": 0
},
"1111291096179437569": {
"text": "RT @FuckSayer: Fuck!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1111291096179437569,
"created_at": 1553787360,
"retweet_count": 0,
"favorite_count": 0
},
"1114077078549188608": {
"text": "@leighmctweets https://t.co/tPe4Zj8bpA",
"retweets": "23",
"likes": "862",
"type": "Reply",
"image": true,
"video": false,
"language": "qme",
"user_id": 16298441,
"id": 1114077078549188608,
"created_at": 1554451620,
"retweet_count": 23,
"favorite_count": 862
},
"1119737033876881408": {
"text": "RT @JokerPimp: just last light when to a party and i pisst pump woo woo woo woo you no it bruther",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1119737033876881408,
"created_at": 1555801080,
"retweet_count": 0,
"favorite_count": 0
},
"1119744169356828674": {
"text": "RT @crapperman: Bang Bang cho cho train wind me up ill do my thing i know kartay i know kunfu mess with me ill mess with you al the way to pizza hut",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1119744169356828674,
"created_at": 1555802760,
"retweet_count": 0,
"favorite_count": 0
},
"1120302600245501953": {
"text": "RT @HowardSpira: @KingJames I WILL PUT MY SPORTS MIND UP AGAINST YOU OR ANYONE ELSE. I KNEW MORE ABOUT SPORTS WHEN I WAS 10 YEARS OLD THEN MOST PEOPLE KNOW IN A LIFETIME! YOUR ARROGANCE MAKES YOU SOUND WORSE THAN THE PRESIDENT EVER HAS!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1120302600245501953,
"created_at": 1555935900,
"retweet_count": 0,
"favorite_count": 0
},
"1126230180349919233": {
"text": "RT @brexitman2: bbc complaints",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1126230180349919233,
"created_at": 1557349140,
"retweet_count": 0,
"favorite_count": 0
},
"1126230782870032384": {
"text": "RT @JoshuaGamer: I Just got home from SuperTarget! I LOVE THAT STORE!!! I want to Be the Manager Someday! (I know it sounds wierd!) I'm at My friend's House",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1126230782870032384,
"created_at": 1557349260,
"retweet_count": 0,
"favorite_count": 0
},
"1126233149048930305": {
"text": "RT @pussyexpert: We announce a female sex biorhythm notification service.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1126233149048930305,
"created_at": 1557349860,
"retweet_count": 0,
"favorite_count": 0
},
"1127093903260184576": {
"text": "RT @DrPhil: Today on the Show: \"At War with My Teen.\" Also, don't miss Robin's budget beauty tips!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1127093903260184576,
"created_at": 1557555060,
"retweet_count": 0,
"favorite_count": 0
},
"1133129078205079553": {
"text": "RT @money4: well i don't do any thing but i'm working on my dream",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133129078205079553,
"created_at": 1558993980,
"retweet_count": 0,
"favorite_count": 0
},
"1133129274112667648": {
"text": "RT @money9: looking how to invest in stock",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133129274112667648,
"created_at": 1558994040,
"retweet_count": 0,
"favorite_count": 0
},
"1133131196571873280": {
"text": "RT @Money36: Money",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133131196571873280,
"created_at": 1558994460,
"retweet_count": 0,
"favorite_count": 0
},
"1133131138086473729": {
"text": "RT @Money36: ' follow InsideNews ' money",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133131138086473729,
"created_at": 1558994460,
"retweet_count": 0,
"favorite_count": 0
},
"1133131330445725696": {
"text": "RT @Money43: Very Good",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133131330445725696,
"created_at": 1558994520,
"retweet_count": 0,
"favorite_count": 0
},
"1133132370104598529": {
"text": "RT @money66: Just had a most exciting time chasing 3 gang that impersonated a police car. I gave chase and called the police, they were caught .",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133132370104598529,
"created_at": 1558994760,
"retweet_count": 0,
"favorite_count": 0
},
"1133132707750326273": {
"text": "RT @money79: i like the health network where they show you how to do cpr on girls that is sexy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1133132707750326273,
"created_at": 1558994820,
"retweet_count": 0,
"favorite_count": 0
},
"1133132551608864768": {
"text": "RT @money74: god",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 1133132551608864768,
"created_at": 1558994820,
"retweet_count": 0,
"favorite_count": 0
},
"1134020132026474496": {
"text": "RT @message_girls: School colleges messages",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1134020132026474496,
"created_at": 1559206440,
"retweet_count": 0,
"favorite_count": 0
},
"1134946806276558849": {
"text": "RT @LittleTikes: “Today I am honoring the heroes of 9/11 by _____.”",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1134946806276558849,
"created_at": 1559427360,
"retweet_count": 0,
"favorite_count": 0
},
"1135411404645601281": {
"text": "RT @Dr_Gamer: #Games #consoles #Videogame é AQUI!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Portuguese",
"user_id": 16298441,
"id": 1135411404645601281,
"created_at": 1559538120,
"retweet_count": 0,
"favorite_count": 0
},
"1140513365648744448": {
"text": "RT @pighealth: Protect against #postweaning #diarrhea through improved #intestinal #health. #pigs #animalhealth https://t.co/p6xJ4CbTEo",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1140513365648744448,
"created_at": 1560754500,
"retweet_count": 0,
"favorite_count": 0
},
"1140513278323384320": {
"text": "RT @pighealth: Improve the way pigs digest vitamins and minerals. #animalnutrition #livestock #swine",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1140513278323384320,
"created_at": 1560754500,
"retweet_count": 0,
"favorite_count": 0
},
"1140528142748020736": {
"text": "RT @AP: BREAKING: Boeing executive says 'sorry' to airlines and families of victims of 737 Max crashes in Indonesia and Ethiopia.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1140528142748020736,
"created_at": 1560758040,
"retweet_count": 0,
"favorite_count": 0
},
"1144383776107012096": {
"text": "RT @MrLivelaughlove: #livelaughlove follow for the best thing in life",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1144383776107012096,
"created_at": 1561677300,
"retweet_count": 0,
"favorite_count": 0
},
"1144384501750980608": {
"text": "RT @toes_man: looking for fun",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1144384501750980608,
"created_at": 1561677480,
"retweet_count": 0,
"favorite_count": 0
},
"1144801054258679809": {
"text": "RT @MyEpicQuotes: SARCASM: My sense of humor with a bit of attitude.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1144801054258679809,
"created_at": 1561776780,
"retweet_count": 0,
"favorite_count": 0
},
"1144801163205738496": {
"text": "RT @Mr_Epic: chilling!!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1144801163205738496,
"created_at": 1561776840,
"retweet_count": 0,
"favorite_count": 0
},
"1148858524677468160": {
"text": "RT @deadpoll: brasil",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Portuguese",
"user_id": 16298441,
"id": 1148858524677468160,
"created_at": 1562744160,
"retweet_count": 0,
"favorite_count": 0
},
"1148862631450562561": {
"text": "RT @Opencarryman: Glad to be able to start tweeting now!!!!!!!!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1148862631450562561,
"created_at": 1562745120,
"retweet_count": 0,
"favorite_count": 0
},
"1148863269311926272": {
"text": "RT @grand_ma: wonder????? Is Micheal really gone or has he created the illusion of death like it was believed of Elvis?????",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1148863269311926272,
"created_at": 1562745300,
"retweet_count": 0,
"favorite_count": 0
},
"1157663688859324416": {
"text": "RT @heisengamer: Check out our new gamerware @ http://t.co/z0odmojocu http://t.co/XzSytYFXNe",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1157663688859324416,
"created_at": 1564843500,
"retweet_count": 0,
"favorite_count": 0
},
"1158134896520384512": {
"text": "RT @RATSEX: full xxx msgs\n full xxx jokes\n \n full sexy tips\n full suhag rat tips\n \n full chat wth sexy girls.\n just type \n follow @lucky_343\n send to 40404 ...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1158134896520384512,
"created_at": 1564955820,
"retweet_count": 0,
"favorite_count": 0
},
"1158135460285169664": {
"text": "RT @orgy_man: @bigdicklovers boobs is for d child...ass is for men",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1158135460285169664,
"created_at": 1564955940,
"retweet_count": 0,
"favorite_count": 0
},
"1158137487505551360": {
"text": "RT @HornyPlumber: http://t.co/hE799SMCwz",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1158137487505551360,
"created_at": 1564956420,
"retweet_count": 0,
"favorite_count": 0
},
"1160125478243487744": {
"text": "RT @Sighnup74601012: set username\n Yo! Yo! Faiz",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1160125478243487744,
"created_at": 1565430420,
"retweet_count": 0,
"favorite_count": 0
},
"1160126230428917760": {
"text": "RT @Follow_girls_We: follow @islamabad girls",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1160126230428917760,
"created_at": 1565430600,
"retweet_count": 0,
"favorite_count": 0
},
"1166932393086738433": {
"text": "RT @NudesMaster: Fuck you if you don't know how to treat a woman. #YeahISaidIt!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1166932393086738433,
"created_at": 1567053300,
"retweet_count": 0,
"favorite_count": 0
},
"1169936847490801664": {
"text": "RT @HajiBabul: Wishing A vary Warm Friendship Day to All My friends.. \n Have A nice \"FRIENDSHIP DAY\" http://t.co/H43R2SgvSy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1169936847490801664,
"created_at": 1567769640,
"retweet_count": 0,
"favorite_count": 0
},
"1169939536354234369": {
"text": "RT @weapon_God: i'm very very very sad hhuuuaa but i'm to semarang hhhhuuuuaaaa",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1169939536354234369,
"created_at": 1567770240,
"retweet_count": 0,
"favorite_count": 0
},
"1169940270789476353": {
"text": "RT @EPSTEIN3: only when the night comes i do tend to feel lonely anddepressed i need badly somebody who would love me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1169940270789476353,
"created_at": 1567770420,
"retweet_count": 0,
"favorite_count": 0
},
"1172496158024880128": {
"text": "RT @adultsjokes: Hlo whats up dude https://t.co/KaLvczezZV",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1172496158024880128,
"created_at": 1568379840,
"retweet_count": 0,
"favorite_count": 0
},
"1172497409173159937": {
"text": "RT @Adults_jokes: INSULT & WIFE are somewhat similar....they always look good...IF IT IS NOT YOURS... :p",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1172497409173159937,
"created_at": 1568380140,
"retweet_count": 0,
"favorite_count": 0
},
"1172498550996910080": {
"text": "RT @Adults_jokes: #SEXFACTS lips to lip kiss for a minute exchanges more that 1000 bacteria",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1172498550996910080,
"created_at": 1568380380,
"retweet_count": 0,
"favorite_count": 0
},
"1173820163273019393": {
"text": "RT @norbit: \"No man remains quite the same when he recognizes himself\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1173820163273019393,
"created_at": 1568695500,
"retweet_count": 0,
"favorite_count": 0
},
"1173962806598586369": {
"text": "RT @Jason07879835: @postmates @Postmates_Help one of your couriers poisoned me respond to my dm. Your agents are rude to me and yelled at me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1173962806598586369,
"created_at": 1568729460,
"retweet_count": 0,
"favorite_count": 0
},
"1175443768838766593": {
"text": "RT @new_orchid: @pamperedchef https://t.co/PstrvNdaZe",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "qme",
"user_id": 16298441,
"id": 1175443768838766593,
"created_at": 1569082560,
"retweet_count": 0,
"favorite_count": 0
},
"1176390466217971712": {
"text": "RT @CryptoBeavis: There can be only one @CryptoBeavis_ https://t.co/mO6mMoi8gA",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1176390466217971712,
"created_at": 1569308280,
"retweet_count": 0,
"favorite_count": 0
},
"1183834596275703808": {
"text": "RT @DiaperKev: I'VE DONE IT !!! I've found a fun way to go into Baby Space ... using hypnosis and meditation. It's very transcendental and euphoric ... and I want to stay here !",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1183834596275703808,
"created_at": 1571083080,
"retweet_count": 0,
"favorite_count": 0
},
"1183834586821746688": {
"text": "RT @DiaperKev: I still think of myself as a young boy of 6 with incontinence who likes to, and can regress back to infancy. I am just Me ... One of the \"Cool Kids\", successful, pretty intelligent, and very in touch with my own Infantilism in BabySpace. Long live Diapers and Plastic Panties.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1183834586821746688,
"created_at": 1571083080,
"retweet_count": 0,
"favorite_count": 0
},
"1184199053224996865": {
"text": "RT @feet_man: dreaming of a nice pair of feet to worship",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1184199053224996865,
"created_at": 1571170020,
"retweet_count": 0,
"favorite_count": 0
},
"1184350173889097728": {
"text": "RT @piss_man: bingung...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 1184350173889097728,
"created_at": 1571206020,
"retweet_count": 0,
"favorite_count": 0
},
"1184968743635415040": {
"text": "RT @pussy_hacker: just living simple",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1184968743635415040,
"created_at": 1571353500,
"retweet_count": 0,
"favorite_count": 0
},
"1188322228468760576": {
"text": "RT @YoursHumorously: https://t.co/4s3R8mTu2K",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1188322228468760576,
"created_at": 1572153060,
"retweet_count": 0,
"favorite_count": 0
},
"1188408454869733378": {
"text": "RT @ggshubh: @sytdick Please Goddess,always make me friend zoned",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1188408454869733378,
"created_at": 1572173580,
"retweet_count": 0,
"favorite_count": 0
},
"1188409235501023232": {
"text": "RT @ggshubh: @Secretcuckold11 Seeing your wife get fucked by someone else is the best movie you can ever see in yiur life",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1188409235501023232,
"created_at": 1572173760,
"retweet_count": 0,
"favorite_count": 0
},
"1194068355365257216": {
"text": "RT @RASHIDKHAWARAB1: SEX IS NOTHING BUT A PROCESS OF PRODUCING KIDS. If you stress it more You will open Pandora Box. This also relates to Crimes MR. PRESIDENT.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1194068355365257216,
"created_at": 1573523040,
"retweet_count": 0,
"favorite_count": 0
},
"1195733245582704640": {
"text": "RT @Gamer3D: I'm packing up to go on a vacation, To Florida. BTW I got hooked on a new song called \"Turn my Swag On\" by Soulja Boy Tell`em.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1195733245582704640,
"created_at": 1573919940,
"retweet_count": 0,
"favorite_count": 0
},
"1203043172835721216": {
"text": "RT @JeansWhisperer: The Jeans Whisperer will be closed today due to the weather.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1203043172835721216,
"created_at": 1575662760,
"retweet_count": 0,
"favorite_count": 0
},
"1205062606018338816": {
"text": "RT @1milliondollars: That's Our Goal. Check back soon!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1205062606018338816,
"created_at": 1576144260,
"retweet_count": 0,
"favorite_count": 0
},
"1205647612403019776": {
"text": "RT @dril: \"for those who like gifts\" you absolutely need to check this shit out, they are a year old but still pretty good https://t.co/8TVcfvDUKm",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1205647612403019776,
"created_at": 1576283760,
"retweet_count": 0,
"favorite_count": 0
},
"1208343226068824064": {
"text": "RT @MrCum: ı'm Work",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Turkish",
"user_id": 16298441,
"id": 1208343226068824064,
"created_at": 1576926420,
"retweet_count": 0,
"favorite_count": 0
},
"1209356171846438918": {
"text": "RT @my_comedy: Wen skinny bitchs bend over they look like flip fones",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1209356171846438918,
"created_at": 1577167920,
"retweet_count": 0,
"favorite_count": 0
},
"1210301932645969921": {
"text": "RT @beeraccount: #beeraccount",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qht",
"user_id": 16298441,
"id": 1210301932645969921,
"created_at": 1577393400,
"retweet_count": 0,
"favorite_count": 0
},
"1210303301738065921": {
"text": "RT @male_slut: Welcome to the World",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1210303301738065921,
"created_at": 1577393760,
"retweet_count": 0,
"favorite_count": 0
},
"1210303833609392128": {
"text": "RT @Boys_Truth: We, boys, don't like girls who are a HOE.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1210303833609392128,
"created_at": 1577393880,
"retweet_count": 0,
"favorite_count": 0
},
"1215484899295031296": {
"text": "RT @MENSCULTURE: VIVE A LA MODA EN MENS CULTURE LAS MEJORES MARCAS, POLO, DOLCE GABANNA,TRUE RELIGION, INVICTA, RAYBAN, LEVIS, HUGO BOOS, ARMANI, VISITANOS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1215484899295031296,
"created_at": 1578629100,
"retweet_count": 0,
"favorite_count": 0
},
"1217430895084179456": {
"text": "RT @rathunter: just woke up",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1217430895084179456,
"created_at": 1579093080,
"retweet_count": 0,
"favorite_count": 0
},
"1217431939004559360": {
"text": "RT @Rat_Killer: I feel like I am stuck in a rut. 2 boys one 17 the other 16 and a wife but i feel this is not for me Help",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1217431939004559360,
"created_at": 1579093320,
"retweet_count": 0,
"favorite_count": 0
},
"1217431861854531584": {
"text": "RT @Rat_Killer: Ive killed about 37 rats in the last 2 days Great.\n Not done much today I fell of a ladder yesterday and done my arm in so im at home board",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1217431861854531584,
"created_at": 1579093320,
"retweet_count": 0,
"favorite_count": 0
},
"1219755880251457536": {
"text": "RT @ClickMyLinks: Welcome to Click My Links where I'll post links of sites I enjoy. No, this is not spam. I just like sharing my favorite finds.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1219755880251457536,
"created_at": 1579647420,
"retweet_count": 0,
"favorite_count": 0
},
"1221721556398641152": {
"text": "RT @CheetosArabia: تشستر هو تشستر في كل مكان\n \n Chester is Chester everywhere. #DollyPartonChallenge https://t.co/WbV7bcxRt9",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "",
"user_id": 16298441,
"id": 1221721556398641152,
"created_at": 1580116080,
"retweet_count": 0,
"favorite_count": 0
},
"1224656951780315136": {
"text": "RT @TedTheBear__: I hate you you hate me let's go out and kill Barney, shoot a machine gun, and hit him with a metal bat, now that bastard is dead at last",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1224656951780315136,
"created_at": 1580815920,
"retweet_count": 0,
"favorite_count": 0
},
"1224657720793391104": {
"text": "RT @deadpool_real: If you play my game Deadpool thumps up for you",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1224657720793391104,
"created_at": 1580816100,
"retweet_count": 0,
"favorite_count": 0
},
"1224657709544263680": {
"text": "RT @deadpool_real: I am waiting to shoot out some assholes",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1224657709544263680,
"created_at": 1580816100,
"retweet_count": 0,
"favorite_count": 0
},
"1228270470862114818": {
"text": "RT @RelatableJoke: *In Class* Please don't call on me, please don't call on me! *Teacher Says Your Name*",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1228270470862114818,
"created_at": 1581677460,
"retweet_count": 0,
"favorite_count": 0
},
"1230904066470862849": {
"text": "RT @JoseCanseco: The world is corrupt our country is corrupt politicians are corrupt our system is corrupt so obviously so is Baseball...no sport is perfect move on...humans and money equal corruption.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1230904066470862849,
"created_at": 1582305360,
"retweet_count": 0,
"favorite_count": 0
},
"1241925620826660865": {
"text": "RT @_CoVid: It’s always game time...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1241925620826660865,
"created_at": 1584933060,
"retweet_count": 0,
"favorite_count": 0
},
"1241925496545234944": {
"text": "RT @_CoVid: Stay grinding...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1241925496545234944,
"created_at": 1584933060,
"retweet_count": 0,
"favorite_count": 0
},
"1241925700317143040": {
"text": "RT @_CoVid: Stay on the grind...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1241925700317143040,
"created_at": 1584933120,
"retweet_count": 0,
"favorite_count": 0
},
"1246245916144623618": {
"text": "RT @dril: \" The Get Rich and Become God Method \"\n \n available NOW in PDF or EPUB... 350+ Full Color Pages of New Shit. by me\n \n only $8.99, due to covid. What a steal . Go nuts\n https://t.co/AxTCtrvxgW https://t.co/DrRk3VNZo0",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1246245916144623618,
"created_at": 1585963140,
"retweet_count": 0,
"favorite_count": 0
},
"1246404242488737794": {
"text": "RT @mensvariety: Triumph Motercycle. https://t.co/FYy1eNSZsc",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1246404242488737794,
"created_at": 1586000880,
"retweet_count": 0,
"favorite_count": 0
},
"1249570151730540546": {
"text": "RT @gambler2020: @J0HNNYDepp Keep doing what your doing, keep being who your being.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1249570151730540546,
"created_at": 1586755680,
"retweet_count": 0,
"favorite_count": 0
},
"1249570856667189252": {
"text": "RT @PoliceHelper: Helping the Police with their convictions, helping the innocent remain at large, punish the guilty through science, deduction and skill.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1249570856667189252,
"created_at": 1586755860,
"retweet_count": 0,
"favorite_count": 0
},
"1249571218102996992": {
"text": "RT @gamblermom: can't sleep..watching Joy Behar.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1249571218102996992,
"created_at": 1586755920,
"retweet_count": 0,
"favorite_count": 0
},
"1250046088523874304": {
"text": "RT @LivingONproof: @Arbys why is your company not replacing their torn and whittled American flag out front of your establishment?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1250046088523874304,
"created_at": 1586869140,
"retweet_count": 0,
"favorite_count": 0
},
"1250048517344657409": {
"text": "RT @YahuahY: Proverbs 16:18 Pride goeth before destruction, and a haughty spirit before a fall. \n \n Recall Rameses, OF EGYPT Repent of your sins.\n \n 99% of people do not even know heir CREATOR? \n \n PEOPLE HAVE FORSAKEN THEIR CREATOR, YHVH (YAHUAH) IN FAVOR OF PAGAN GODS, IDOLS, GRAVEN IMAGES, ETC. https://t.co/ib4hLdE9Yb",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1250048517344657409,
"created_at": 1586869740,
"retweet_count": 0,
"favorite_count": 0
},
"1257639174057766912": {
"text": "RT @twogeorge59: @HootersCalendar I need hooters girl in my life",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1257639174057766912,
"created_at": 1588679460,
"retweet_count": 0,
"favorite_count": 0
},
"1257639282014994432": {
"text": "RT @twogeorge59: keep on playing good ball",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1257639282014994432,
"created_at": 1588679520,
"retweet_count": 0,
"favorite_count": 0
},
"1257639221906403329": {
"text": "RT @twogeorge59: love the game baseball",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1257639221906403329,
"created_at": 1588679520,
"retweet_count": 0,
"favorite_count": 0
},
"1257639837584076802": {
"text": "RT @EtTubby: @HootersCalendar Daddy like...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1257639837584076802,
"created_at": 1588679640,
"retweet_count": 0,
"favorite_count": 0
},
"1257639792352755712": {
"text": "RT @EtTubby: @HootersCalendar Me...likey!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1257639792352755712,
"created_at": 1588679640,
"retweet_count": 0,
"favorite_count": 0
},
"1257640517296287746": {
"text": "RT @srjk22: கெரானா aka CORVID- 19 என்கிற வூஹான் வைரஸ் aka சீன வைரஸ் செயற்கையாக உருவாக்கப்பட்ட ஒரு Terrorist வைரஸ்,\n இது ஆரோக்யமான உடலில் எந்தவித ஸிம்டமும் காட்டாமல் மறைந்திருந்து பரவும் தன்மை உடையது என்கிறார்கள் ஐரோப்பிய ஆய்வாளர்கள்.\n இது கவலை அளிக்கும் செய்தி.\n 👇3 https://t.co/2Wd7FKnana",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Tamil",
"user_id": 16298441,
"id": 1257640517296287746,
"created_at": 1588679820,
"retweet_count": 0,
"favorite_count": 0
},
"1264540349147430912": {
"text": "RT @3DBUG: MORNING COFFEE",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1264540349147430912,
"created_at": 1590324840,
"retweet_count": 0,
"favorite_count": 0
},
"1266593757857640448": {
"text": "RT @autozone: Where there’s smoke there should always be fire. Exclusive flame exhaust tips, only at AZ. http://t.co/UGbA758Roi http://t.co/6Y27SSno0b",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1266593757857640448,
"created_at": 1590814440,
"retweet_count": 0,
"favorite_count": 0
},
"1269235679386415104": {
"text": "RT @BEERHEAVEN: i love beer",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1269235679386415104,
"created_at": 1591444320,
"retweet_count": 0,
"favorite_count": 0
},
"1269236309584838657": {
"text": "RT @GunHeaven: 2013 Stimulus 2 tomato seeds,Obama bumper sticker,prayer rug, machine to blow smoke up my ass,Blame it on Bush poster.directions in Spanish.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1269236309584838657,
"created_at": 1591444440,
"retweet_count": 0,
"favorite_count": 0
},
"1269240942566965251": {
"text": "RT @mytwistedworld: Arn't you a little bit old to be watching phinius and ferb. Yes yes I am :p",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1269240942566965251,
"created_at": 1591445580,
"retweet_count": 0,
"favorite_count": 0
},
"1269243730038411264": {
"text": "RT @AamirCh52047703: Solitude https://t.co/bmpQSaGbDS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1269243730038411264,
"created_at": 1591446240,
"retweet_count": 0,
"favorite_count": 0
},
"1276597905541918720": {
"text": "RT @DruGSmokeR: George Boush hhhhhhhhhhhhhhhhhhhhhhhhhhhh http://t.co/kAsbsyLRrD",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1276597905541918720,
"created_at": 1593199620,
"retweet_count": 0,
"favorite_count": 0
},
"1277180125587443712": {
"text": "RT @penis12345: suckin dick",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1277180125587443712,
"created_at": 1593338400,
"retweet_count": 0,
"favorite_count": 0
},
"1277182183753449472": {
"text": "RT @guns123: looking for my dad",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1277182183753449472,
"created_at": 1593338880,
"retweet_count": 0,
"favorite_count": 0
},
"1282233173548490752": {
"text": "RT @Reefer_Man: Bout to go crazy in this bitch",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1282233173548490752,
"created_at": 1594543140,
"retweet_count": 0,
"favorite_count": 0
},
"1282234549619929088": {
"text": "RT @money_bank: Transformers 2 yupyyyyyyyy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1282234549619929088,
"created_at": 1594543500,
"retweet_count": 0,
"favorite_count": 0
},
"1282236347692904451": {
"text": "RT @ROACHDRS: \"ROACHES\" \"ROACHES\" \"ROACHES\" WE DID A 2016 SUMMER ROACH TOUR, LOOKING FOR THE WORST AREAS OF THE \"USA\"&amp; WE FOUND THEM DRANDREW@ROACHDRS.COM",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1282236347692904451,
"created_at": 1594543920,
"retweet_count": 0,
"favorite_count": 0
},
"1282237268128755712": {
"text": "RT @888pestcntrlceo: GOODMORNING EVERYBODY! :) TODAY IS NATIONAL SUNGLASS DAY!! PLEASE SEND US YOUR CRAZIEST SUNGLASS PICTURES WE VERYWELL JUST MIGHT RE-TWEET IT",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1282237268128755712,
"created_at": 1594544160,
"retweet_count": 0,
"favorite_count": 0
},
"1282237897941254144": {
"text": "RT @ROACHDRS: there;s absolutely NO REASON TO TOLERATE ROACH infestations, with todays, advanced technologies 2ELIMINATE COCKROACHES DRANDREW@ROACHDRS.COM",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1282237897941254144,
"created_at": 1594544280,
"retweet_count": 0,
"favorite_count": 0
},
"1282239658529677312": {
"text": "RT @888pestcntrlceo: ANOTHER INSIDERS DONT TELLTIP! THERE'S 2 SIDES TO THIS THE NO BRAIN, LOWBALLERS&amp;THE 1/2 BRAIN, UNDERCUTTERS BOTH DO HORRIBLE WORTHLESS WORK",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1282239658529677312,
"created_at": 1594544700,
"retweet_count": 0,
"favorite_count": 0
},
"1283895112787832832": {
"text": "RT @greenpussy: i want sum fun x",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1283895112787832832,
"created_at": 1594939380,
"retweet_count": 0,
"favorite_count": 0
},
"1285497623055605762": {
"text": "RT @pussygenius: Hooters has so many hot girls in tight booty shorts",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1285497623055605762,
"created_at": 1595321460,
"retweet_count": 0,
"favorite_count": 0
},
"1285507976543920128": {
"text": "RT @HorningNolan: @offthepill @chadwildclay I want your wife to do 24 hour diaper challenge",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1285507976543920128,
"created_at": 1595323920,
"retweet_count": 0,
"favorite_count": 0
},
"1285967261904199684": {
"text": "RT @JokesPlus: #Joke",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qht",
"user_id": 16298441,
"id": 1285967261904199684,
"created_at": 1595433420,
"retweet_count": 0,
"favorite_count": 0
},
"1286059167099191297": {
"text": "RT @jeffdunham: Hey everybody,\n Peanut and I want to say “Thank you!” to everyone who ordered a \"Jeff Dunham and Peanut” Funko Pop! For those who ordered the autographed version, I’m signing as fast as possible, and the warehouse folks are working with best speed to get every order out, ASAP. https://t.co/9saWBPoasl",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1286059167099191297,
"created_at": 1595455320,
"retweet_count": 0,
"favorite_count": 0
},
"1286928136848855041": {
"text": "RT @gunman123456789: hay abc6 please can you speake to me becaues non of my frinds are heare . you do not haft to its up to you ow and i am 12 years old gunman",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1286928136848855041,
"created_at": 1595662500,
"retweet_count": 0,
"favorite_count": 0
},
"1287292033585954816": {
"text": "RT @bitch1234567890: this bitch has has enuf of a day!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1287292033585954816,
"created_at": 1595749260,
"retweet_count": 0,
"favorite_count": 0
},
"1291080156824518656": {
"text": "RT @SuckNet: Is there any0ne in your Life who \n Really Suck..!!!\n if Yes, Share your idea of Revenge. http://t.co/tSrztC29PU",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1291080156824518656,
"created_at": 1596652440,
"retweet_count": 0,
"favorite_count": 0
},
"1292139729127759873": {
"text": "RT @dr_horny: Dubai is fu**ing awesome",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1292139729127759873,
"created_at": 1596905040,
"retweet_count": 0,
"favorite_count": 0
},
"1292139628745486336": {
"text": "RT @mrhorny: i am watching t.v waiting 4 someone nice 2 talk 2",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1292139628745486336,
"created_at": 1596905040,
"retweet_count": 0,
"favorite_count": 0
},
"1292139927447060481": {
"text": "RT @mrh0rny: @MrsHorny im horny",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1292139927447060481,
"created_at": 1596905100,
"retweet_count": 0,
"favorite_count": 0
},
"1292903807920160768": {
"text": "RT @mripad: Here we go iPad - Coming Soon",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1292903807920160768,
"created_at": 1597087260,
"retweet_count": 0,
"favorite_count": 0
},
"1294933249815220226": {
"text": "RT @Hard_gainer: Current workout: BM Hercules 20min/day every day, vac extender 1.5 hrs/day 5 days/week, myKegel app level 20 5 days/week",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1294933249815220226,
"created_at": 1597571100,
"retweet_count": 0,
"favorite_count": 0
},
"1294933167988588546": {
"text": "RT @Hard_gainer: Current Arsenal:\n Bathmate Hercules, Bathmate X40 Extreme, Auto Extender (4), myKegel iPhone app.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "French",
"user_id": 16298441,
"id": 1294933167988588546,
"created_at": 1597571100,
"retweet_count": 0,
"favorite_count": 0
},
"1295280758584561665": {
"text": "RT @mr_wife: new to da twitter thing but ill get it",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1295280758584561665,
"created_at": 1597653960,
"retweet_count": 0,
"favorite_count": 0
},
"1297862562164305920": {
"text": "RT @MrRealTalk: I wish I could sell seman",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1297862562164305920,
"created_at": 1598269500,
"retweet_count": 0,
"favorite_count": 0
},
"1297864104091123713": {
"text": "RT @MrRealTalk: Seriously i am addicted to Girls with PhatBootys",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1297864104091123713,
"created_at": 1598269860,
"retweet_count": 0,
"favorite_count": 0
},
"1298169676967469058": {
"text": "RT @Armyman12345: hello mr. rogan i'm army man",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1298169676967469058,
"created_at": 1598342700,
"retweet_count": 0,
"favorite_count": 0
},
"1301048645794496512": {
"text": "RT @condom_man: joined twitter",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1301048645794496512,
"created_at": 1599029100,
"retweet_count": 0,
"favorite_count": 0
},
"1301048551066140672": {
"text": "RT @mistercondom: AAAAAAAAAAAAAHHHHHHHHHHHHHHHHHH!!!! MY DIIIIIIIIIIIIIIIICK!!!!!!!!!!!!!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1301048551066140672,
"created_at": 1599029100,
"retweet_count": 0,
"favorite_count": 0
},
"1301283695974735872": {
"text": "RT @gamesbond007: sulking around",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1301283695974735872,
"created_at": 1599085140,
"retweet_count": 0,
"favorite_count": 0
},
"1301833372788957186": {
"text": "RT @AdrianTheGoat: Rich Homie Quan On Stage With a Fucking 7/11 Bug Gulp üòÇ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1301833372788957186,
"created_at": 1599216180,
"retweet_count": 0,
"favorite_count": 0
},
"1301833543035707393": {
"text": "RT @Nate_E_man: There seems to be a direct correlation to your size of Bug gulp and your intelligence. #7-11",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1301833543035707393,
"created_at": 1599216240,
"retweet_count": 0,
"favorite_count": 0
},
"1303577854731415553": {
"text": "RT @moneytheory: From CNNmoney: Gas prices on the rise http://hellotxt.com/l/b1QG",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1303577854731415553,
"created_at": 1599632100,
"retweet_count": 0,
"favorite_count": 0
},
"1303577839720038401": {
"text": "RT @moneytheory: From cnnmoney: Gas prices near 5 year low http://hellotxt.com/l/sfHR",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1303577839720038401,
"created_at": 1599632100,
"retweet_count": 0,
"favorite_count": 0
},
"1303578102480601088": {
"text": "RT @moneytheory: Money is not natural http://hellotxt.com/l/6Hlo",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1303578102480601088,
"created_at": 1599632160,
"retweet_count": 0,
"favorite_count": 0
},
"1303619696051118085": {
"text": "RT @pooty2: @Boscovs \n Your new rules are unacceptable. Masks, lines on floor etc. We are not children who you can tell how to live. Masks are wrong in so many ways. A rag of submission and totally useless. You have made a bad decision to follow the lies that we have been told. NEVER BOSCOV",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1303619696051118085,
"created_at": 1599642120,
"retweet_count": 0,
"favorite_count": 0
},
"1308677172685492226": {
"text": "RT @Damn_Gamer: Do ya hate this message.. Dont ya https://t.co/0J35PkMMPh",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1308677172685492226,
"created_at": 1600847880,
"retweet_count": 0,
"favorite_count": 0
},
"1308677118415388675": {
"text": "RT @Damn_Gamer: Behind Every Mask Of Ice That People Wear, There Lies A Heart Of Fire......\n \n By @DamnGamer2003 https://t.co/bIz2vp7Q07",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1308677118415388675,
"created_at": 1600847880,
"retweet_count": 0,
"favorite_count": 0
},
"1308680018709676033": {
"text": "RT @pheonix666: MJ ur always rockz the world",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1308680018709676033,
"created_at": 1600848600,
"retweet_count": 0,
"favorite_count": 0
},
"1308681034179911681": {
"text": "RT @Mr_pussy: Im on twitter",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1308681034179911681,
"created_at": 1600848840,
"retweet_count": 0,
"favorite_count": 0
},
"1316647232507056130": {
"text": "RT @barneyfuck: LA CERVEZA PARA LA CABEZA....",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1316647232507056130,
"created_at": 1602748080,
"retweet_count": 0,
"favorite_count": 0
},
"1317163986886955009": {
"text": "RT @haterkiller: I just saw a man without arms or legs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1317163986886955009,
"created_at": 1602871320,
"retweet_count": 0,
"favorite_count": 0
},
"1321724650775146496": {
"text": "RT @Truththoughts: Deep in everyone's heart there will always be this lock that will only be unlocked by the one that makes you understand what is love....",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1321724650775146496,
"created_at": 1603958640,
"retweet_count": 0,
"favorite_count": 0
},
"1321725078015389696": {
"text": "RT @Truththoughts: I wan to be alone!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1321725078015389696,
"created_at": 1603958760,
"retweet_count": 0,
"favorite_count": 0
},
"1321725064711077889": {
"text": "RT @Truththoughts: I hate Chinese new year!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1321725064711077889,
"created_at": 1603958760,
"retweet_count": 0,
"favorite_count": 0
},
"1322136627632771073": {
"text": "RT @Mr_PUSSY_LIPS: I like to fuck im fuckin now I habe to have pussy I will beat yo pussy up and wear it out I dont play",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1322136627632771073,
"created_at": 1604056860,
"retweet_count": 0,
"favorite_count": 0
},
"1327846138070794240": {
"text": "RT @wife4me: girle friend",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1327846138070794240,
"created_at": 1605418140,
"retweet_count": 0,
"favorite_count": 0
},
"1327846518171127810": {
"text": "RT @wife4u: Do u have e email",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1327846518171127810,
"created_at": 1605418200,
"retweet_count": 0,
"favorite_count": 0
},
"1328248536597598210": {
"text": "RT @_KaydensKeeper: Smouth Mouth Fucker",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1328248536597598210,
"created_at": 1605514080,
"retweet_count": 0,
"favorite_count": 0
},
"1328832706436767744": {
"text": "RT @ChuckGrassley: There is history on the History Channel rite now Tune in before they go to swamp man",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1328832706436767744,
"created_at": 1605653340,
"retweet_count": 0,
"favorite_count": 0
},
"1332009978262036481": {
"text": "RT @bitchs420: I didn't get one follower in snap female y'all need to send me of y'all hitting that blunt or pipe",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1332009978262036481,
"created_at": 1606410900,
"retweet_count": 0,
"favorite_count": 0
},
"1332534805687255046": {
"text": "RT @AffectionateBad: https://t.co/JxmMnLjHhQ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1332534805687255046,
"created_at": 1606536000,
"retweet_count": 0,
"favorite_count": 0
},
"1335154191828860930": {
"text": "RT @Bigbubba7: Bigbubba7",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Swedish",
"user_id": 16298441,
"id": 1335154191828860930,
"created_at": 1607160480,
"retweet_count": 0,
"favorite_count": 0
},
"1335154470636802048": {
"text": "RT @BigBubba10: You Will Stay In Our Hearts Forever The Man And Your Music",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1335154470636802048,
"created_at": 1607160600,
"retweet_count": 0,
"favorite_count": 0
},
"1335158203600883712": {
"text": "RT @bigbubba87: Mr want to be president how come gas is going up screw foriegn oil how u going to fix it with out lying",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1335158203600883712,
"created_at": 1607161440,
"retweet_count": 0,
"favorite_count": 0
},
"1335158070754697217": {
"text": "RT @bigbubba87: Football is becoming a pussy sport i what want to play in the rain if u dont like what i said u can kiss my big white ass",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1335158070754697217,
"created_at": 1607161440,
"retweet_count": 0,
"favorite_count": 0
},
"1335843374880882692": {
"text": "RT @genius3: twitter is so stupid",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1335843374880882692,
"created_at": 1607324820,
"retweet_count": 0,
"favorite_count": 0
},
"1335843715017928706": {
"text": "RT @genius19: im eating gummy worms",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1335843715017928706,
"created_at": 1607324880,
"retweet_count": 0,
"favorite_count": 0
},
"1336431221761396744": {
"text": "RT @nafuk: Who is first in the queue?! üòç\n \n #ChristmasSpirit #InspireMe https://t.co/4BEIRwwedK",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1336431221761396744,
"created_at": 1607464980,
"retweet_count": 0,
"favorite_count": 0
},
"1336643046767697921": {
"text": "RT @Angery_Bird: @inam1122 sorry to you\n and sorry to all i hurt every one",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1336643046767697921,
"created_at": 1607515500,
"retweet_count": 0,
"favorite_count": 0
},
"1337418970140307457": {
"text": "RT @tatayqatar2022: @Oprah EXCUSE ME I JUST RECEIVED THE GRANT CERTIFICAT BUT I DONT THING ETY OR NOT\n I AM WRITING TO THIS SECRETARY Mr Kerry Dolad (PA)\n this men send me the grant certificat scanner but its realty ied from you\n please ssend me yr response miss email me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1337418970140307457,
"created_at": 1607700480,
"retweet_count": 0,
"favorite_count": 0
},
"1340550773696950272": {
"text": "RT @GamerPussy: please be carefull with your health",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1340550773696950272,
"created_at": 1608447180,
"retweet_count": 0,
"favorite_count": 0
},
"1340551318184763392": {
"text": "RT @ceoofmoney: what happening people",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1340551318184763392,
"created_at": 1608447300,
"retweet_count": 0,
"favorite_count": 0
},
"1340551782636822535": {
"text": "RT @waynehorny: @Amy_cd_ hi can we swop numbers",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1340551782636822535,
"created_at": 1608447420,
"retweet_count": 0,
"favorite_count": 0
},
"1340552285345091588": {
"text": "RT @BorisShit: –ò —Å–º–æ—Ç—Ä–µ–ª –ø–∏–Ω–≥–≤–∏–Ω–æ–≤ –º–∏—Å—Ç–µ—Ä–∞ –ø–æ–ø–ø–µ—Ä–∞",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Russian",
"user_id": 16298441,
"id": 1340552285345091588,
"created_at": 1608447540,
"retweet_count": 0,
"favorite_count": 0
},
"1342946717197430784": {
"text": "RT @GamerMartinez: who is going 2 watch the three stooges on april 13",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1342946717197430784,
"created_at": 1609018380,
"retweet_count": 0,
"favorite_count": 0
},
"1343228701706649600": {
"text": "RT @MrToDamnReal: Bout To Blow Dwn Bitch",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1343228701706649600,
"created_at": 1609085640,
"retweet_count": 0,
"favorite_count": 0
},
"1344012538648829953": {
"text": "RT @PS4Mom: Selling this @ Shoot price",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1344012538648829953,
"created_at": 1609272480,
"retweet_count": 0,
"favorite_count": 0
},
"1344012397594378240": {
"text": "RT @xbox_mom: Shelley m",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1344012397594378240,
"created_at": 1609272480,
"retweet_count": 0,
"favorite_count": 0
},
"1345203013720317952": {
"text": "RT @DogPiss: New Blog Post: Steaming Dog Piss http://bit.ly/94HREs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1345203013720317952,
"created_at": 1609556340,
"retweet_count": 0,
"favorite_count": 0
},
"1345202961765437441": {
"text": "RT @DogPiss: New Blog Post: Richland man admits to mistreating mom http://bit.ly/c9VxoQ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1345202961765437441,
"created_at": 1609556340,
"retweet_count": 0,
"favorite_count": 0
},
"1345202929674817536": {
"text": "RT @DogPiss: New Blog Post: Chemicals make clean living a whole lot easier http://bit.ly/dsq88p",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1345202929674817536,
"created_at": 1609556340,
"retweet_count": 0,
"favorite_count": 0
},
"1345202916215275520": {
"text": "RT @DogPiss: New Blog Post: Lastest Dog Cigarette News http://bit.ly/bdFirx",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1345202916215275520,
"created_at": 1609556340,
"retweet_count": 0,
"favorite_count": 0
},
"1345203552679956480": {
"text": "RT @DogPiss: New Blog Post: We Found Another Interesting Site: HumanUrine.org http://bit.ly/9jyGkT",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1345203552679956480,
"created_at": 1609556460,
"retweet_count": 0,
"favorite_count": 0
},
"1345482853245538304": {
"text": "RT @Mr_GET_PAID: One thing bout me I like to get money",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1345482853245538304,
"created_at": 1609623060,
"retweet_count": 0,
"favorite_count": 0
},
"1346936893221466112": {
"text": "RT @OriginalFunko: Protect your Pops! üö®Our NEW UV Pop! protectors are available now on Funko! üö®https://t.co/zcMiZihMBw #Funko #FunkoPop https://t.co/P3FDVHv0ve",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1346936893221466112,
"created_at": 1609969740,
"retweet_count": 0,
"favorite_count": 0
},
"1347506042448433154": {
"text": "RT @nintendogod: I wish I could watch Avatar movie once again, it's a movie to be nominated for Oscar",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1347506042448433154,
"created_at": 1610105400,
"retweet_count": 0,
"favorite_count": 0
},
"1348370779499466753": {
"text": "RT @anxiety_man: #depression",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qht",
"user_id": 16298441,
"id": 1348370779499466753,
"created_at": 1610311620,
"retweet_count": 0,
"favorite_count": 0
},
"1349323166749843457": {
"text": "RT @vaginamaster: wondering",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1349323166749843457,
"created_at": 1610538660,
"retweet_count": 0,
"favorite_count": 0
},
"1349323531767541765": {
"text": "RT @hootersman: Pissed off",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1349323531767541765,
"created_at": 1610538720,
"retweet_count": 0,
"favorite_count": 0
},
"1349326752259010562": {
"text": "RT @pitbullmaster: hello to the world",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1349326752259010562,
"created_at": 1610539500,
"retweet_count": 0,
"favorite_count": 0
},
"1351536844425420801": {
"text": "RT @pussyattacker: AT DA CRIB AND GOT PUSSY ON MY MIND",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1351536844425420801,
"created_at": 1611066420,
"retweet_count": 0,
"favorite_count": 0
},
"1351539609054842882": {
"text": "RT @Einstien: reading",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1351539609054842882,
"created_at": 1611067080,
"retweet_count": 0,
"favorite_count": 0
},
"1351545326226718720": {
"text": "RT @Livelaughlove2: Livelaughlove",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1351545326226718720,
"created_at": 1611068460,
"retweet_count": 0,
"favorite_count": 0
},
"1351855631041404930": {
"text": "RT @Ahmed_jahed_93: দেখি কার বুদ্ধি বেশি......! \"! https://t.co/RU3ydHSI0P",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "bn",
"user_id": 16298441,
"id": 1351855631041404930,
"created_at": 1611142440,
"retweet_count": 0,
"favorite_count": 0
},
"1352189189404540930": {
"text": "RT @TheShitEater: #SadStory http://t.co/wl6XO1veqs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "qme",
"user_id": 16298441,
"id": 1352189189404540930,
"created_at": 1611221940,
"retweet_count": 0,
"favorite_count": 0
},
"1352484148594659329": {
"text": "RT @pussy_world: Ill Beat The Pussy Up",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1352484148594659329,
"created_at": 1611292320,
"retweet_count": 0,
"favorite_count": 0
},
"1352826429898059778": {
"text": "RT @Bitch_Advice: I hate stress.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1352826429898059778,
"created_at": 1611373920,
"retweet_count": 0,
"favorite_count": 0
},
"1355401159884722179": {
"text": "RT @MrBible: Always keep a few powerful Bible verses in your #Arsenal in case of emergency.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1355401159884722179,
"created_at": 1611987780,
"retweet_count": 0,
"favorite_count": 0
},
"1358742433165549569": {
"text": "RT @MacraeJess: @TomCruise Man I just want life to go back to normal. Watch the new Top Gun movie in an AMC theater, no mask... Ahhhh could smell the pop corn already",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1358742433165549569,
"created_at": 1612784400,
"retweet_count": 0,
"favorite_count": 0
},
"1358958908157566977": {
"text": "RT @Royce69: The C.I.A.is using T.V.Sets as Transmiiters to Broadband Receivers to Listen in on Familys,To create Goverment Policy around the World.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1358958908157566977,
"created_at": 1612836000,
"retweet_count": 0,
"favorite_count": 0
},
"1358959257534664706": {
"text": "RT @royce2: nuting",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1358959257534664706,
"created_at": 1612836060,
"retweet_count": 0,
"favorite_count": 0
},
"1365146763074494464": {
"text": "RT @American_Penis: @Stork_9 –ö—É—Ä–∏—Ç—å –Ω–µ —Ö—É–π —Å–æ—Å–∞—Ç—å –Ω–µ –∑—Ä—è –∂–µ –¥–∏—Å–ø–µ—Ç—á–µ—Ä–∞ –ø–µ—Å–Ω—é –Ω–∞–ø–∏—Å–∞–ª–∏",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Russian",
"user_id": 16298441,
"id": 1365146763074494464,
"created_at": 1614311280,
"retweet_count": 0,
"favorite_count": 0
},
"1368727813906259968": {
"text": "RT @HilltopXer: @dril @NYGovCuomo i remember when some people - not me, but some - thought this account was *funny*",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1368727813906259968,
"created_at": 1615165080,
"retweet_count": 0,
"favorite_count": 0
},
"1369229693090598916": {
"text": "RT @covidmaster: http://t.co/LfSyTDT7Hf",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1369229693090598916,
"created_at": 1615284720,
"retweet_count": 0,
"favorite_count": 0
},
"1369234373405507587": {
"text": "RT @smoking_rules: Rule #10- ALWAYS BE READY TO SMOKE",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1369234373405507587,
"created_at": 1615285860,
"retweet_count": 0,
"favorite_count": 0
},
"1370687480664494082": {
"text": "RT @No44056574: off @nude jokes",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1370687480664494082,
"created_at": 1615632300,
"retweet_count": 0,
"favorite_count": 0
},
"1370687939219361794": {
"text": "RT @Nudejokes: Kid: your ugly\n Me: *sneez* sorry i am alergic to\n bullshit",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1370687939219361794,
"created_at": 1615632420,
"retweet_count": 0,
"favorite_count": 0
},
"1372821116511682566": {
"text": "RT @disney_man: try to sleep",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1372821116511682566,
"created_at": 1616140980,
"retweet_count": 0,
"favorite_count": 0
},
"1373591778649989120": {
"text": "RT @shirtless6: no pain no gain so work hard ...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1373591778649989120,
"created_at": 1616324760,
"retweet_count": 0,
"favorite_count": 0
},
"1373592498136784899": {
"text": "RT @freadflintstone: nancy is the best dancer on dancing with the stars",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1373592498136784899,
"created_at": 1616324940,
"retweet_count": 0,
"favorite_count": 0
},
"1375018388863393796": {
"text": "RT @Pussycity: At pussy city we believe that fucking is a mans best fried. Come get hard and download http://t.co/bVreKDYS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1375018388863393796,
"created_at": 1616664900,
"retweet_count": 0,
"favorite_count": 0
},
"1375397422982078477": {
"text": "RT @im_shit: As",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 1375397422982078477,
"created_at": 1616755260,
"retweet_count": 0,
"favorite_count": 0
},
"1375697180573396993": {
"text": "RT @viralfunny: Funny toilets pictures http://goo.gl/fb/DC4z",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1375697180573396993,
"created_at": 1616826720,
"retweet_count": 0,
"favorite_count": 0
},
"1376498250186776578": {
"text": "RT @lovetoeat: it is grey here in Oxford",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1376498250186776578,
"created_at": 1617017700,
"retweet_count": 0,
"favorite_count": 0
},
"1376499656989966344": {
"text": "RT @UGottaEat: Celebrated the our one year anniversary a few weeks ago with a company name change to QURBLE and new outlook on business and life.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1376499656989966344,
"created_at": 1617018060,
"retweet_count": 0,
"favorite_count": 0
},
"1380500028540657664": {
"text": "RT @femalesex: My vagina is loving it",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1380500028540657664,
"created_at": 1617971820,
"retweet_count": 0,
"favorite_count": 0
},
"1384449938155704322": {
"text": "RT @Mr_Blunts: #FLYNATION&CLUBLOUDGANG http://t.co/rBC0xvw7",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1384449938155704322,
"created_at": 1618913520,
"retweet_count": 0,
"favorite_count": 0
},
"1385808260523991040": {
"text": "RT @Howardsterns: Wife just left for good upset need someone to talk to",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1385808260523991040,
"created_at": 1619237400,
"retweet_count": 0,
"favorite_count": 0
},
"1386816637014208516": {
"text": "RT @wankerkiller: chatroulette perv gets goatsed but likes it! http://www.viddler.com/explore/wankerkiller/videos/1/",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1386816637014208516,
"created_at": 1619477820,
"retweet_count": 0,
"favorite_count": 0
},
"1390652008126844929": {
"text": "RT @BiG_SmOker: Tomorrow my operation im going to militairy hospital only god can save our souls",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1390652008126844929,
"created_at": 1620392220,
"retweet_count": 0,
"favorite_count": 0
},
"1390651981903978500": {
"text": "RT @BiG_SmOker: Work hard have fun and STOP drama",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1390651981903978500,
"created_at": 1620392220,
"retweet_count": 0,
"favorite_count": 0
},
"1390652473489072135": {
"text": "RT @Smoker_Gamer: Skin nuevo http://t.co/PwXKurblCV",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1390652473489072135,
"created_at": 1620392340,
"retweet_count": 0,
"favorite_count": 0
},
"1395357540871933962": {
"text": "RT @Themask666: Chicken wings are soo gooood",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1395357540871933962,
"created_at": 1621514100,
"retweet_count": 0,
"favorite_count": 0
},
"1395357512396775426": {
"text": "RT @Themask666: Smashing fifa like I'd be smashing thatt pussy of yours",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1395357512396775426,
"created_at": 1621514100,
"retweet_count": 0,
"favorite_count": 0
},
"1395358779043028992": {
"text": "RT @georgem478: @PFChangs Bitch!, nuff said.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1395358779043028992,
"created_at": 1621514400,
"retweet_count": 0,
"favorite_count": 0
},
"1397984042465730560": {
"text": "very good thank you. im jacking off in one of these right now while playing the knight rider theme on my phone https://t.co/AlFIVlttVR",
"retweets": "2,672",
"likes": "21,792",
"type": "Tweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1397984042465730560,
"created_at": 1622140320,
"retweet_count": 2,
"favorite_count": 21
},
"1398576656722186241": {
"text": "RT @sweety123: Pain Near Belly Button",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1398576656722186241,
"created_at": 1622281620,
"retweet_count": 0,
"favorite_count": 0
},
"1398576629362745349": {
"text": "RT @sweety123: What Does Green Poop Mean? -",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1398576629362745349,
"created_at": 1622281620,
"retweet_count": 0,
"favorite_count": 0
},
"1400542182696624134": {
"text": "RT @MrViral: Granny vs Car - http://tinyurl.com/an7qwm",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1400542182696624134,
"created_at": 1622750220,
"retweet_count": 0,
"favorite_count": 0
},
"1400542177369804801": {
"text": "RT @MrViral: Idot vs Wall - http://tinyurl.com/agdnh9",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1400542177369804801,
"created_at": 1622750220,
"retweet_count": 0,
"favorite_count": 0
},
"1400542132692156417": {
"text": "RT @MrViral: Man vs Sign - http://tinyurl.com/6qd9nw",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1400542132692156417,
"created_at": 1622750220,
"retweet_count": 0,
"favorite_count": 0
},
"1402741100574494722": {
"text": "RT @LawlessMicael: Gift cards cash app and bitcoin suck ass https://t.co/HAKpF14R1F",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": true,
"language": "English",
"user_id": 16298441,
"id": 1402741100574494722,
"created_at": 1623274500,
"retweet_count": 0,
"favorite_count": 0
},
"1406705999453450240": {
"text": "RT @barneyshit: that awkard moment when your parents try to make your friends laugh",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1406705999453450240,
"created_at": 1624219800,
"retweet_count": 0,
"favorite_count": 0
},
"1407255430212952064": {
"text": "RT @ratporn: thaiflood",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1407255430212952064,
"created_at": 1624350780,
"retweet_count": 0,
"favorite_count": 0
},
"1407260918078009345": {
"text": "RT @bitchporn: I love to do sex !!! Uhh.oohh.. Sex!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1407260918078009345,
"created_at": 1624352100,
"retweet_count": 0,
"favorite_count": 0
},
"1407267669582123010": {
"text": "RT @cars2_movie: Follow fpr a follow back",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1407267669582123010,
"created_at": 1624353720,
"retweet_count": 0,
"favorite_count": 0
},
"1409714090050678784": {
"text": "RT @SensualPussy: New in the adult world starting a new adult video company.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1409714090050678784,
"created_at": 1624936980,
"retweet_count": 0,
"favorite_count": 0
},
"1410256425893253128": {
"text": "RT @BraMan1: Tptjga",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 1410256425893253128,
"created_at": 1625066280,
"retweet_count": 0,
"favorite_count": 0
},
"1413761553631911937": {
"text": "RT @SPLIFF_MASTER: That's cool your mad at me when I didn't do anything wrong",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1413761553631911937,
"created_at": 1625901960,
"retweet_count": 0,
"favorite_count": 0
},
"1413761869337092099": {
"text": "RT @SPLIFF_MASTER: Hate the feelings I'm Haveing right now",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1413761869337092099,
"created_at": 1625902020,
"retweet_count": 0,
"favorite_count": 0
},
"1414388766077186054": {
"text": "RT @MrGoViral: #IWishIWas #normal #mgv #MrGoViral",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qht",
"user_id": 16298441,
"id": 1414388766077186054,
"created_at": 1626051480,
"retweet_count": 0,
"favorite_count": 0
},
"1414388739602731010": {
"text": "RT @MrGoViral: Who cares what people think do it anyway. #Takedat #HolDat #MrGoViral #mgv",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1414388739602731010,
"created_at": 1626051480,
"retweet_count": 0,
"favorite_count": 0
},
"1414388802890604548": {
"text": "RT @MrGoViral: Let build a community together #MrGoViral #mgv",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1414388802890604548,
"created_at": 1626051540,
"retweet_count": 0,
"favorite_count": 0
},
"1414516396327796737": {
"text": "RT @barneykiller: Osama buried at sea. Huh.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 1414516396327796737,
"created_at": 1626081960,
"retweet_count": 0,
"favorite_count": 0
},
"1414518160737193987": {
"text": "RT @AchmedReal: @teamo_cali You hate people like me huh? Fuck you. The fuck you going to do about it bitch? Just like everyone else. You only \"act\" nice",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1414518160737193987,
"created_at": 1626082380,
"retweet_count": 0,
"favorite_count": 0
},
"1419424342119645184": {
"text": "RT @AdelObali: @Megalyteri1 well what can you do against natural selection. she should also get the Darwin reward of the year",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1419424342119645184,
"created_at": 1627252080,
"retweet_count": 0,
"favorite_count": 0
},
"1419424718176735232": {
"text": "RT @_NOT_FAKE_NEWS: Teens risk their lives with laundry pods challenge - And the Darwin REWARD goes too...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1419424718176735232,
"created_at": 1627252140,
"retweet_count": 0,
"favorite_count": 0
},
"1419470349914181636": {
"text": "RT @Mensland: @BadassSenorita_ I m never judge anyone",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1419470349914181636,
"created_at": 1627263060,
"retweet_count": 0,
"favorite_count": 0
},
"1419470338128113664": {
"text": "RT @Mensland: &lt;------—-- whatching 8 Mile",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1419470338128113664,
"created_at": 1627263060,
"retweet_count": 0,
"favorite_count": 0
},
"1419470318431719430": {
"text": "RT @Mensland: Come get fitted at the Mens Land and Metro Fusion location near u .... http://t.co/VeDV7fvUNP",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1419470318431719430,
"created_at": 1627263060,
"retweet_count": 0,
"favorite_count": 0
},
"1421553007141871617": {
"text": "RT @birrabiergt: Si pudieras contar cuántas cervezas te haz tomado en tu vida desde que tienes razón, ¿Cuál sería el número final? #MyBeerNumber",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1421553007141871617,
"created_at": 1627759620,
"retweet_count": 0,
"favorite_count": 0
},
"1422775539400466434": {
"text": "RT @jeansformen: Jeans for Men\n http://t.co/axWrM9bjf9 http://t.co/hmAbH6VnPg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Danish",
"user_id": 16298441,
"id": 1422775539400466434,
"created_at": 1628051040,
"retweet_count": 0,
"favorite_count": 0
},
"1424652844133584897": {
"text": "RT @PussyGary: @DutchSelfies follow me and DM ME",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1424652844133584897,
"created_at": 1628498640,
"retweet_count": 0,
"favorite_count": 0
},
"1424654066676736002": {
"text": "RT @prettywife: looking at a movie",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1424654066676736002,
"created_at": 1628498940,
"retweet_count": 0,
"favorite_count": 0
},
"1424654242543857665": {
"text": "RT @BESTWIFE: LISTENING TO MY HUSBAND TELL ME WHY HE WAS \"WATCHING PINKY\"......SOMEONES IN TROUBLE...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1424654242543857665,
"created_at": 1628499000,
"retweet_count": 0,
"favorite_count": 0
},
"1425766917097222154": {
"text": "RT @mr_hitler: 2 bomb blast in karachi .its sad",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1425766917097222154,
"created_at": 1628764260,
"retweet_count": 0,
"favorite_count": 0
},
"1425768447804284928": {
"text": "RT @EmailHater: Cartas! https://t.co/23udpdG8ex",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1425768447804284928,
"created_at": 1628764620,
"retweet_count": 0,
"favorite_count": 0
},
"1425769588453638144": {
"text": "RT @Mensaofficial: Football is back",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1425769588453638144,
"created_at": 1628764920,
"retweet_count": 0,
"favorite_count": 0
},
"1425771276665118724": {
"text": "RT @TougasPayant: @AmericanMensa I found the purpose of the pyramid !\n interested !?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1425771276665118724,
"created_at": 1628765280,
"retweet_count": 0,
"favorite_count": 0
},
"1427182913133572103": {
"text": "RT @gofuckyou: fsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsdfsd",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Turkish",
"user_id": 16298441,
"id": 1427182913133572103,
"created_at": 1629101880,
"retweet_count": 0,
"favorite_count": 0
},
"1427184862662848512": {
"text": "RT @letmefuck: I wana fuck",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1427184862662848512,
"created_at": 1629102360,
"retweet_count": 0,
"favorite_count": 0
},
"1427193784933097474": {
"text": "RT @crissanglQuotes: who thanks criss angel should have his own video game....would b cool to play as criss and do tricks 4 people",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1427193784933097474,
"created_at": 1629104460,
"retweet_count": 0,
"favorite_count": 0
},
"1427193708915560462": {
"text": "RT @crissanglQuotes: I love wolfs...they are so beautiful",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1427193708915560462,
"created_at": 1629104460,
"retweet_count": 0,
"favorite_count": 0
},
"1427195576060309509": {
"text": "RT @crissanglQuotes: Pain is a beautiful thing......when u,fell pain,u know u are alive #CAQ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1427195576060309509,
"created_at": 1629104880,
"retweet_count": 0,
"favorite_count": 0
},
"1427195884270362636": {
"text": "RT @crissanglQuotes: I need some new pics of criss if you have pics of him post them to me and ill use them",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1427195884270362636,
"created_at": 1629104940,
"retweet_count": 0,
"favorite_count": 0
},
"1427935637341040645": {
"text": "RT @minefreak7: Moise",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "French",
"user_id": 16298441,
"id": 1427935637341040645,
"created_at": 1629281340,
"retweet_count": 0,
"favorite_count": 0
},
"1428357189551288331": {
"text": "RT @MenBible: That awkward moment when the teacher says find a partner, and you have no friends in that class.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1428357189551288331,
"created_at": 1629381840,
"retweet_count": 0,
"favorite_count": 0
},
"1428661884232736770": {
"text": "RT @koko_skrapi27: @Arena51lasertag Ay yall fucking ass bro you fucking suck fucking 3 years olds come and play there he fucking starts a fight with me he hits me with a fucking lazer gun and i fight back and im the one getting banned for life not him that started the fight thats shit get fucking better yall shit",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1428661884232736770,
"created_at": 1629454500,
"retweet_count": 0,
"favorite_count": 0
},
"1428812402473111559": {
"text": "RT @killbarney: Dannon-do you know how DISGUSTING your new Lite and Fit commercial is? Disgtusting enough I will NOT NOT NOT buy your product-ANY!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1428812402473111559,
"created_at": 1629490380,
"retweet_count": 0,
"favorite_count": 0
},
"1428812611940798469": {
"text": "RT @killbarney: Target employees r getting ruder by the day",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1428812611940798469,
"created_at": 1629490440,
"retweet_count": 0,
"favorite_count": 0
},
"1428881550607732736": {
"text": "RT @JokePope: Ima da frikkina pope! @sethmacfarlane http://t.co/5OkYTzKn",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "",
"user_id": 16298441,
"id": 1428881550607732736,
"created_at": 1629506880,
"retweet_count": 0,
"favorite_count": 0
},
"1430037125907374090": {
"text": "RT @manga_boy: just got back from the Bon Odori Festival in penang,Malaysia. many cuties wearing Kimono.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1430037125907374090,
"created_at": 1629782340,
"retweet_count": 0,
"favorite_count": 0
},
"1430126546023374858": {
"text": "RT @HE_WHO_IS_DANCE: EVERY DAY IS THANKSGIVING ON TWITTER, THERE'S NOTHING BUT A BUNCH OF \"TURKEYS\" ON HERE, AND THAT INCLUDES THE WOMEN TOO.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1430126546023374858,
"created_at": 1629803700,
"retweet_count": 0,
"favorite_count": 0
},
"1430126501664497671": {
"text": "RT @HE_WHO_IS_DANCE: https://t.co/0jbqIpDssK",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1430126501664497671,
"created_at": 1629803700,
"retweet_count": 0,
"favorite_count": 0
},
"1430217922715082752": {
"text": "RT @PussyGovernor: @AmaAsabea7 I am pussy Governor",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1430217922715082752,
"created_at": 1629825480,
"retweet_count": 0,
"favorite_count": 0
},
"1434454107759149056": {
"text": "RT @bible_god: T rust in\n G od\n O r\n D ie\n * NEW TGOD *",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1434454107759149056,
"created_at": 1630835460,
"retweet_count": 0,
"favorite_count": 0
},
"1434454930614489088": {
"text": "RT @fuckedasshole: no job",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1434454930614489088,
"created_at": 1630835640,
"retweet_count": 0,
"favorite_count": 0
},
"1435171946874867717": {
"text": "RT @Joke_Poster: Do you want to do goals ?? DM me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435171946874867717,
"created_at": 1631006580,
"retweet_count": 0,
"favorite_count": 0
},
"1435171941980073990": {
"text": "RT @Joke_Poster: Goals ? DM me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435171941980073990,
"created_at": 1631006580,
"retweet_count": 0,
"favorite_count": 0
},
"1435171936644964358": {
"text": "RT @Joke_Poster: Who wants to do goals ?? I do... DM me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435171936644964358,
"created_at": 1631006580,
"retweet_count": 0,
"favorite_count": 0
},
"1435172049777934338": {
"text": "RT @Joke_Poster: Bitch !!!!! Want to laugh til stomach hurts ??? Follow @FuckingLaughter !!!!!!!!! #EPICFUNNY !",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435172049777934338,
"created_at": 1631006640,
"retweet_count": 0,
"favorite_count": 0
},
"1435172335955283975": {
"text": "RT @FuckingLaughter: @IndieFans Follow me i am an #IndieFan",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435172335955283975,
"created_at": 1631006700,
"retweet_count": 0,
"favorite_count": 0
},
"1435172328426536961": {
"text": "RT @FuckingLaughter: Me? Sarcastic? Never.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435172328426536961,
"created_at": 1631006700,
"retweet_count": 0,
"favorite_count": 0
},
"1435422409599848448": {
"text": "RT @JackAss: Oh ya.. Please send the #googleplusinvites to my official id jack.ass@msn.com",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435422409599848448,
"created_at": 1631066340,
"retweet_count": 0,
"favorite_count": 0
},
"1435424426854551557": {
"text": "RT @DevilMan: Think it and Live it !!!! Devilman",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435424426854551557,
"created_at": 1631066820,
"retweet_count": 0,
"favorite_count": 0
},
"1435424419552190465": {
"text": "RT @DevilMan: This is bullshit, gas prices us the ass!!!! Send me to washington I will straighten shit out, put up a fork somebodys ass......",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1435424419552190465,
"created_at": 1631066820,
"retweet_count": 0,
"favorite_count": 0
},
"1437336529605595143": {
"text": "RT @only_gay: The gay world always gives energy and peace",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1437336529605595143,
"created_at": 1631522700,
"retweet_count": 0,
"favorite_count": 0
},
"1437336897479581698": {
"text": "RT @onlycrap: crap bieber!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1437336897479581698,
"created_at": 1631522760,
"retweet_count": 0,
"favorite_count": 0
},
"1440856838027681796": {
"text": "RT @Gumbyman: Thinking aobut what to have for lunch!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1440856838027681796,
"created_at": 1632361980,
"retweet_count": 0,
"favorite_count": 0
},
"1441523205974331403": {
"text": "RT @clean_dick: Go clean you dick",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1441523205974331403,
"created_at": 1632520860,
"retweet_count": 0,
"favorite_count": 0
},
"1442084800660082690": {
"text": "RT @BigMommaHouse: We making a new reality show called Big Momma's House",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1442084800660082690,
"created_at": 1632654780,
"retweet_count": 0,
"favorite_count": 0
},
"1442086884365139968": {
"text": "RT @james_bond007: My name is Tanaka. Please call me Tiger.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1442086884365139968,
"created_at": 1632655260,
"retweet_count": 0,
"favorite_count": 0
},
"1442086823161831424": {
"text": "RT @james_bond007: Oh Twitter, why oh why do you send me football related messges? I have absolutely NO INTEREST in this stuff, I am not following it, WTF?",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1442086823161831424,
"created_at": 1632655260,
"retweet_count": 0,
"favorite_count": 0
},
"1442087447735664641": {
"text": "RT @100Dollarz: Who would like to get paid to quit smoking #cigarette and get paid for it $20/40$ hr",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1442087447735664641,
"created_at": 1632655380,
"retweet_count": 0,
"favorite_count": 0
},
"1442087921218048007": {
"text": "RT @100Dollarz: @kevvvennn @FArhaAfiqah1 I help people who Vape make $20-40$ a hr working from home",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1442087921218048007,
"created_at": 1632655500,
"retweet_count": 0,
"favorite_count": 0
},
"1443102926503755776": {
"text": "RT @SpiritofLagos: We all want to be treated with respect but the question we need to ask ourselves is, how do you treat others? http://t.co/urTZERCkoX",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1443102926503755776,
"created_at": 1632897480,
"retweet_count": 0,
"favorite_count": 0
},
"1443126049374572548": {
"text": "RT @moutherfucker: i fuck my mouther at 6 o clock an then i fuck money with my dick",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1443126049374572548,
"created_at": 1632903000,
"retweet_count": 0,
"favorite_count": 0
},
"1444122569469169666": {
"text": "RT @greatpussy: I AM JUST LOOKING FORWARD TO MY HOLIDAYS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1444122569469169666,
"created_at": 1633140600,
"retweet_count": 0,
"favorite_count": 0
},
"1444344675448459266": {
"text": "RT @BeerOlympics: TABC trying to shut down the KBO. Don&#39;t let it happen. They are calling bars around the area telling them not to talk to us. Show suppor",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1444344675448459266,
"created_at": 1633193520,
"retweet_count": 0,
"favorite_count": 0
},
"1446918295861424130": {
"text": "RT @noobowner: #mw2 definetley have no tanks and make suicide bombs ( as in be able to place a C4 on yourself) and to pull the picks off of enemy grenades",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1446918295861424130,
"created_at": 1633807140,
"retweet_count": 0,
"favorite_count": 0
},
"1447857354234425346": {
"text": "RT @girlmessages: Girls want a guy that can openly say, \"Yes that's my girlfriend and yes I do love her.\"",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1447857354234425346,
"created_at": 1634031060,
"retweet_count": 0,
"favorite_count": 0
},
"1450416164606119936": {
"text": "RT @msgs_fun: FeMale_SeX",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "ht",
"user_id": 16298441,
"id": 1450416164606119936,
"created_at": 1634641080,
"retweet_count": 0,
"favorite_count": 0
},
"1450416308030296068": {
"text": "RT @msgs_fun: Follow\n @Kis_On Boob",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1450416308030296068,
"created_at": 1634641140,
"retweet_count": 0,
"favorite_count": 0
},
"1453956565954822144": {
"text": "RT @DonaldSevin: @Madonna Duck egg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1453956565954822144,
"created_at": 1635485220,
"retweet_count": 0,
"favorite_count": 0
},
"1453956529317498886": {
"text": "RT @DonaldSevin: @MikeTyson obiturary http://t.co/kwdbStLeYR",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1453956529317498886,
"created_at": 1635485220,
"retweet_count": 0,
"favorite_count": 0
},
"1453956513861541898": {
"text": "RT @DonaldSevin: Ruffles Potatoe Chip",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1453956513861541898,
"created_at": 1635485220,
"retweet_count": 0,
"favorite_count": 0
},
"1453959474419421194": {
"text": "RT @DonaldSevin: @WhiteHouse White House see your ass to the door http://t.co/5FEBWnFNMT",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1453959474419421194,
"created_at": 1635485880,
"retweet_count": 0,
"favorite_count": 0
},
"1454358417280094210": {
"text": "RT @DailyHusband: Let's start this account off right. Pick up whatever you are drinking. Cheers to you. You. Are. Awesome. #likeaboss",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1454358417280094210,
"created_at": 1635581040,
"retweet_count": 0,
"favorite_count": 0
},
"1457866384977764354": {
"text": "RT @dril: NOW AVAILABLE ...\n \"THE Get Rich &amp; Become God METHOD\" Out Now -- Come N Get It\n https://t.co/yiqqyqZfoJ https://t.co/v6wYsigXzt",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1457866384977764354,
"created_at": 1636417380,
"retweet_count": 0,
"favorite_count": 0
},
"1463005321803153413": {
"text": "RT @Bernie_Bro: Probando esto...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1463005321803153413,
"created_at": 1637642580,
"retweet_count": 0,
"favorite_count": 0
},
"1463608743770279942": {
"text": "RT @dril: https://t.co/yiqqyqZfoJ well apparently my book is now 25% off for some reason. Seems like a good deal to me .",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1463608743770279942,
"created_at": 1637786460,
"retweet_count": 0,
"favorite_count": 0
},
"1464298621315129346": {
"text": "RT @MemesCheck: CUTE BABY eating his ears , this is so AWSOME https://t.co/mrwFgnLJoX",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464298621315129346,
"created_at": 1637950920,
"retweet_count": 0,
"favorite_count": 0
},
"1464298583407009792": {
"text": "RT @MemesCheck: Intro of Sponge BoB never seen before! https://t.co/8J4o84RKgt",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464298583407009792,
"created_at": 1637950920,
"retweet_count": 0,
"favorite_count": 0
},
"1464300240018690051": {
"text": "RT @WARIOR: JUST SAT @ HOME ON MI OWN WONDERIN WOT I CAN DO",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464300240018690051,
"created_at": 1637951340,
"retweet_count": 0,
"favorite_count": 0
},
"1464301803646820353": {
"text": "RT @WariorGentleman: Best #strategy for a simple scenario:\n \n Someone stealing from a #tip jar..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464301803646820353,
"created_at": 1637951700,
"retweet_count": 0,
"favorite_count": 0
},
"1464843735049539586": {
"text": "RT @johnware60044: female judges in essex,morris county,I want you now, take off the Black robe,and lets make love in the court room,",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464843735049539586,
"created_at": 1638080880,
"retweet_count": 0,
"favorite_count": 0
},
"1464843721770352644": {
"text": "RT @johnware60044: @RachaelRayMag i have to stop iam will go out oif control, your pussdy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464843721770352644,
"created_at": 1638080880,
"retweet_count": 0,
"favorite_count": 0
},
"1464843816230219777": {
"text": "RT @johnware60044: transformed into lesbian",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464843816230219777,
"created_at": 1638080940,
"retweet_count": 0,
"favorite_count": 0
},
"1464844644190076935": {
"text": "RT @johnware60044: first step to intense power in love making subscription to scientific american, you must be open science book",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1464844644190076935,
"created_at": 1638081120,
"retweet_count": 0,
"favorite_count": 0
},
"1466399654203912205": {
"text": "RT @dril: you can also get a personalized deluxe hardcover directly from me... just one of these \"FUCKERS\" is worth 100 nfts https://t.co/sEoc3FiLMd https://t.co/iHEMDxZ0Mg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1466399654203912205,
"created_at": 1638451860,
"retweet_count": 0,
"favorite_count": 0
},
"1466634947452489730": {
"text": "RT @DiaperDunce: Diaper Dunce logo officially up and it’s looking pretty cool. Find… https://t.co/eYIUzHIdgx",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1466634947452489730,
"created_at": 1638507960,
"retweet_count": 0,
"favorite_count": 0
},
"1466668428140240896": {
"text": "RT @BBW_Lover: 2:29 &#8211; Belly Button Fucking: I know some of you love to see a belly button fucked so this one is for you http://bit.ly/paNdy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1466668428140240896,
"created_at": 1638515940,
"retweet_count": 0,
"favorite_count": 0
},
"1466685006693101570": {
"text": "RT @MakeItAQuote: @bigbluntsmoke https://t.co/UQlFiX6161",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "qme",
"user_id": 16298441,
"id": 1466685006693101570,
"created_at": 1638519900,
"retweet_count": 0,
"favorite_count": 0
},
"1470523126853160961": {
"text": "RT @dril: - full color\n - 395 pages\n -beautiful good shit\n - cheaper than ever, now 35% off??? Get it while u can....\n https://t.co/yiqqyqZfoJ",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1470523126853160961,
"created_at": 1639434960,
"retweet_count": 0,
"favorite_count": 0
},
"1471991979516956672": {
"text": "RT @9822084b9d02438: Ceep calme and love sex",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1471991979516956672,
"created_at": 1639785180,
"retweet_count": 0,
"favorite_count": 0
},
"1471991970067222530": {
"text": "RT @9822084b9d02438: @PDXAcademyofSex \n Hello i wont to come in academy of sex but when the inscription \n Please contact me in twitter \n And thank you",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1471991970067222530,
"created_at": 1639785180,
"retweet_count": 0,
"favorite_count": 0
},
"1471992585648443393": {
"text": "RT @morrisskinn708: i need your help to make money,i wont to join the illuminati",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1471992585648443393,
"created_at": 1639785300,
"retweet_count": 0,
"favorite_count": 0
},
"1471992670213971968": {
"text": "RT @morrisskinn708: @JoelOsteen hello help me to join the illuminati",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1471992670213971968,
"created_at": 1639785360,
"retweet_count": 0,
"favorite_count": 0
},
"1471992607790145545": {
"text": "RT @morrisskinn708: @TeflonDon305 hello i wont to join the 666 please help me",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1471992607790145545,
"created_at": 1639785360,
"retweet_count": 0,
"favorite_count": 0
},
"1472846951771095043": {
"text": "RT @jacobtu09565788: worshiping https://t.co/5ZU61Lngc3",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1472846951771095043,
"created_at": 1639989000,
"retweet_count": 0,
"favorite_count": 0
},
"1473934978811449344": {
"text": "RT @smokeyjoe489: Wow it’s beautiful, thank u @dril https://t.co/izOzhTF9Jg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1473934978811449344,
"created_at": 1640248440,
"retweet_count": 0,
"favorite_count": 0
},
"1475056903235387394": {
"text": "RT @ONECondoms: #tbt to @CHVRCHES rocking our @Lifebeat #ONE condoms! #safesex http://t.co/IyylPJB2oI",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1475056903235387394,
"created_at": 1640515920,
"retweet_count": 0,
"favorite_count": 0
},
"1475056825233854466": {
"text": "RT @condom_king: http://t.co/QWfCVs1B7g",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1475056825233854466,
"created_at": 1640515920,
"retweet_count": 0,
"favorite_count": 0
},
"1475057800384450564": {
"text": "RT @condom_king: condom king http://t.co/WeZR8W1M",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1475057800384450564,
"created_at": 1640516100,
"retweet_count": 0,
"favorite_count": 0
},
"1475057766133755904": {
"text": "RT @condom_king: Your Brand Here http://t.co/ooMIVQr9",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1475057766133755904,
"created_at": 1640516100,
"retweet_count": 0,
"favorite_count": 0
},
"1478374697586675713": {
"text": "RT @DubStep_man: Jonny Deep",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1478374697586675713,
"created_at": 1641306960,
"retweet_count": 0,
"favorite_count": 0
},
"1480121866052243458": {
"text": "RT @MichaelKors: Livetweet starts now!!! Who's excited!!?? #MKOprah #Oprah",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1480121866052243458,
"created_at": 1641723480,
"retweet_count": 0,
"favorite_count": 0
},
"1480791964651966465": {
"text": "RT @mrdiaper: Footballer super injunction",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1480791964651966465,
"created_at": 1641883260,
"retweet_count": 0,
"favorite_count": 0
},
"1481601025324642308": {
"text": "RT @demonsex69: making what i can of what life delt",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1481601025324642308,
"created_at": 1642076160,
"retweet_count": 0,
"favorite_count": 0
},
"1483090678171136001": {
"text": "RT @Men_Posts: If a guy says you’re beautiful, that guy likes you.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1483090678171136001,
"created_at": 1642431300,
"retweet_count": 0,
"favorite_count": 0
},
"1483090559946276865": {
"text": "RT @Men_Posts: Guys hate it when their clothes get dirty. Even a small dot.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1483090559946276865,
"created_at": 1642431300,
"retweet_count": 0,
"favorite_count": 0
},
"1483661007759163392": {
"text": "RT @Sweetyman3: Hi every1.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1483661007759163392,
"created_at": 1642567320,
"retweet_count": 0,
"favorite_count": 0
},
"1483762598533238786": {
"text": "RT @patchcollecter: @stouffers the sweetish meatballs https://t.co/Yyjp72rdpF",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1483762598533238786,
"created_at": 1642591500,
"retweet_count": 0,
"favorite_count": 0
},
"1483764290238644226": {
"text": "RT @whatup1995: @stouffers wtf is this a bug https://t.co/hixbbuZozU",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1483764290238644226,
"created_at": 1642591920,
"retweet_count": 0,
"favorite_count": 0
},
"1483924970027638790": {
"text": "RT @kcgreenn: reading @dril 's book and giving him the proper respect he deserves salute emoji https://t.co/7i1IhCDIhP",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1483924970027638790,
"created_at": 1642630200,
"retweet_count": 0,
"favorite_count": 0
},
"1486578326265221120": {
"text": "RT @MyDare: I Dare You - Walk in the middle of a busy street and shout something rude! Post video of this onto this page.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1486578326265221120,
"created_at": 1643262840,
"retweet_count": 0,
"favorite_count": 0
},
"1488359271938998272": {
"text": "RT @michael33984814: https://t.co/ha08HINLnm",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "zxx",
"user_id": 16298441,
"id": 1488359271938998272,
"created_at": 1643687460,
"retweet_count": 0,
"favorite_count": 0
},
"1491343552508731392": {
"text": "RT @gamer_shit: I really wanna win the money #EsuranceSave30",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1491343552508731392,
"created_at": 1644398940,
"retweet_count": 0,
"favorite_count": 0
},
"1491343545227448320": {
"text": "RT @gamer_shit: \"Im gunna fuck your bitch while we watch teenmom 2\" - stupid studdery dude",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1491343545227448320,
"created_at": 1644398940,
"retweet_count": 0,
"favorite_count": 0
},
"1492822259064442887": {
"text": "RT @BabeFollower: Following 100 babes ...... you are the chose ones ladies",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1492822259064442887,
"created_at": 1644751500,
"retweet_count": 0,
"favorite_count": 0
},
"1493570535787094018": {
"text": "RT @TheYoutubeBitch: @youtubebitch I AM THE REAL YOUTUBE BITCH, BITCH!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1493570535787094018,
"created_at": 1644929880,
"retweet_count": 0,
"favorite_count": 0
},
"1503169502493609988": {
"text": "RT @MichaelButler6: Pre Sabbath at Hootors",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1503169502493609988,
"created_at": 1647218460,
"retweet_count": 0,
"favorite_count": 0
},
"1510179947846901767": {
"text": "RT @joedirt69: just taking it easy",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510179947846901767,
"created_at": 1648889880,
"retweet_count": 0,
"favorite_count": 0
},
"1510192270426853376": {
"text": "RT @yahoogmail: Trying to fing Pastor chappell",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510192270426853376,
"created_at": 1648892820,
"retweet_count": 0,
"favorite_count": 0
},
"1510192406116790275": {
"text": "RT @yahoo_gmail: Speedmarry not only for marriage but also more products jobs, webmasters, pagerank etc",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510192406116790275,
"created_at": 1648892880,
"retweet_count": 0,
"favorite_count": 0
},
"1510193324707119104": {
"text": "RT @speedmarry: Speedmarry not limited for only matrimonial webiste besides it has numerous tools and user friendly programs like Jobs, Forums, many more..",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510193324707119104,
"created_at": 1648893120,
"retweet_count": 0,
"favorite_count": 0
},
"1510194070571782144": {
"text": "RT @screwu: U sound like walle havin sex with da speak and spell",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510194070571782144,
"created_at": 1648893240,
"retweet_count": 0,
"favorite_count": 0
},
"1510194547376078851": {
"text": "RT @TwiterPolice: I know what is in area 51",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510194547376078851,
"created_at": 1648893360,
"retweet_count": 0,
"favorite_count": 0
},
"1510195049450987522": {
"text": "RT @TwiterPolice: Please treat Twitter users and Twitter website with respect",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510195049450987522,
"created_at": 1648893480,
"retweet_count": 0,
"favorite_count": 0
},
"1510195125065969671": {
"text": "RT @TwiterPolice: I have watched every terminator movie and series episode",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510195125065969671,
"created_at": 1648893540,
"retweet_count": 0,
"favorite_count": 0
},
"1510920309167198212": {
"text": "RT @pimpreal: Me against da world",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510920309167198212,
"created_at": 1649066400,
"retweet_count": 0,
"favorite_count": 0
},
"1510921223076679687": {
"text": "RT @gamer_master: nothing",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1510921223076679687,
"created_at": 1649066640,
"retweet_count": 0,
"favorite_count": 0
},
"1511314266061611016": {
"text": "RT @emccedrewk: This whole world is fucked",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1511314266061611016,
"created_at": 1649160360,
"retweet_count": 0,
"favorite_count": 0
},
"1511314260898459650": {
"text": "RT @emccedrewk: if your single?! Copy and paste this and whoever likes it would date you",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1511314260898459650,
"created_at": 1649160360,
"retweet_count": 0,
"favorite_count": 0
},
"1512265306588078085": {
"text": "RT @Titty_Man: I CAN&amp;#039;T STOP PLAYING CERBERUS AGE! #cerberusage *420* Cerberus Age http://t.co/0YwIuifW",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1512265306588078085,
"created_at": 1649387100,
"retweet_count": 0,
"favorite_count": 0
},
"1512266052775804930": {
"text": "RT @Mp3man: Fuck this twitter shit",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1512266052775804930,
"created_at": 1649387280,
"retweet_count": 0,
"favorite_count": 0
},
"1512347739429896193": {
"text": "RT @Masturbator10: I am watching Russel Brand on CNN Pierce Morgan.I am masturbating hard.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1512347739429896193,
"created_at": 1649406720,
"retweet_count": 0,
"favorite_count": 0
},
"1512354967906004993": {
"text": "RT @grumpycatman: You need a big dose of shut up!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1512354967906004993,
"created_at": 1649408460,
"retweet_count": 0,
"favorite_count": 0
},
"1512355464012460035": {
"text": "RT @GrummpyCat: Hoes Went From \"Duck Duck Goose\" To \"Fuck Fuck Loose\" \"From Ring Around A Roise \" To \" Fuckin All Da Homies",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1512355464012460035,
"created_at": 1649408580,
"retweet_count": 0,
"favorite_count": 0
},
"1513480084430106627": {
"text": "RT @ngelGarcaGarci2: @zyngapoker üòéüî• https://t.co/cVswcNe5oq",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "",
"user_id": 16298441,
"id": 1513480084430106627,
"created_at": 1649676720,
"retweet_count": 0,
"favorite_count": 0
},
"1513480010128003073": {
"text": "RT @ngelGarcaGarci2: @zyngapoker Thank you 😎🗽🎆 https://t.co/SdOueYFrMS",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1513480010128003073,
"created_at": 1649676720,
"retweet_count": 0,
"favorite_count": 0
},
"1513480555957870600": {
"text": "RT @ngelGarcaGarci2: @zyngapoker Thank you üòé https://t.co/gSg4g0hbdq",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1513480555957870600,
"created_at": 1649676840,
"retweet_count": 0,
"favorite_count": 0
},
"1513481563593338886": {
"text": "RT @mstfdeniz8: @zyngapoker give me back my receipts or i will declare you thieves on all platforms",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1513481563593338886,
"created_at": 1649677080,
"retweet_count": 0,
"favorite_count": 0
},
"1513482034206818308": {
"text": "RT @ANASNAS48878993: @zyngapoker https://t.co/iRxMd3HfeA",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": true,
"language": "qme",
"user_id": 16298441,
"id": 1513482034206818308,
"created_at": 1649677200,
"retweet_count": 0,
"favorite_count": 0
},
"1517205295356780544": {
"text": "RT @TruthPointDWR: THE WAIT IS OVER—\n TRUTHPOINT RETURNS: MAY 1ST\n Only on CNN+\n \"We are not only excited to return to the world of Truth Point, but to be shoulder to shoulder with industry titans such as Anderson, Wolf, &amp; Don Lemons, on the exalted CNN Plus platform, it is a True pleasure. Thank you\" https://t.co/UY57purUK8",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1517205295356780544,
"created_at": 1650564900,
"retweet_count": 0,
"favorite_count": 0
},
"1518132120232767488": {
"text": "RT @zyngaboy: i want it back",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518132120232767488,
"created_at": 1650785820,
"retweet_count": 0,
"favorite_count": 0
},
"1518132096664936448": {
"text": "RT @zyngaboy: i got scammed 45000 coins and 5600 yocash",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518132096664936448,
"created_at": 1650785820,
"retweet_count": 0,
"favorite_count": 0
},
"1518132269155717120": {
"text": "RT @Download_Man: Im downloading",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518132269155717120,
"created_at": 1650785880,
"retweet_count": 0,
"favorite_count": 0
},
"1518140744531283969": {
"text": "RT @FullscreenDream: https://t.co/rEPOdtNDoU",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": true,
"language": "zxx",
"user_id": 16298441,
"id": 1518140744531283969,
"created_at": 1650787920,
"retweet_count": 0,
"favorite_count": 0
},
"1518210832294768640": {
"text": "RT @FuckedUpReality: I don't do shits",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518210832294768640,
"created_at": 1650804600,
"retweet_count": 0,
"favorite_count": 0
},
"1518213803330052096": {
"text": "RT @shit123456789: my mom ate my burger",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518213803330052096,
"created_at": 1650805320,
"retweet_count": 0,
"favorite_count": 0
},
"1518897225669120001": {
"text": "RT @WorldBestHumor: Listening to music at high volumes can make a person calmer, happier and more relaxed.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518897225669120001,
"created_at": 1650968280,
"retweet_count": 0,
"favorite_count": 0
},
"1518899093250007040": {
"text": "RT @bestofcomedy: You are honestly the weirdest fucking person I know... And that is why we are best friends...",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518899093250007040,
"created_at": 1650968700,
"retweet_count": 0,
"favorite_count": 0
},
"1518899719673503744": {
"text": "RT @bestofcomedy: Pardon me, but you're obviously mistaking me for someone who gives a fuck.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518899719673503744,
"created_at": 1650968880,
"retweet_count": 0,
"favorite_count": 0
},
"1518901368915783681": {
"text": "RT @bestofcomedy: Saying \"I'm fine\" when you're not, \"it's nothing\" when it's everything, \"I'm done\" when you know you still wanna try.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1518901368915783681,
"created_at": 1650969240,
"retweet_count": 0,
"favorite_count": 0
},
"1528513491589468160": {
"text": "RT @ChowderTourism: Thursday's episode is our last, and what happens in it is up to you. Depending on your path, your story's conclusion could feature performances by @JAdomian, @Sophartso, @oneamyzimmer, @sarahlindish, and @dril. Get caught up and make your final decision: https://t.co/Z1hO4Lbgb8 https://t.co/3rQ7IrcYrg",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1528513491589468160,
"created_at": 1653260940,
"retweet_count": 0,
"favorite_count": 0
},
"1529936244209164288": {
"text": "RT @oldmen345: কমলা সুন্দরীর নাচ https://t.co/aogJR3FAmO",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": true,
"language": "bn",
"user_id": 16298441,
"id": 1529936244209164288,
"created_at": 1653600180,
"retweet_count": 0,
"favorite_count": 0
},
"1530344509640306688": {
"text": "RT @drmoney: Just doing stuff at home",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1530344509640306688,
"created_at": 1653697500,
"retweet_count": 0,
"favorite_count": 0
},
"1533088159667367936": {
"text": "RT @dril: LAST CHANCE:\n taking FINAL orders for Deluxe Hardcover Books\n w/ autograph and personalized sketch\n \"Own The Legacy\"\n https://t.co/sEoc3FiLMd",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1533088159667367936,
"created_at": 1654351620,
"retweet_count": 0,
"favorite_count": 0
},
"1533288960604119040": {
"text": "RT @dril: deluxe copies available only 3 more days so get those orders in... i will not shut the fuck up aobut this until then\n \n https://t.co/sEoc3FiLMd",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1533288960604119040,
"created_at": 1654399500,
"retweet_count": 0,
"favorite_count": 0
},
"1533651458410913793": {
"text": "RT @dril: you fuckas have only 2 days to order the deluxe edition of my good book \"At least its not some NFT bull shit\"\n \n https://t.co/sEoc3FiLMd",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1533651458410913793,
"created_at": 1654485960,
"retweet_count": 0,
"favorite_count": 0
},
"1534011751863402498": {
"text": "RT @dril: only 1 MORE DAY to order a \"PRICELESS\" hardcover copy of my book with custom illustration...do not mess this up\n \n https://t.co/sEoc3FiLMd",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1534011751863402498,
"created_at": 1654571820,
"retweet_count": 0,
"favorite_count": 0
},
"1534710463748968448": {
"text": "RT @dril: THIS IS UR LAST CHANCE !! after today i will no longer accept any orders for deluxe hardcovers. act now or perish\n \n https://t.co/sEoc3FiLMd https://t.co/1RJEwSvAiA",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1534710463748968448,
"created_at": 1654738440,
"retweet_count": 0,
"favorite_count": 0
},
"1536657643338493952": {
"text": "RT @Mr_pimper: @kyAiisha9724 \n \n \n \n im new to twitter so can you tell me how to chat to the celebs",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1536657643338493952,
"created_at": 1655202660,
"retweet_count": 0,
"favorite_count": 0
},
"1539224698491285504": {
"text": "RT @TrumpKiller: RJH Creations@MenWhoRock",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "ht",
"user_id": 16298441,
"id": 1539224698491285504,
"created_at": 1655814720,
"retweet_count": 0,
"favorite_count": 0
},
"1539224683836362754": {
"text": "RT @TrumpKiller: Texting while driving is dumber than dumb.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1539224683836362754,
"created_at": 1655814720,
"retweet_count": 0,
"favorite_count": 0
},
"1539224665960304640": {
"text": "RT @TrumpKiller: Driving while texting should be a criminal offense.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1539224665960304640,
"created_at": 1655814720,
"retweet_count": 0,
"favorite_count": 0
},
"1539225216907284481": {
"text": "RT @Mr_headshot: I hate mid-terms",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1539225216907284481,
"created_at": 1655814840,
"retweet_count": 0,
"favorite_count": 0
},
"1539225179510829057": {
"text": "RT @Mr_headshot: I think snipers are the deadliest person on the battlefield, you can never see the shot coming and the kill is most likely instant.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1539225179510829057,
"created_at": 1655814840,
"retweet_count": 0,
"favorite_count": 0
},
"1539225155309776896": {
"text": "RT @Mr_headshot: Olive Garden in Iowa city",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Polish",
"user_id": 16298441,
"id": 1539225155309776896,
"created_at": 1655814840,
"retweet_count": 0,
"favorite_count": 0
},
"1542407459146321921": {
"text": "RT @Thejeansman: good prices and all guaranteed original jeans paypal is a payment choice we offer",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1542407459146321921,
"created_at": 1656573540,
"retweet_count": 0,
"favorite_count": 0
},
"1542407453584683009": {
"text": "RT @Thejeansman: if your looking for any particular levi or wrangler jeans from past to present day we may beable to help",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1542407453584683009,
"created_at": 1656573540,
"retweet_count": 0,
"favorite_count": 0
},
"1542408621601894400": {
"text": "RT @Want_help: Help me sir",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1542408621601894400,
"created_at": 1656573840,
"retweet_count": 0,
"favorite_count": 0
},
"1545928585243791361": {
"text": "RT @Dr_Pimp: hmmm.... panty job",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1545928585243791361,
"created_at": 1657413060,
"retweet_count": 0,
"favorite_count": 0
},
"1546211217399640064": {
"text": "RT @1MillionDollar: www.IhaveaMillionDollar.com",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546211217399640064,
"created_at": 1657480440,
"retweet_count": 0,
"favorite_count": 0
},
"1546516741466910720": {
"text": "RT @lamboman: contract was approved... over one billion $ over the contract",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546516741466910720,
"created_at": 1657553280,
"retweet_count": 0,
"favorite_count": 0
},
"1546517032417382402": {
"text": "RT @moneyfromhome: On a great teleconference right now with a great group of folks who R so gonna take this world by storm. I LOVE TWITTER!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546517032417382402,
"created_at": 1657553340,
"retweet_count": 0,
"favorite_count": 0
},
"1546518984027041792": {
"text": "RT @hatedman: BAD DAY.........",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546518984027041792,
"created_at": 1657553820,
"retweet_count": 0,
"favorite_count": 0
},
"1546597799298342912": {
"text": "RT @Mrsmile: Mr.smile",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546597799298342912,
"created_at": 1657572600,
"retweet_count": 0,
"favorite_count": 0
},
"1546830822069583872": {
"text": "RT @MUTA_FUCKA: @faiz_athalla So , Fuck you to! man , Hahahaah!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546830822069583872,
"created_at": 1657628160,
"retweet_count": 0,
"favorite_count": 0
},
"1546830815140515841": {
"text": "RT @MUTA_FUCKA: @faiz_athalla You such of Bad Boy man!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1546830815140515841,
"created_at": 1657628160,
"retweet_count": 0,
"favorite_count": 0
},
"1548179039008894976": {
"text": "RT @anelsex: in having sex",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1548179039008894976,
"created_at": 1657949580,
"retweet_count": 0,
"favorite_count": 0
},
"1548260153664843778": {
"text": "RT @honkky: aoc",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "qst",
"user_id": 16298441,
"id": 1548260153664843778,
"created_at": 1657968960,
"retweet_count": 0,
"favorite_count": 0
},
"1549574440186351621": {
"text": "RT @menpenis: awawawaaw",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Tagalog",
"user_id": 16298441,
"id": 1549574440186351621,
"created_at": 1658282280,
"retweet_count": 0,
"favorite_count": 0
},
"1554269701005406211": {
"text": "RT @lovemypitbull: fixin to mow the lawn",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1554269701005406211,
"created_at": 1659401700,
"retweet_count": 0,
"favorite_count": 0
},
"1557298105086664704": {
"text": "RT @Kingoflesbians: What's up, bitches? Yeah. I'm back.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1557298105086664704,
"created_at": 1660123740,
"retweet_count": 0,
"favorite_count": 0
},
"1557387459884789761": {
"text": "RT @cigaretteSMOKER: 007観るお",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "Japanese",
"user_id": 16298441,
"id": 1557387459884789761,
"created_at": 1660145040,
"retweet_count": 0,
"favorite_count": 0
},
"1559576894391037953": {
"text": "RT @demonballz: Now dat i hav an account! How da hell does this thing work????",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1559576894391037953,
"created_at": 1660667040,
"retweet_count": 0,
"favorite_count": 0
},
"1561331917273776129": {
"text": "RT @fucking_ass: fuckinn//",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1561331917273776129,
"created_at": 1661085480,
"retweet_count": 0,
"favorite_count": 0
},
"1564745333099220992": {
"text": "RT @OhMyBalls: Oh My Balls!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1564745333099220992,
"created_at": 1661899320,
"retweet_count": 0,
"favorite_count": 0
},
"1564764733286166528": {
"text": "RT @funkylookass: Such it Trebek!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1564764733286166528,
"created_at": 1661903940,
"retweet_count": 0,
"favorite_count": 0
},
"1566184395005763584": {
"text": "RT @holy_gamer: Studying is boring I wanna play some pc games...........!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1566184395005763584,
"created_at": 1662242400,
"retweet_count": 0,
"favorite_count": 0
},
"1566184364177645568": {
"text": "RT @holy_gamer: I dont care about anything when I start playing games the u just play it",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1566184364177645568,
"created_at": 1662242400,
"retweet_count": 0,
"favorite_count": 0
},
"1566317758001795073": {
"text": "RT @Jackin_it: @TheRock What's your way in life ? #RockTalk",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1566317758001795073,
"created_at": 1662274200,
"retweet_count": 0,
"favorite_count": 0
},
"1567359544355094529": {
"text": "RT @iceman666: This site sucks my homeless testicles.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1567359544355094529,
"created_at": 1662522600,
"retweet_count": 0,
"favorite_count": 0
},
"1569274595374690306": {
"text": "RT @ephebophile: On Second Life",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1569274595374690306,
"created_at": 1662979140,
"retweet_count": 0,
"favorite_count": 0
},
"1574497074816507904": {
"text": "RT @BillMaher69: watching Blue birds boild a nest",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1574497074816507904,
"created_at": 1664224320,
"retweet_count": 0,
"favorite_count": 0
},
"1574541211003547648": {
"text": "RT @goergeclooney: PENISSSSSSSSSSSSSSS!!!!!!!!!!!!!!",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "in",
"user_id": 16298441,
"id": 1574541211003547648,
"created_at": 1664234820,
"retweet_count": 0,
"favorite_count": 0
},
"1579984748339830784": {
"text": "RT @jeans_anime: مشروع صغير ..\n ارسم على جينز وتيشرت حسب الطلب واستقبل طلبات دايركت https://t.co/Hz5dMqXwVj",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Arabic",
"user_id": 16298441,
"id": 1579984748339830784,
"created_at": 1665532680,
"retweet_count": 0,
"favorite_count": 0
},
"1581993500383379456": {
"text": "RT @robert57609767: @browneyegirl400 That’s Right pooping Joe we are taking back the house and senate and you will be impeach so start packing and please clean to toilet and don’t forget your diapers . 🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1581993500383379456,
"created_at": 1666011600,
"retweet_count": 0,
"favorite_count": 0
},
"1583119452857454592": {
"text": "RT @Frank48655478: Did they tear down old Jay Simpson's house",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1583119452857454592,
"created_at": 1666280040,
"retweet_count": 0,
"favorite_count": 0
},
"1583211385344794624": {
"text": "RT @ambercrollo: TOMORROW 10/21\n \n we’ve got another GARDEN VARIETY SHOW at @littlesecret_LA!!! \n \n this lineup is AMAZING!!!\n \n w @JoeMande @ToddGlass @jondaly @pendant000 @AllieGoertz @theashleyray amber frost @derek8185338254 &amp; @dril!!\n \n fundraising for @fatima4assembly! \n \n https://t.co/qap90qn2AH https://t.co/UWVdJzL8eR",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1583211385344794624,
"created_at": 1666301940,
"retweet_count": 0,
"favorite_count": 0
},
"1583538580936196096": {
"text": "RT @ambercrollo: TONIGHT 10/21\n \n GARDEN VARIETY SHOW at @littlesecret_LA!!!\n \n w @JoeMande @ToddGlass @jondaly @pendant000 @AllieGoertz @theashleyray amber frost @derek8185338254 &amp; @dril!\n \n fundraising for @fatima4assembly! \n \n produced by me @upstreamculotte &amp; @cuteanon4girls \n https://t.co/qap90qn2AH https://t.co/FJTuXea19y",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1583538580936196096,
"created_at": 1666379940,
"retweet_count": 0,
"favorite_count": 0
},
"1584137836491464704": {
"text": "RT @HornDawg69: When my roomates leave, I masterbate naked on the couch",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1584137836491464704,
"created_at": 1666522860,
"retweet_count": 0,
"favorite_count": 0
},
"1585926275327094785": {
"text": "RT @MensFunny: 2000's All about relationships and bullshit what about hanging with friends and really knowing someone..... #Truth",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1585926275327094785,
"created_at": 1666949220,
"retweet_count": 0,
"favorite_count": 0
},
"1590848542285103105": {
"text": "RT @ambercrollo: the last Garden Variety Show was a blast! next one is Sat at @littlesecret_LA!\n \n we're honored to hear from Dr. Richelle Brooks of @StrikeDebt!\n \n w @derek8185338254 @dril @LangstonKerman Will Duncan @EJhavingfun @JackZagg @IANSWEEEEET @harmonysaccount (DJ)!\n \n https://t.co/dc52OwhfGH https://t.co/SlzUtJgCYU",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1590848542285103105,
"created_at": 1668122820,
"retweet_count": 0,
"favorite_count": 0
},
"1590937442198388738": {
"text": "RT @TicTacLatino: ¡Feliz Cumpleaños! RedFoo http://t.co/XwJ8m13Z1c",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": true,
"video": false,
"language": "Spanish",
"user_id": 16298441,
"id": 1590937442198388738,
"created_at": 1668144000,
"retweet_count": 0,
"favorite_count": 0
},
"1591548902586683392": {
"text": "RT @ambercrollo: ‚ú®LA TONIGHT‚ú®\n \n The Garden Variety Show at @littlesecret_LA!\n \n we're honored to hear from @DoctahBee1 of @StrikeDebt!\n \n w @derek8185338254 @dril @EJhavingfun @JackZagg @IANSWEEEEET @harmonysaccount (DJ)!\n \n produced by god DAM\n \n flyer by @upstreamculotte \n \n https://t.co/dc52OwgHR9 https://t.co/GHSVuVNWNl",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1591548902586683392,
"created_at": 1668289800,
"retweet_count": 0,
"favorite_count": 0
},
"1593499739500134400": {
"text": "RT @JossWheaton: Hello my name is writer and director Joss Wheaton, and I just directed the greatest movie in the world. It's called Marvel's The Avengers.",
"retweets": "0",
"likes": "0",
"type": "ReTweet",
"image": false,
"video": false,
"language": "English",
"user_id": 16298441,
"id": 1593499739500134400,
"created_at": 1668754860,
"retweet_count": 0,
"favorite_count": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment